Commit Graph

519 Commits

Author SHA1 Message Date
Alexey Neyman
41892bbf74 Stash nios2 config adjusted for consistence with the rest.
Signed-off-by: Alexey Neyman <stilor@att.net>
2015-10-27 23:58:34 -07:00
Alexey Neyman
3a436690a7 Mark broken: i586-mingw32msvc,i686-none-linux-gnu.
Error message:
[EXTRA]  Preparing working directories
[ERROR]  Missing: 'i586-mingw32msvc-ar' or 'i586-mingw32msvc-ar' or 'ar': either needed!

Signed-off-by: Alexey Neyman <stilor@att.net>
2015-10-27 15:45:03 -07:00
Alexey Neyman
32c5952980 Revert "Remove ltrace from samples"
This reverts commit a3bb2aeb44.
2015-10-23 18:09:41 -07:00
Bryan Hundven
d60b4c2962 samples: add arm-unknown-linux-musleabi
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
2015-10-21 17:57:23 -07:00
Bryan Hundven
f34d1a93f1 Merge pull request #198 from stilor/avr2-fix
Fix avr sample
2015-10-20 15:31:52 -07:00
Bryan Hundven
720e0b4a1e Merge pull request #201 from stilor/powerpc-e500v2
Fix option names in powerpc-e500v2 sample.
2015-10-19 20:08:16 -07:00
Bryan Hundven
4c6c7fdea0 Merge pull request #200 from stilor/arm-unwind-uclibc
Fix link error in arm/uclibc with GCC 5.x
2015-10-19 20:07:33 -07:00
Bryan Hundven
fbf66d7c90 Merge pull request #197 from stilor/avr-fix
Trivial avr32 fix: name of config option has changed
2015-10-19 20:05:52 -07:00
Alexey Neyman
52203df900 Fix sh4-unknown-linux-gnu sample.
The issue with this sample is that the sh4-* targets in GCC do not
implement __builtin_trap() function. Starting with release 5.1,
GCC inserts abort() calls where NULL pointers are dereferenced. The
elf/dl-conflict.c in glibc is one such place: it calls elf_machine_rela
with NULL `sym' pointer. This causes an undefined `abort' symbol to
appear in the object file and as a result, pulls in some files during
the linking of the dynamic loader that are not supposed to. Eventually,
it results in link error due to multiple definitions of _itoa and some
other symbols.

The right fix would be to implement __builtin_trap() for sh4 in GCC.
A workaround would be adding -fno-delete-null-pointer-checks to
CFLAGS-dl-conflict.c in elf/Makefile. Until either of these happens,
though, pin the GCC version to 4.9.3 - the last that did not generate
`abort' calls. Note that the version where GCC started to generate
`abort' calls is apparently different for different architectures;
the issue in [1] was reported against GCC 4.9.

References:
[1] https://www.sourceware.org/ml/libc-alpha/2014-10/msg00807.html
  (similar issue on HP-PA which was resolved by implementing
  __builtin_trap)
2015-10-15 17:34:49 -07:00
Alexey Neyman
5211d68d08 Use dedicated option for 128-bit long double. 2015-10-15 17:34:26 -07:00
Alexey Neyman
7b3821450a Fix powerpc-e500v2-linux-gnuspe.
Options were renamed. However, matching current option names result
in a compile error for strfmon_l.o in glibc: GCC 4.6 detects an
unitialized variable in its own va_arg() implementation. Likely,
an older GLIBC was used when this sample was submitted - which did
not provide -Werror in CFLAGS.

Thus, use most recent GCC (5.2.0) and revert GLIBC_FORCE_UNWIND to
its default value, 'y' (as forced unwind is required with this version).
2015-10-15 17:34:26 -07:00
Alexey Neyman
e6e8f97c4f Fix avr sample.
- Incompatible ISL/CLooG were requested by config after newer releases
of both were brought in.
- Consistency with other samples: save tarballs (which will avoid
  downloading them each time from Travis), extra logging.
2015-10-15 17:33:55 -07:00
Alexey Neyman
9659f7131f Rename the GCC version option to match current config. 2015-10-15 17:31:52 -07:00
Alexey Neyman
f1e2315700 Fix arm/uclibc; see the description in the patch.
This should ideally be upstreamed to uclibc maintainers, but with the
last release more than 3 years ago, I wouldn't hold my breath for a
fix being released any time soon.
2015-10-15 17:27:32 -07:00
Alexey Neyman
55d0770209 Fix bfin-unknown-linux-uclibc sample.
Pin GCC to 4.5.3 and binutils to 2.22, the last versions working. There
are multiple bugs affecting bfin configuration; while [3] is fixed on
trunk in GCC (but not backported to gcc-5-release branch yet), [1] and
[2] do not have fixes yet.

References:
[1] https://sourceware.org/bugzilla/show_bug.cgi?id=17334 (binutils bug)
[2] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47779 (gcc bug #1)
[3] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55144 (gcc bug #2)
2015-09-30 17:22:28 -07:00
Bryan Hundven
a3bb2aeb44 Remove ltrace from samples
As of right now, ltrace fails to build. To get CI happy, lets just
disable it!

When we fix ltrace, just revert this change.

This is also in reference to bug #115

Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
2015-09-29 12:37:29 -07:00
Frederick Zhang
f29c8332ed raspberry pi 2 sample 2015-09-06 07:06:53 +08:00
Ray Donnelly
86fbcfc36b mingw-w64: Rename targets to {i686,x86_64}-w64-mingw32
.. and set CT_TARGET_VENDOR to w64. Otherwise config.gcc doesn't
pickup the right files for include_next (and probably many other
things go wrong too).

w64 has been the correct vendor for absolutely ages now on all
distributions that provide MinGW-w64 cross compilers.

Signed-off-by: Ray Donnelly <mingw.android@gmail.com>
2015-08-25 00:16:25 +01:00
Erico Nunes
2f436a02e3 avr: enable C++ support in the avr sample
C++ support is enabled in most samples existing in crosstool-ng and is also
supported by AVR.
As pointed out in pull request #124 in the crosstool-ng github, Arduino based
projects willing to use this toolchain will require C++ support.

Signed-off-by: Erico Nunes <nunes.erico@gmail.com>
2015-06-27 21:33:49 -03:00
Erico Nunes
6da2fde11e avr: add avr toolchain config sample
The avr-libc manual and most distributions build the AVR 8-bit gcc
toolchain with the "avr" (non-canonical) target.
Some experimentation also led to the conclusion that other (canonical)
targets are not very well supported, so we force the "avr" target for
crosstool-ng as well.

Some patches are required in avr-libc for a toolchain with gcc 5.x to
work. These patches are still not part of any avr-libc release version,
so the config sample currently forces 4.9.x to avoid requiring to clone
avr-libc trunk.

References:
    https://savannah.nongnu.org/bugs/?44574
    https://gcc.gnu.org/gcc-5/changes.html

Signed-off-by: Erico Nunes <nunes.erico@gmail.com>
2015-06-21 20:53:18 -03:00
Bryan Hundven
cd47c091ba eglibc: Remove eglibc support
As posted on http://www.eglibc.org/
====================
EGLIBC is no longer developed and such goals are now being addressed
directly in GLIBC.
====================

I'm not interested in maintaining build support for unsupported
software.

Older branches of crosstool-ng continue to have eglibc support.
If you find issues with older branches, I'm always open to pull
requests.

Removing eglibc also frees up glibc cleanup and build optimization.

Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
2015-01-27 22:43:25 -08:00
Daniel Zimmermann
25f2f07bf9 arch/sample : add sample file for the nios2 architecture
add sample file for the nios2 architecture.
2015-01-27 00:57:28 +01:00
Yann E. MORIN
50d94b2098 samples: powerpc-unknown-linux-uclibc is currently broken
Fixing this sample proved to be, well, challenging.

Mark it broken so it does not stop the release.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Bryan Hundven <bryanhundven@gmail.com>
2014-09-08 23:15:46 +02:00
Yann E. MORIN
5baad1d554 samples: update the PowerPC samples
powerpc-unknown-linux-uclibc is left aside for now...

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2014-09-08 19:18:22 +02:00
Yann E. MORIN
2e9b97a89a samples: update the sparc sample
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2014-09-06 01:31:49 +02:00
Yann E. MORIN
20346f27ad samples: update the MIPS samples
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2014-09-06 00:57:46 +02:00
Yann E. MORIN
bf5d513248 samples: update ARM little-endian samples
Removed the arm-davinci sample, it does not bring much more
that the other samples.

Add an ARM uClibc EABIhf sample.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2014-09-05 15:16:33 +02:00
Yann E. MORIN
95c4e89ac9 samples: update ARM big-endian samples
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2014-09-02 23:12:30 +02:00
Yann E. MORIN
741972070f samples: update the ix86 samples
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2014-09-02 23:11:59 +02:00
Yann E. MORIN
929f125fea samples: update the m68k samples
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2014-09-02 23:11:59 +02:00
Yann E. MORIN
7d55350716 samples: update the bfin sample
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2014-09-02 23:11:59 +02:00
Yann E. MORIN
b48b3c4e39 samples: update the s390 samples
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2014-09-02 23:11:59 +02:00
Yann E. MORIN
3170069ee8 samples: update sh4 sample
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2014-09-02 23:11:59 +02:00
Yann E. MORIN
00c5fb37af samples: update x86-64 samples
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2014-09-02 23:11:59 +02:00
Yann E. MORIN
2fb855f025 samples: update the alpha samples
Use latest versions where possible, don't use experimental versions.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2014-09-02 23:11:59 +02:00
Yann E. MORIN
b1f536966b libc: rename the threads options
Use a more coherent naming for the options. This will help commonalise
the native case (e.g. NPTL on Linux, win32 on Windows), and add alternate
implementations (e.g. musl.)

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Bryan Hundven <bryanhundven@gmail.com>
2014-07-28 01:23:34 +02:00
Alexandre Belloni
71074b7f82 samples: add arm-cortexa5-linux-uclibcgnueabihf
This configuration has been tested on an Atmel sama5d3 board. It is a Cortex-A5
without neon and the floating point unit is a vfpv4-d16.

Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
2014-07-27 01:21:13 +02:00
Thomas Petazzoni
1a8ca5b41b samples/arm-unknown-linux-uclibcgnueabi: major update
This commit updates the arm-unknown-linux-uclibcgnueabi sample to the
modern age:

 - gcc is bumped from 4.4.3 to 4.8.2
 - binutils is bumped from 2.19 to 2.24
 - gdb is bumped from 7.1 to 7.7
 - uclibc is bumped from 0.9.30 to 0.9.33
 - kernel headers are bumped to 3.10
 - strace is bumped to 4.8
 - all companion libraries are also updated

In addition, the ARCH_CPU/ARCH_TUNE configuration options are changed
from xscale to arm926ej-s, with the reasoning that in the ARMv5
ecosystem, ARM926EJ-S cores are much, much more widely used than
Xscale cores.

The resulting toolchain was tested by building a Busybox-only system
with Buildroot, and testing it under an ARMv5 Qemu emulation.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2014-06-28 22:37:46 +02:00
Yann E. MORIN"
6ed78d4cba all: fix wildcard to work with make-4.x
In make-3.8x, the $(wildacrd) function would sort the entries,
while in make-4.x, it would just return the entries in any
unpredictable order [*]

Use the $(sort) function to get reproducible behaviour.

[*] Well, most probably the roder the entries appear when read
from readdir()

Reported-by: Andrew Ruder <andrew.ruder@elecsyscorp.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Tested-by: Andrew Ruder <andrew.ruder@elecsyscorp.com>
2014-06-25 23:33:01 +02:00
Yann E. MORIN"
2f59557376 samples: add a Sparc sample
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2013-10-04 23:14:36 +02:00
Yann E. MORIN"
244d525522 samples: further fix before release
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2013-10-02 19:11:34 +02:00
Yann E. MORIN"
d8488d3b3a samples: update for the release
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2013-10-02 00:02:44 +02:00
Martin Guy
e284b218a7 arch/avr32: Fix download of header files
This patch fixes the download of the avr32 headers in crosstool-ng by
fetching them directly from Atmel's web site instead of the now-broken URL
given by the original author of the avr32-header-fetching modification,
who fetched them from a copy on his own, now-defunct server.

It also adds the necessary logic to extract from a zip file, as that is
how the headers are packaged.

To configure it for avr32 after launching ct-ng menuconfig in an empty
directory:

       Paths and misc options ->
               Shell to use as CONFIG_SHELL = sh
       Target options ->
               Target Architecture = avr32
       Toolchain options ->
               Tuple's alias = avr32
       Binary utilities ->
               binutils version = 2.18a
       C compiler
               gcc version = 4.2.2
       C-library
               newlib version = 1.17.0
               Enable IOs on long long = yes
               Enable IOs on floats and doubles = yes
               Disable the syscalls supplied with newlib = yes

CONFIG_SHELL is necessary to get round the "fragment: command not
found" bug when binutils-2.18 is configured using bash.

Prepared against crosstool-ng mercurial trunk on 31 March 2012.

Signed-off-by: Martin Guy <martinwguy@gmail.com>
[yann.morin.1998@free.fr: update bundles sample accordingly]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <CAL4-wQrg_NQ7jm-NCADqeyQr9twyhtx42OUGNThP6gWeqZc=kw@mail.gmail.com>
Patchwork-Id: 232612
2013-03-31 04:07:38 +00:00
Benoît Thébaudeau"
9eca679b7a samples: add arm-cortexa9_neon-linux-gnueabihf
Signed-off-by: "Benoît Thébaudeau" <benoit.thebaudeau@advansee.com>
[yann.morin.1998@free.fr: make it a defconfig with pinned versions]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <bdf1fde968aee8d0cd95.1360063830@advdt005-ubuntu>
Patchwork-Id: 218239
2013-02-05 12:29:52 +01:00
Yann E. MORIN"
81c28d831b cc/gcc: remove 'sub-level' version form symbols
Now we use defconfig files to store the samples, we have to be a bit more
conservatives in the symbols names, so as to avoid gigantic version bumps
when updating sub-level versions from a package.

Update samples accordingly.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2013-01-24 22:37:31 +01:00
Yann E. MORIN"
dd25744cc0 samples: print changed symbols when checking samples
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2013-01-24 22:24:38 +01:00
Yann E. MORIN"
cc6f1fd15b samples: update the rpi sample
And use the newly introduced CT_ARCH_SUFFIX at the same time. :-)

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2013-01-21 23:03:18 +01:00
Yann E. MORIN"
d82f1c6f2a samples: check if update is needed
Add a ct-ng action to check if samples needs being updated.
This will be usefull when the config options change.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2013-01-22 00:32:38 +01:00
Yann E. MORIN"
8d19cdd779 samples: rename this sample
This debug string slipped in surreptitiously...

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2013-01-10 18:46:15 +01:00
Yann E. MORIN"
6f1ab57e80 samples: add a sample for the Raspberry Pi
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2013-01-09 18:52:15 +01:00
Yann E. MORIN"
e8e7eca3c6 all: unmark experimental version
It's been a while we've had those versions, time to unmark them being
experimental. It does not mean everything is perfect, but may gather
some more testing on those versions.

Update samples accordingly.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2012-12-26 19:54:12 +01:00
Yann E. MORIN"
652906ac5f all: remove versions marked obsolete
For major components, keep the latest version of each major releases.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2012-12-26 11:53:05 +01:00
Yann Diorcet
3d01e9f275 libc/mingw: replace mingw32 with generic mingw
Replace the 32-bit-only mingw32 with mingw-w64 that is capable
of building toolchains for both 32-bit and 64-bit Windows.

kernel/mingw: replace mingw32 with generic Windows
kernel/windows: New windows kernel supporting 32 and 64 bit arch
libc/mingw: Remove old options
patches: Remove old mingw libc options' patches

Signed-off-by: "Yann Diorcet" <diorcet.yann@gmail.com>
[yann.morin.1998@free.fr: array var in libc/mingw.sh, typos]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <b045ac08fc9eac2e5ee3.1352898499@blackmint>
Patchwork-Id: 198901
2012-11-14 14:05:49 +01:00
Yann E. MORIN"
da76ef4f71 samples: update samples for release
Refresh all samples against the new set of options, to be
sure they all build OK, before we can do the release.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2012-11-09 18:22:31 +01:00
Esben Haabendal
90ebb82cb8 samples: add new m68k-unknown-uclinux-uclibc sample
Signed-off-by: "Esben Haabendal" <esben@haabendal.dk>
[yann.morin.1998@free.fr: upgrade to using gcc-4.7.2]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <87r4pod1hm.fsf@arh128.prevas.dk>
PatchWork-Id: 187182
2012-09-26 16:37:31 +02:00
Yann E. MORIN"
542bb18409 scripts+samples: fix listings the samples
Since we use defconfigs to save the samples, listing all the
samples can no longer be done by passing all the sample names
at one to the script; we need to pass them one-by-one after
we expand the sample's defconfig ibnto a complete .config.

Reported-by: Bryan Hundven <bryanhundven@gmail.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2012-07-23 22:02:23 +02:00
Yann E. MORIN"
eb6e2e87f0 samples: resave all samples with savedefconfig
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2012-05-07 00:10:00 +02:00
Yann E. MORIN"
33a6cdd7ec samples: rework show-tuple
Now that we are using defconfig files, the samples do not contain
the full configuration, so we can not simply parse them to show
their content.

Instead, we must fake recalling a sample, and parse the generated
.config file.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2012-05-07 21:37:59 +02:00
Yann E. MORIN"
99a6ddf3be samples: use savedefconfig when saving samples
When saving a sample, use savedefconfig instead of copying
the full .config file.

This reduces the saved .config, and reduces clutter when it
is later upgraded.

Also use defconfig when retrieving a sample.

Reported-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2012-05-07 00:27:05 +02:00
Yann E. MORIN"
817c24034e samples: update to latest set of options
No feature- of version-bump, just update the samples
so that no (NEW) option pops up in the release.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2012-04-30 18:14:13 +02:00
Yann E. MORIN"
4ffc66613f samples: update to latest config option set
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2012-04-09 11:00:35 +02:00
Yann E. MORIN"
e1d16aa95e samples: update before release
Update all samples to reflect the new set of options, plus:
- remove the arm-iphone-linux-gnueabi sample (obsolete...)
- disable hard-float in ARM bare-metal samples.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2012-02-01 00:10:59 +01:00
Yann E. MORIN"
715c5e3903 samples: set vendor string in all samples
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2011-10-20 23:12:16 +02:00
Yann E. MORIN"
1cc14334e4 misc: change references to point to the new website
It's been a while now that crosstool-NG has been hosted on it's own
website, and not at my home. Change every reference to the old site
to the new one, everywhere is makes sense to.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2011-10-18 20:17:41 +02:00
Yann E. MORIN"
32c5ef83a1 samples: update to latest set of options
Update all the samples, so that there is not config-prompt when
recalling samples. This is no upgrade, it's just about having
new options set (y or n) in the samples.

Also, get rid of the armeb-test_nptl-linux-uclibcgnueabi, it's no
longer needed, there's a non-test sample with uClibc NPTL, now.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2011-10-16 17:51:42 +02:00
Yann E. MORIN"
3032eb0e9c scripts: do not force locale when sorting samples
Just use whatever the user has set in his/her environment.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2011-10-16 21:48:10 +02:00
Yann E. MORIN"
d09ded3f65 samples: add new mipsel-sde-elf sample.
Signed-off-by: Kevin Cernekee <cernekee@gmail.com>
[yann.morin.1998@anciens.enib.fr: add pointer to ML thread]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2011-09-25 15:21:29 -07:00
Yann E. MORIN"
ea7e2f9dfe samples: update this ARM sample.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2011-09-13 00:15:45 +02:00
Yann E. MORIN"
4f3b883071 samples: update that mips sample
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2011-09-12 12:54:45 +02:00
Yann E. MORIN"
b5ae41d3cf samples: do not use the mirror by default
As the mirror is always tried first, and the default is my server,
it means every download will first hit my server. As I do not have
much mirrored there, it means a lot of time is lost.

Disable use of the mirror for all samples, except the one that does
need it for the uClibc snapshot.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2011-08-14 17:18:32 +02:00
Yann E. MORIN"
46de459e33 samples: update before release
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2011-07-31 00:46:45 +02:00
Antony Pavlov
cae77e1b31 samples: add mips-malta-linux-gnu toolchain config 2011-06-13 22:54:29 +04:00
Yann E. MORIN"
ea392fb196 sample: add new Alpha sample with glibc-.13
Sample provided by Ioannis E. VENETIS

Reported-by: "Ioannis E. Venetis" <venetis@mail.capsl.udel.edu>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2011-05-04 19:19:56 +02:00
Yann E. MORIN"
21ce63f28b samples: update
Release is coming soon... Time to update samples...

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2011-04-28 19:36:56 +02:00
Yann E. MORIN"
1b1bb6c588 samples: add a new sample for ARM Cortex-A15 with VFP/NEON
Sample origiannly reported and provided by dsreed on the #crostool-ng
channel on freenode. I don't have the real ID for dsreed, but the
sample is not orginally mine, but his/hers.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2011-04-24 22:47:10 +02:00
Yann E. MORIN"
a06a66d326 samples: add first sample to build with gcc-4.6.0
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2011-03-28 00:58:33 +02:00
Yann E. MORIN"
965c646afd samples: new PPC e300c3 sample
Gustavo wrote:

---8<---
Attached my ct-ng e300c3 toolchain config for:

powerpc-e300c3-linux-gnu  [l X]
    OS             : linux-2.6.36.3
    Companion libs : gmp-5.0.1 mpfr-3.0.0 ppl-0.10.2 cloog-ppl-0.15.10 mpc-0.8.2 libelf-0.8.13
    binutils       : binutils-2.21
    C compiler     : gcc-4.5.2 (C,C++)
    C library      : eglibc-2_12
    Tools          :
---8<---

Reported-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
["Yann E. MORIN" : updated to match new config options]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2011-03-14 22:16:01 +01:00
Yann E. MORIN"
ea70303d73 samples: update the samples
Release time is coming at a fast pace. It is now time to
update the samples so they apply cleanly.

The canadian-cross sample mingw32,i686-none-linux-gnu has
been replaced with i586-mingw32msvc,i686-none-linux-gnu.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2011-01-30 19:25:56 +01:00
Yann E. MORIN"
4d82364f1f samples: update the mingw sample
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2011-01-26 00:12:27 +01:00
Yann E. MORIN"
a28b593548 arch: remove ia64
ia64 is broken in every gcc/glibc combinations I tested (except for the
existing sample that used very old versions).

Nobody complained on the list about not being able to build recent versions.

So the only way forward I can see is to remove the architecture altogether.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2011-01-03 22:02:06 +01:00
Yann E. MORIN"
c46370122d samples: update i686-nptl-linux-gnu
Enable Java and Fortran frontends.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2010-12-31 00:16:19 +01:00
Yann E. MORIN"
ab0ef7042f samples: update i686-nptl-linux-gnu
Notable changes:
- uses binutils 2.21, builds gold, but defaults to ld
- uses gcc 4.5.2, with GRAPHITE and LTO, builds lto-plugin

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2010-12-30 21:06:04 +01:00
Yann E. MORIN"
8d821ce49a samples: update after libc versions renaming
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2011-01-02 22:32:04 +01:00
Yann E. MORIN"
fd5d0a93e2 samples: update all samples to latest config knobs
No new feature, no newer version, only updates so that
samples can be recalled without anything to set.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2010-11-03 18:30:30 +01:00
Yann E. MORIN"
8b0fb989fc samples: update to not use // download
Parallel download can cause issues in some network environments
(eg. behind some firewalls/routers), so default to not //.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2010-10-18 21:50:26 +02:00
Yann E. MORIN"
f6b59188f1 samples: update all samples to use the new build dir
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2010-10-07 23:53:16 +02:00
Yann E. MORIN"
aa3d69979f samples: update powerpc-e500v2-linux-gnuspe
Update the configuration and the comment.

Reported-by: Anthony Foiani <anthony.foiani@gmail.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2010-10-07 23:51:23 +02:00
Yann E. MORIN"
e9a2a86d4d arch/mips: add experimental mips64 samples
Both toolchains were tested to successfully:
- _build_ busybox, giving respectively an n32 and an n64 binary
  although it has not been run-tested.
- build linux-2.6.36-rc3 for Loongson, giving an n64 vmlinux
  (which is expected, due to the way the kernel is built),
  and the kernel properly boots!

Credits are due to Julien MOUTHINO (julm on freenode#uClibc) for
testing that the kernel boots on his hardware! Cheers! ;-)

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2010-09-12 23:38:18 +02:00
Yann E. MORIN"
bffcb7b3fa samples: update all samples
All samples get rebased, no new option is chosen.
2010-08-01 14:21:13 +02:00
Yann E. MORIN"
749b819c92 samples: add a short list of all samples
Add an action to list only the sample names.
Use that for auto-completion.
2010-07-30 23:30:02 +02:00
Bart vdr Meulen
b240cfcc3a samples: add Linux -> Mingw32 sample
Sample to build compiler targetting mingw32 target systems

Signed-off-by: Bart vdr. Meulen <bartvdrmeulen@gmail.com>
---
 samples/i686-pc-mingw32/crosstool.config |  302 +++++++++++++++++++++++++++++++
 samples/i686-pc-mingw32/reported.by      |    3
 2 files changed, 305 insertions(+)
 create mode 100644 samples/i686-pc-mingw32/crosstool.config
 create mode 100644 samples/i686-pc-mingw32/reported.by
2010-07-11 21:37:29 +02:00
Yann E. MORIN"
df541a321e samples: add an ARMeb uClibc/NPTL experimental sample 2010-07-11 00:20:13 +02:00
Yann E. MORIN"
9cdba4a57c samples: update 2010-04-30 14:28:14 +02:00
Thomas Petazzoni
be221494fa samples: add Blackfin sample 2010-04-07 09:26:12 +02:00
Yann E. MORIN"
e5a007415a scripts: misc help and auto-complete fixes
- don't list samples in the main help screen
- improve the samples listing in list-samples
- don't document the 'config' action, it's long dead
- document the 'V' environment variable
- improve on START, STOP and PREFIX environment variables
- add PREFIX and V to autocomplete
- advertise auto-complete at install time
2010-04-02 00:18:26 +02:00
Yann E. MORIN"
6a151cfe74 samples: fix samples 2010-03-19 19:02:30 +01:00
Titus von Boxberg"
836562e0d0 scripts/samples: use the computed '$(sed)', not 'sed' 2010-02-03 00:24:24 +01:00
Yann E. MORIN"
2a1730cd1d samples: fix this MIPS eglibc-based sample
Specify the SVN revision to use for the eglibc snapshot instead of HEAD,
as some patches made their way upstream in the meantime.
2010-02-18 19:29:06 +01:00
Yann E. MORIN"
8d01c33fd1 samples: update samples
Update to the latest set of config options (no config change).
Remove OABI ARM samples.
2010-01-31 23:04:35 +01:00
Yann E. MORIN"
964d20b1c7 scripts: dump the current tuple with show-config 2010-01-31 20:10:14 +01:00
Yann E. MORIN"
3fb0463536 scripts: add action to dump current configuration in humane-readable form 2010-01-31 15:57:22 +01:00
Yann E. MORIN
6d70a576da arch: add basic m68k support
Signed-off-by: Remy Bohmer <linux@bohmer.net>
[yann.morin.1998@anciens.enib.fr: use defaults for CT_TARGET_ARCH]
Signed-off-by: "Yann E. MORIN <yann.morin.1998@anciens.enib.fr>
2010-01-29 23:23:59 +01:00
Yann E. MORIN"
68058e12b8 samples: update armeb-unknown-linux-uclibcgnueabi: use uClibc-0.9.30.2 2010-01-14 19:09:27 +01:00
Yann E. MORIN"
89eca789ce samples: update armeb-unknown-linux-uclibcgnueabi 2010-01-07 20:40:52 +01:00
Yann E. MORIN"
df239bc7ee samples: refine the listing of all samples for canadian samples
For canadian samples, display the sample as:
  target-tuple (host: host-tuple)
2010-01-03 18:40:35 +01:00
Yann E. MORIN"
27c1a5fa3f samples: add an action to print details for all samples 2010-01-03 18:36:07 +01:00
Yann E. MORIN"
75cb688486 samples: fix displaying samples 2010-01-03 18:33:23 +01:00
Yann E. MORIN"
24711bbfbe samples: add a new samples for the TI DaVinci processors.
Dragan Marinkovic <marinkovic.dragan@gmail.com> wrote:
  I finally had the time (and board) to spend some time with
  crosstool-NG version 1.5.2 and TMS320DM6446 (DaVinci Digital Media
  System-on-Chip,
  http://focus.ti.com/docs/prod/folders/print/tms320dm6446.html).

  I was able to successfully build and run v2.6.27-davinci1 kernel
  (Kevin Hilman's branch) with busybox based initramfs on it. I don't
  believe that any later kernel would represent any challenge (it just
  happens that I'm currently working with this version). What a thrill
  :).

  crosstool-NG/toolchain config is attached. It may be useful to someone
  using crosstool-NG ...
2010-01-03 17:36:54 +01:00
Yann E. MORIN"
5d3fc8dfc6 samples: update the Alpha sample
According to: http://sourceware.org/ml/crossgcc/2009-11/msg00109.html
2009-11-25 23:13:05 +01:00
Yann E. MORIN"
5223e73b15 samples: update the AVR32 sample 2009-11-22 22:59:24 +01:00
Yann E. MORIN"
d5eb1f0dcf arch: cleanup the 32- and 64-bit selection 2009-11-17 22:29:50 +01:00
Yann E. MORIN"
d219235f73 arch/ia64: update to the new 64-bit infrastructure 2009-11-17 11:55:37 +01:00
Yann E. MORIN"
cb52ec6051 arch/s390: commonalise the 32- and 64-bit s390 arch 2009-11-17 11:54:44 +01:00
Yann E. MORIN"
7ea82181db arch/x86: commonalise the 32- and 64-bit x86 arch 2009-11-17 11:51:57 +01:00
Yann E. MORIN"
28b38f9222 arch/ppc: commonalise the 32- and 64-bit PowerPC arch 2009-11-17 11:33:59 +01:00
Yann E. MORIN"
385a616b10 arch/s390: cleanups
Don't select unneeded config knobs. Don't select non-existing config knobs.
Use the "no patch" config knob, instead of pointing to an non-exiting local
patch dir. Simplify the tuple-related scripts. Update the samples.
2009-11-16 20:18:09 +01:00
harold
2cde67ddc4 arch: add s390 and s390x architectures and samples 2009-11-14 15:03:01 -06:00
Yann E. MORIN"
1ebe0b246a samples: update the armeb-unknown-linux-gnueabi sample to use glibc-2.10.1 2009-11-13 21:39:58 +01:00
Yann E. MORIN"
6af0ca4153 scripts: some eye-candy 2009-10-30 20:08:44 +01:00
Yann E. MORIN"
01240b9fbf scripts: fix updating config.{sub,guess} 2009-10-30 19:49:51 +01:00
Yann E. MORIN"
de8f2cea32 Merge. 2009-10-29 00:10:06 +01:00
Yann E. MORIN"
5b0242a30c samples: update all samples to the new set of options
No version change is made.
2009-10-28 23:20:31 +01:00
Yann E. MORIN"
3b6c174779 arch/arm: add sample for nommu bare-metal Cortex-M3 with newlib 2009-10-26 23:12:29 +01:00
Yann E. MORIN"
bc7cfc95ad samples: fix the avr32-unknown-none sample
Bizarely enough, binutils-2.18 fails to build when CONFIG_SHELL is set
to /bin/bash (although it has code to recognise bash and act accordingly).

Waht is really strange is that it does build when CONFIG_SHELL is set
to /bin/sh, *although* /bin/sh is a symlink to /bin/bash. WTF?!?!
2009-10-08 23:29:45 +02:00
Yann E. MORIN"
2fb4f224f3 samples: update 2009-10-04 12:53:12 +02:00
Yann E. MORIN"
947df3a503 sample: update the i686-nptl-linux-gnu sample
Update this sample, now it seems to correctly build again.
2009-10-03 16:53:05 +02:00
Yann E. MORIN"
7280facf18 samples: upgrade some samples
Upgrading all samples is too much a hassle.
Stick with those few for now.
2009-10-01 22:14:45 +02:00
Yann E. MORIN"
e8ffa14940 samples: remove arm-beagle-linux-gnueabi
Use the generic arm-cortex_a8-linux-gnueabi sample instead.
2009-09-13 19:51:26 +02:00
Yann E. MORIN"
5bd5b5d687 samples: fix uClibc config file location 2009-09-13 17:14:03 +02:00
Yann E. MORIN"
00f6b4695f samples: update 2009-09-13 11:49:10 +02:00
Giammarco Zacheo
9d1cbf2b41 samples: add eglibc-based toolchain for MIPS. 2009-07-21 01:05:59 +02:00
Yann E. MORIN"
424f64c487 Merge the AVR32 support branch to the default branch. 2009-08-08 22:15:25 +02:00
Bart van der Meulen
c24cfdd703 [samples] Add a linux -> mingw32 -> i686-linux canadian sample
Add a sample that builds on Linux a mingw32-hosted toolchain that
generates code for i686-none-linux-gnu.

Signed-off-by: Bart van der Meulen <bartvdrmeulen@gmail.com>
2009-06-26 19:09:22 +02:00
Martin Lund
8fb846f5b5 Misc AVR32 cleanups. 2009-06-20 17:16:54 +02:00
Yann E. MORIN
302dd084c2 [gcc] Merge the gcc-4.4 suport to the default branch, from 1407:83083566fdd0 2009-06-17 11:38:04 +02:00
Yann E. MORIN"
75910da109 /devel/gcc-4.4:
- add first sample using gcc-4.4

 -------- diffstat follows --------
 /devel/gcc-4.4/samples/arm-cortex_a8-linux-gnueabi/crosstool.config |  852   852     0     0 +++++++++++++++++++
 /devel/gcc-4.4/samples/arm-cortex_a8-linux-gnueabi/reported.by      |    6     6     0     0 +
 2 files changed, 858 insertions(+)
2009-06-02 21:36:25 +00:00
Yann E. MORIN"
9a2bde70bf /trunk:
- add a sample targetting the BeagleBoard.

 -------- diffstat follows --------
 /trunk/samples/arm-beagle-linux-gnueabi/crosstool.config |  812   812     0     0 ++++++++++++++++++++++
 /trunk/samples/arm-beagle-linux-gnueabi/reported.by      |    6     6     0     0 +
 2 files changed, 818 insertions(+)
2009-05-24 16:22:03 +00:00
Martin Lund"
07a71d8c42 Added support for Atmel AVR32 headers 2009-05-23 18:46:42 +00:00
Martin Lund"
72aea3b682 Temp fix for newlib configure. Updated avr32 crosstool.config. 2009-05-22 20:44:01 +00:00
Martin Lund"
a94b870756 Added initial AVR32 support (bare-metal,newlib) 2009-05-22 14:46:18 +00:00
Yann E. MORIN"
f31a1dc035 Update the alphaev56-unknown-linux-gnu sample, as per:
http://sourceware.org/ml/crossgcc/2009-05/msg00009.html

 -------- diffstat follows --------
 /trunk/patches/glibc/2.9/480-alpha-glibc-2.8-cache-shape.patch |    3     1     2     0 -
 /trunk/patches/glibc/2.9/540-alpha-atfcts.patch                |   12    12     0     0 ++++
 /trunk/samples/alphaev56-unknown-linux-gnu/crosstool.config    |   50    15    35     0 +++++-----------
 3 files changed, 28 insertions(+), 37 deletions(-)
2009-05-05 18:22:33 +00:00
Yann E. MORIN"
99db580108 Update the samples to the latest set of options. No config change.
-------- diffstat follows --------
 /trunk/samples/x86_64-unknown-linux-gnu/crosstool.config          |   12     5     7     0 +++++-------
 /trunk/samples/sh4-unknown-linux-gnu/crosstool.config             |   12     5     7     0 +++++-------
 /trunk/samples/armeb-unknown-linux-uclibc/crosstool.config        |   12     5     7     0 +++++-------
 /trunk/samples/arm-unknown-elf/crosstool.config                   |   10     3     7     0 +++-------
 /trunk/samples/arm-unknown-linux-gnueabi/crosstool.config         |   12     5     7     0 +++++-------
 /trunk/samples/ia64-unknown-linux-gnu/crosstool.config            |   12     5     7     0 +++++-------
 /trunk/samples/x86_64-unknown-linux-uclibc/crosstool.config       |   12     5     7     0 +++++-------
 /trunk/samples/armeb-unknown-linux-gnueabi/crosstool.config       |   12     5     7     0 +++++-------
 /trunk/samples/powerpc-e500v2-linux-gnuspe/crosstool.config       |   12     5     7     0 +++++-------
 /trunk/samples/i686-nptl-linux-gnu/crosstool.config               |   12     5     7     0 +++++-------
 /trunk/samples/powerpc-unknown-linux-gnu/crosstool.config         |   12     5     7     0 +++++-------
 /trunk/samples/arm-unknown-linux-gnu/crosstool.config             |   12     5     7     0 +++++-------
 /trunk/samples/mips-unknown-linux-uclibc/crosstool.config         |   12     5     7     0 +++++-------
 /trunk/samples/arm-unknown-linux-uclibcgnueabi/crosstool.config   |   12     5     7     0 +++++-------
 /trunk/samples/arm-iphone-linux-gnueabi/crosstool.config          |    6     4     2     0 ++++--
 /trunk/samples/armeb-unknown-linux-gnu/crosstool.config           |   12     5     7     0 +++++-------
 /trunk/samples/powerpc-unknown_nofpu-linux-gnu/crosstool.config   |   12     5     7     0 +++++-------
 /trunk/samples/i586-geode-linux-uclibc/crosstool.config           |   12     5     7     0 +++++-------
 /trunk/samples/arm-unknown-linux-uclibc/crosstool.config          |   12     5     7     0 +++++-------
 /trunk/samples/powerpc-unknown-linux-uclibc/crosstool.config      |   12     5     7     0 +++++-------
 /trunk/samples/powerpc-405-linux-gnu/crosstool.config             |   12     5     7     0 +++++-------
 /trunk/samples/armeb-unknown-linux-uclibcgnueabi/crosstool.config |   12     5     7     0 +++++-------
 /trunk/samples/arm-unknown-eabi/crosstool.config                  |   10     3     7     0 +++-------
 /trunk/samples/mipsel-unknown-linux-gnu/crosstool.config          |   12     5     7     0 +++++-------
 /trunk/samples/powerpc64-unknown-linux-gnu/crosstool.config       |   12     5     7     0 +++++-------
 /trunk/samples/alphaev56-unknown-linux-gnu/crosstool.config       |   12     5     7     0 +++++-------
 /trunk/samples/powerpc-860-linux-gnu/crosstool.config             |   12     5     7     0 +++++-------
 27 files changed, 130 insertions(+), 184 deletions(-)
2009-04-19 17:06:49 +00:00
Yann E. MORIN"
2c4722fe11 Remove all reference to proxy in all sample configs.
-------- diffstat follows --------
 /trunk/samples/armeb-unknown-linux-uclibc/crosstool.config        |    2     0     2     0 --
 /trunk/samples/sh4-unknown-linux-gnu/crosstool.config             |    2     0     2     0 --
 /trunk/samples/x86_64-unknown-linux-gnu/crosstool.config          |    2     0     2     0 --
 /trunk/samples/arm-unknown-elf/crosstool.config                   |    2     0     2     0 --
 /trunk/samples/armeb-unknown-eabi/crosstool.config                |    2     0     2     0 --
 /trunk/samples/arm-unknown-linux-gnueabi/crosstool.config         |    2     0     2     0 --
 /trunk/samples/ia64-unknown-linux-gnu/crosstool.config            |    2     0     2     0 --
 /trunk/samples/x86_64-unknown-linux-uclibc/crosstool.config       |    2     0     2     0 --
 /trunk/samples/armeb-unknown-linux-gnueabi/crosstool.config       |    2     0     2     0 --
 /trunk/samples/powerpc-e500v2-linux-gnuspe/crosstool.config       |    2     0     2     0 --
 /trunk/samples/i686-nptl-linux-gnu/crosstool.config               |    2     0     2     0 --
 /trunk/samples/arm-unknown-linux-gnu/crosstool.config             |    2     0     2     0 --
 /trunk/samples/powerpc-unknown-linux-gnu/crosstool.config         |    2     0     2     0 --
 /trunk/samples/mips-unknown-linux-uclibc/crosstool.config         |    2     0     2     0 --
 /trunk/samples/arm-unknown-linux-uclibcgnueabi/crosstool.config   |    2     0     2     0 --
 /trunk/samples/arm-iphone-linux-gnueabi/crosstool.config          |    2     0     2     0 --
 /trunk/samples/armeb-unknown-linux-gnu/crosstool.config           |    2     0     2     0 --
 /trunk/samples/powerpc-unknown_nofpu-linux-gnu/crosstool.config   |    2     0     2     0 --
 /trunk/samples/i586-geode-linux-uclibc/crosstool.config           |    2     0     2     0 --
 /trunk/samples/arm-unknown-linux-uclibc/crosstool.config          |    2     0     2     0 --
 /trunk/samples/powerpc-unknown-linux-uclibc/crosstool.config      |    2     0     2     0 --
 /trunk/samples/mips-unknown-elf/crosstool.config                  |    2     0     2     0 --
 /trunk/samples/powerpc-405-linux-gnu/crosstool.config             |    2     0     2     0 --
 /trunk/samples/armeb-unknown-linux-uclibcgnueabi/crosstool.config |    2     0     2     0 --
 /trunk/samples/arm-unknown-eabi/crosstool.config                  |    2     0     2     0 --
 /trunk/samples/mipsel-unknown-linux-gnu/crosstool.config          |    2     0     2     0 --
 /trunk/samples/powerpc64-unknown-linux-gnu/crosstool.config       |    2     0     2     0 --
 /trunk/samples/alphaev56-unknown-linux-gnu/crosstool.config       |    2     0     2     0 --
 /trunk/samples/powerpc-860-linux-gnu/crosstool.config             |    2     0     2     0 --
 29 files changed, 58 deletions(-)
2009-04-19 16:38:30 +00:00
Yann E. MORIN"
811306242c Update all samples.
/trunk/samples/armeb-unknown-linux-uclibc/crosstool.config        |   78    55    23     0 ++++++---
 /trunk/samples/sh4-unknown-linux-gnu/crosstool.config             |   35    18    17     0 ++--
 /trunk/samples/x86_64-unknown-linux-gnu/crosstool.config          |  104    68    36     0 ++++++++----
 /trunk/samples/arm-unknown-elf/crosstool.config                   |   54    47     7     0 +++++-
 /trunk/samples/armeb-unknown-eabi/crosstool.config                |   54    47     7     0 +++++-
 /trunk/samples/arm-unknown-linux-gnueabi/crosstool.config         |  113    73    40     0 ++++++++-----
 /trunk/samples/ia64-unknown-linux-gnu/crosstool.config            |   91    61    30     0 +++++++---
 /trunk/samples/x86_64-unknown-linux-uclibc/crosstool.config       |   78    55    23     0 ++++++---
 /trunk/samples/armeb-unknown-linux-gnueabi/crosstool.config       |  105    69    36     0 ++++++++----
 /trunk/samples/powerpc-e500v2-linux-gnuspe/crosstool.config       |   96    63    33     0 +++++++----
 /trunk/samples/i686-nptl-linux-gnu/crosstool.config               |   78    48    30     0 ++++++---
 /trunk/samples/arm-unknown-linux-gnu/crosstool.config             |  105    69    36     0 ++++++++----
 /trunk/samples/powerpc-unknown-linux-gnu/crosstool.config         |  103    67    36     0 ++++++++----
 /trunk/samples/mips-unknown-linux-uclibc/crosstool.config         |   77    54    23     0 ++++++---
 /trunk/samples/arm-unknown-linux-uclibcgnueabi/crosstool.config   |   78    55    23     0 ++++++---
 /trunk/samples/arm-iphone-linux-gnueabi/crosstool.config          |   84    57    27     0 +++++++---
 /trunk/samples/armeb-unknown-linux-gnu/crosstool.config           |  105    69    36     0 ++++++++----
 /trunk/samples/powerpc-unknown_nofpu-linux-gnu/crosstool.config   |  104    68    36     0 ++++++++----
 /trunk/samples/i586-geode-linux-uclibc/crosstool.config           |   78    55    23     0 ++++++---
 /trunk/samples/arm-unknown-linux-uclibc/crosstool.config          |   78    55    23     0 ++++++---
 /trunk/samples/powerpc-unknown-linux-uclibc/crosstool.config      |   77    54    23     0 ++++++---
 /trunk/samples/mips-unknown-elf/crosstool.config                  |   54    47     7     0 +++++-
 /trunk/samples/powerpc-405-linux-gnu/crosstool.config             |  104    68    36     0 ++++++++----
 /trunk/samples/armeb-unknown-linux-uclibcgnueabi/crosstool.config |   26    13    13     0 +-
 /trunk/samples/arm-unknown-eabi/crosstool.config                  |   54    47     7     0 +++++-
 /trunk/samples/mipsel-unknown-linux-gnu/crosstool.config          |  104    68    36     0 ++++++++----
 /trunk/samples/powerpc64-unknown-linux-gnu/crosstool.config       |   75    49    26     0 +++++----
 /trunk/samples/alphaev56-unknown-linux-gnu/crosstool.config       |   94    63    31     0 +++++++----
 28 files changed, 1562 insertions(+), 724 deletions(-)
2009-03-31 17:05:01 +00:00
Yann E. MORIN"
a67e4ef99f Update this PPC sample.
/trunk/samples/powerpc-860-linux-gnu/crosstool.config |  102    67    35     0 ++++++++++++++++---------
 1 file changed, 67 insertions(+), 35 deletions(-)
2009-03-29 09:42:19 +00:00
Yann E. MORIN"
11c0f59b90 Update the armeb-unkown-linux-uclibcgnueabi sample to use absolutely latest versions.
/trunk/samples/armeb-unknown-linux-uclibcgnueabi/uClibc-0.9.30.1.config |  243   243     0     0 ++++++++++
 /trunk/samples/armeb-unknown-linux-uclibcgnueabi/crosstool.config       |   52    38    14     0 +-
 2 files changed, 281 insertions(+), 14 deletions(-)
2009-03-08 22:39:58 +00:00
Yann E. MORIN"
3d7298fc4f Update the EXPERIMENTAL SuperH sample to use gcc-4.3.2.
/trunk/samples/sh4-unknown-linux-gnu/crosstool.config |   28    21     7     0 +++++++++++++++++++------
 1 file changed, 21 insertions(+), 7 deletions(-)
2009-03-07 11:05:37 +00:00
Yann E. MORIN"
c4f56a7c52 Update the SuperH sample.
Build-tested only.

 /trunk/samples/sh4-unknown-linux-gnu/crosstool.config |   54    40    14     0 +++++++++++++++++++------
 1 file changed, 40 insertions(+), 14 deletions(-)
2009-03-05 17:51:15 +00:00
Yann E. MORIN"
26cb83f176 Update the i686-unknown-linux-gnu sample to use up-to-date components.
/trunk/samples/i686-nptl-linux-gnu/crosstool.config |   46    30    16     0 ++++++++++++++++++---------
 1 file changed, 30 insertions(+), 16 deletions(-)
2009-02-03 07:55:07 +00:00
Yann E. MORIN"
97b23feb3a Update this sample.
/trunk/samples/armeb-unknown-linux-uclibcgnueabi/crosstool.config |   16    12     4     0 ++++++++++---
 1 file changed, 12 insertions(+), 4 deletions(-)
2009-02-01 23:12:30 +00:00
Yann E. MORIN"
94e376af77 Add support for powerpc64, along with an EXPERIMENTAL sample.
/trunk/scripts/build/arch/powerpc64.sh                      |   21     1    20     0 -
 /trunk/scripts/build/arch/powerpc.sh                        |   21     1    20     0 -
 /trunk/samples/powerpc64-unknown-linux-gnu/crosstool.config |  388   388     0     0 +++++++++++++++++++
 /trunk/samples/powerpc64-unknown-linux-gnu/reported.by      |    3     3     0     0 +
 /trunk/config/arch/powerpc-powerpc64.in-common              |   12     4     8     0 -
 /trunk/config/arch/powerpc.in                               |   15     0    15     0 -
 /trunk/config/arch/powerpc64.in                             |   19     3    16     0 -
 7 files changed, 400 insertions(+), 79 deletions(-)
2009-01-31 17:39:35 +00:00
Yann E. MORIN"
bf553ae72b Fix white space damage after switching to using paths found by ./configure.
/trunk/samples/samples.mk |    2     1     1     0
 /trunk/config/config.mk   |  104    52    52     0 ++++++++++++++++++++++++++--------------------------
 2 files changed, 53 insertions(+), 53 deletions(-)
2009-01-27 20:38:48 +00:00
Yann E. MORIN"
c7a1e6a4da Use the paths found by ./configure in the ct-ng.in makefile script and its fragments.
/trunk/kconfig/kconfig.mk |    2     1     1     0 +-
 /trunk/samples/samples.mk |   18     9     9     0 +++++++++---------
 /trunk/config/config.mk   |   10     5     5     0 +++++-----
 /trunk/ct-ng.in           |   22    13     9     0 +++++++++++++---------
 4 files changed, 28 insertions(+), 24 deletions(-)
2009-01-26 18:36:02 +00:00
Yann E. MORIN"
a45c6b0232 Update all samples to the latest set of config options.
There might be some small issues here and there due to the split of CT_ExtractAndPatch.

 /trunk/samples/x86_64-unknown-linux-gnu/crosstool.config          |   14    11     3     0 ++++++++++---
 /trunk/samples/sh4-unknown-linux-gnu/crosstool.config             |   13    10     3     0 +++++++++---
 /trunk/samples/armeb-unknown-linux-uclibc/crosstool.config        |   10     7     3     0 ++++++---
 /trunk/samples/arm-unknown-elf/crosstool.config                   |    8     4     4     0 +++---
 /trunk/samples/arm-unknown-linux-gnueabi/crosstool.config         |   14    11     3     0 ++++++++++---
 /trunk/samples/armeb-unknown-eabi/crosstool.config                |    8     4     4     0 +++---
 /trunk/samples/ia64-unknown-linux-gnu/crosstool.config            |   13    10     3     0 +++++++++---
 /trunk/samples/x86_64-unknown-linux-uclibc/crosstool.config       |   11     8     3     0 +++++++---
 /trunk/samples/armeb-unknown-linux-gnueabi/crosstool.config       |   14    11     3     0 ++++++++++---
 /trunk/samples/powerpc-e500v2-linux-gnuspe/crosstool.config       |   11     8     3     0 +++++++---
 /trunk/samples/i686-nptl-linux-gnu/crosstool.config               |   14    11     3     0 ++++++++++---
 /trunk/samples/powerpc-unknown-linux-gnu/crosstool.config         |   14    11     3     0 ++++++++++---
 /trunk/samples/arm-unknown-linux-gnu/crosstool.config             |   14    11     3     0 ++++++++++---
 /trunk/samples/mips-unknown-linux-uclibc/crosstool.config         |   10     7     3     0 ++++++---
 /trunk/samples/arm-unknown-linux-uclibcgnueabi/crosstool.config   |   11     8     3     0 +++++++---
 /trunk/samples/arm-iphone-linux-gnueabi/crosstool.config          |    5     2     3     0 ++---
 /trunk/samples/armeb-unknown-linux-gnu/crosstool.config           |   14    11     3     0 ++++++++++---
 /trunk/samples/powerpc-unknown_nofpu-linux-gnu/crosstool.config   |   14    11     3     0 ++++++++++---
 /trunk/samples/powerpc-unknown-linux-uclibc/crosstool.config      |   10     7     3     0 ++++++---
 /trunk/samples/arm-unknown-linux-uclibc/crosstool.config          |   11     8     3     0 +++++++---
 /trunk/samples/i586-geode-linux-uclibc/crosstool.config           |   11     8     3     0 +++++++---
 /trunk/samples/powerpc-405-linux-gnu/crosstool.config             |   14    11     3     0 ++++++++++---
 /trunk/samples/mips-unknown-elf/crosstool.config                  |    8     4     4     0 +++---
 /trunk/samples/armeb-unknown-linux-uclibcgnueabi/crosstool.config |   11     8     3     0 +++++++---
 /trunk/samples/mipsel-unknown-linux-gnu/crosstool.config          |   13    10     3     0 +++++++++---
 /trunk/samples/arm-unknown-eabi/crosstool.config                  |    8     4     4     0 +++---
 /trunk/samples/alphaev56-unknown-linux-gnu/crosstool.config       |   14    11     3     0 ++++++++++---
 /trunk/samples/powerpc-860-linux-gnu/crosstool.config             |   13    10     3     0 +++++++++---
 28 files changed, 237 insertions(+), 88 deletions(-)
2009-01-06 22:22:02 +00:00
Yann E. MORIN"
9d9909d49c Add an experimental iPhone toolchain found on the net.
/trunk/samples/arm-iphone-linux-gnueabi/crosstool.config |  332   332     0     0 ++++++++++++++++++++++
 /trunk/samples/arm-iphone-linux-gnueabi/reported.by      |    3     3     0     0 +
 2 files changed, 335 insertions(+)
2009-01-04 14:14:49 +00:00
Yann E. MORIN"
d09d633fb2 Don't use /bin/ash in samples.
/trunk/samples/armeb-unknown-eabi/crosstool.config |    6     3     3     0 +++---
 /trunk/samples/mips-unknown-elf/crosstool.config   |    6     3     3     0 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)
2008-11-30 20:46:17 +00:00
Yann E. MORIN"
7029a674e3 Update all these samples.
/trunk/samples/x86_64-unknown-linux-gnu/crosstool.config        |    9     5     4     0 +++++----
 /trunk/samples/sh4-unknown-linux-gnu/crosstool.config           |   11     6     5     0 ++++++-----
 /trunk/samples/armeb-unknown-linux-uclibc/crosstool.config      |    9     5     4     0 +++++----
 /trunk/samples/arm-unknown-elf/crosstool.config                 |    9     5     4     0 +++++----
 /trunk/samples/arm-unknown-linux-gnueabi/crosstool.config       |    9     5     4     0 +++++----
 /trunk/samples/armeb-unknown-eabi/crosstool.config              |    9     5     4     0 +++++----
 /trunk/samples/ia64-unknown-linux-gnu/crosstool.config          |   11     6     5     0 ++++++-----
 /trunk/samples/x86_64-unknown-linux-uclibc/crosstool.config     |    9     5     4     0 +++++----
 /trunk/samples/armeb-unknown-linux-gnueabi/crosstool.config     |    9     5     4     0 +++++----
 /trunk/samples/powerpc-e500v2-linux-gnuspe/crosstool.config     |    9     5     4     0 +++++----
 /trunk/samples/powerpc-e500v2-linux-gnuspe/reported.by          |    7     1     6     0 +------
 /trunk/samples/i686-nptl-linux-gnu/crosstool.config             |    9     5     4     0 +++++----
 /trunk/samples/powerpc-unknown-linux-gnu/crosstool.config       |    9     5     4     0 +++++----
 /trunk/samples/arm-unknown-linux-gnu/crosstool.config           |    9     5     4     0 +++++----
 /trunk/samples/mips-unknown-linux-uclibc/crosstool.config       |    9     5     4     0 +++++----
 /trunk/samples/arm-unknown-linux-uclibcgnueabi/crosstool.config |    9     5     4     0 +++++----
 /trunk/samples/armeb-unknown-linux-gnu/crosstool.config         |    9     5     4     0 +++++----
 /trunk/samples/powerpc-unknown_nofpu-linux-gnu/crosstool.config |    9     5     4     0 +++++----
 /trunk/samples/powerpc-unknown-linux-uclibc/crosstool.config    |    9     5     4     0 +++++----
 /trunk/samples/arm-unknown-linux-uclibc/crosstool.config        |    9     5     4     0 +++++----
 /trunk/samples/i586-geode-linux-uclibc/crosstool.config         |    9     5     4     0 +++++----
 /trunk/samples/powerpc-405-linux-gnu/crosstool.config           |    9     5     4     0 +++++----
 /trunk/samples/mips-unknown-elf/crosstool.config                |   11     6     5     0 ++++++-----
 /trunk/samples/mipsel-unknown-linux-gnu/crosstool.config        |   11     6     5     0 ++++++-----
 /trunk/samples/arm-unknown-eabi/crosstool.config                |    9     5     4     0 +++++----
 /trunk/samples/powerpc-860-linux-gnu/crosstool.config           |    2     1     1     0 +-
 26 files changed, 126 insertions(+), 107 deletions(-)
2008-11-25 18:41:49 +00:00
Yann E. MORIN"
b0cc001a0a Update this Alpha sample to use binutils-2.19.
/trunk/samples/alphaev56-unknown-linux-gnu/crosstool.config |    9     5     4     0 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)
2008-11-23 18:00:59 +00:00
Yann E. MORIN"
3208de7fba Update this sample.
/trunk/samples/powerpc-860-linux-gnu/crosstool.config |   17     6    11     0 ++++++-----------
 1 file changed, 6 insertions(+), 11 deletions(-)
2008-11-23 17:24:26 +00:00
Yann E. MORIN"
d8696993ec Update this sample to use binutils-2.19.
/trunk/samples/armeb-unknown-linux-uclibcgnueabi/crosstool.config |    9     5     4     0 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)
2008-11-23 16:35:12 +00:00
Yann E. MORIN"
c2803e1a04 Update the two x86_64 samples.
/trunk/samples/x86_64-unknown-linux-gnu/crosstool.config        |   38    22    16     0 +-
 /trunk/samples/x86_64-unknown-linux-uclibc/uClibc-0.9.30.config |  245   245     0     0 +++++++++++++++
 /trunk/samples/x86_64-unknown-linux-uclibc/crosstool.config     |   40    24    16     0 +-
 3 files changed, 291 insertions(+), 32 deletions(-)
2008-11-21 17:46:42 +00:00
Yann E. MORIN"
4ffd919be2 Be less verbose when a sample is directly built with build-sample-name.
/trunk/samples/samples.mk |    7     3     4     0 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)
2008-11-21 15:37:46 +00:00
Yann E. MORIN"
f2ea0ade3a Update the PowerPC samples.
/trunk/samples/powerpc-e500v2-linux-gnuspe/crosstool.config      |   43    26    17     0 +-
 /trunk/samples/powerpc-unknown-linux-gnu/crosstool.config        |   24    17     7     0 +
 /trunk/samples/powerpc-unknown_nofpu-linux-gnu/crosstool.config  |   24    17     7     0 +
 /trunk/samples/powerpc-unknown-linux-uclibc/uClibc-0.9.30.config |  248   248     0     0 ++++++++++++++
 /trunk/samples/powerpc-unknown-linux-uclibc/crosstool.config     |   28    20     8     0 +-
 /trunk/samples/powerpc-860-linux-gnu/crosstool.config            |   30    19    11     0 +-
 6 files changed, 347 insertions(+), 50 deletions(-)
2008-11-21 06:39:52 +00:00
Yann E. MORIN"
70fa0c34ce Update this sample.
/trunk/samples/powerpc-405-linux-gnu/crosstool.config |   24    17     7     0 +++++++++++++++++-------
 1 file changed, 17 insertions(+), 7 deletions(-)
2008-11-20 21:34:30 +00:00
Yann E. MORIN"
bd8804ec58 Update this sample.
/trunk/samples/sh4-unknown-linux-gnu/crosstool.config |   27    19     8     0 ++++++++++++++++++-------
 1 file changed, 19 insertions(+), 8 deletions(-)
2008-11-18 12:39:14 +00:00
Yann E. MORIN"
0d4e7a48b6 Update this sample.
/trunk/samples/mips-unknown-elf/crosstool.config |   14    10     4     0 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)
2008-11-18 12:22:18 +00:00
Yann E. MORIN"
2ee94f8e75 Update this sample.
/trunk/samples/mipsel-unknown-linux-gnu/crosstool.config |   26    18     8     0 +++++++++++++++-------
 1 file changed, 18 insertions(+), 8 deletions(-)
2008-11-18 12:09:32 +00:00
Yann E. MORIN"
599eb5c61f Update this sample.
/trunk/samples/ia64-unknown-linux-gnu/crosstool.config |   27    19     8     0 +++++++++++++++++-------
 1 file changed, 19 insertions(+), 8 deletions(-)
2008-11-18 10:33:35 +00:00
Yann E. MORIN"
48c2f812eb Update this sample.
/trunk/samples/i686-nptl-linux-gnu/crosstool.config |   29    20     9     0 +++++++++++++++++++--------
 1 file changed, 20 insertions(+), 9 deletions(-)
2008-11-18 10:07:38 +00:00
Yann E. MORIN"
d3f173b196 Update this sample to use uClibc-0.9.30.
/trunk/samples/i586-geode-linux-uclibc/uClibc-0.9.30.config |  263   263     0     0 +++++++++++++++++++
 /trunk/samples/i586-geode-linux-uclibc/crosstool.config     |   40    24    16     0 ++-
 2 files changed, 287 insertions(+), 16 deletions(-)
2008-11-18 08:46:49 +00:00
Yann E. MORIN"
6b1f3a55e9 These sample are no longer EXPERIMENTAL.
/trunk/samples/armeb-unknown-linux-uclibc/crosstool.config |   10     2     8     0 ++--------
 /trunk/samples/arm-unknown-linux-uclibc/crosstool.config   |   10     2     8     0 ++--------
 2 files changed, 4 insertions(+), 16 deletions(-)
2008-11-18 07:41:13 +00:00
Yann E. MORIN"
a968b7d5b6 Bare-metal is no longer EXPERIMENTAL.
/trunk/samples/arm-unknown-elf/crosstool.config  |    6     2     4     0 ++----
 /trunk/samples/arm-unknown-eabi/crosstool.config |    6     2     4     0 ++----
 2 files changed, 4 insertions(+), 8 deletions(-)
2008-11-18 07:37:23 +00:00
Yann E. MORIN"
9ce896e6d3 Update all these samples. Those using uClinc are now using 0.9.30.
/trunk/samples/armeb-unknown-linux-uclibc/uClibc-0.9.30.config |  243   243     0     0 +++++++++++++++
 /trunk/samples/armeb-unknown-linux-uclibc/crosstool.config     |   34    24    10     0 +-
 /trunk/samples/arm-unknown-elf/crosstool.config                |   13    10     3     0 +
 /trunk/samples/armeb-unknown-eabi/crosstool.config             |   12     9     3     0 +
 /trunk/samples/arm-unknown-linux-gnueabi/crosstool.config      |   27    20     7     0 +-
 /trunk/samples/armeb-unknown-linux-gnueabi/crosstool.config    |   29    20     9     0 +-
 /trunk/samples/arm-unknown-linux-gnu/crosstool.config          |   31    21    10     0 +-
 /trunk/samples/armeb-unknown-linux-gnu/crosstool.config        |   29    20     9     0 +-
 /trunk/samples/arm-unknown-linux-uclibc/uClibc-0.9.30.config   |  253   253     0     0 ++++++++++++++++
 /trunk/samples/arm-unknown-linux-uclibc/crosstool.config       |   34    24    10     0 +-
 /trunk/samples/arm-unknown-eabi/crosstool.config               |   13    10     3     0 +
 /trunk/samples/alphaev56-unknown-linux-gnu/crosstool.config    |   29    20     9     0 +-
 12 files changed, 674 insertions(+), 73 deletions(-)
2008-11-18 06:50:29 +00:00
Yann E. MORIN"
4f5952aebf There's no EXPERIMENTAL stuff in this sample.
/trunk/samples/arm-unknown-linux-uclibcgnueabi/crosstool.config |   12     3     9     0 +++---------
 1 file changed, 3 insertions(+), 9 deletions(-)
2008-11-17 10:26:45 +00:00
Yann E. MORIN"
7eaa4edfae Update this ARM sample to use uClibc-0.9.30.
/trunk/samples/arm-unknown-linux-uclibcgnueabi/uClibc-0.9.30.config |  253   253     0     0 +++++++++++
 /trunk/samples/arm-unknown-linux-uclibcgnueabi/crosstool.config     |   34    24    10     0 +
 2 files changed, 277 insertions(+), 10 deletions(-)
2008-11-17 10:01:14 +00:00
Yann E. MORIN"
b282b4e3ed Update this MIPS sample to use uClibc-0.9.30.
/trunk/samples/mips-unknown-linux-uclibc/uClibc-0.9.30.config |  254   254     0     0 +++++++++++++++++
 /trunk/samples/mips-unknown-linux-uclibc/crosstool.config     |   42    24    18     0 ++-
 2 files changed, 278 insertions(+), 18 deletions(-)
2008-11-17 09:01:38 +00:00
Yann E. MORIN"
9fdc3888c4 Update this ARM sample to build with latest uClibc (0.9.30).
/trunk/samples/armeb-unknown-linux-uclibcgnueabi/uClibc-0.9.30.config |  243   243     0     0 ++++++++++
 /trunk/samples/armeb-unknown-linux-uclibcgnueabi/crosstool.config     |   54    27    27     0 +-
 2 files changed, 270 insertions(+), 27 deletions(-)
2008-11-16 20:38:07 +00:00
Yann E. MORIN"
37f8116867 Add a bare-metal ARM EABI sample.
/trunk/samples/armeb-unknown-eabi/crosstool.config |  241   241     0     0 ++++++++++++++++++++++++++++
 /trunk/samples/armeb-unknown-eabi/reported.by      |    3     3     0     0 +
 2 files changed, 244 insertions(+)
2008-11-04 16:14:55 +00:00
Yann E. MORIN"
3b35459c76 Add a bare-metal MIPS sample.
/trunk/samples/mips-unknown-elf/crosstool.config |  239   239     0     0 ++++++++++++++++++++++++++++++
 /trunk/samples/mips-unknown-elf/reported.by      |    3     3     0     0 +
 2 files changed, 242 insertions(+)
2008-11-02 11:46:36 +00:00
Yann E. MORIN"
ea9b9ea07b Remove regtest actions, introduce build-all actions:
- regtest was not easy to use
- one may wish to simply build all samples
- introduce a per-sample automatic build

 /trunk/docs/overview.txt  |   19    14     5     0 ++++++++---
 /trunk/samples/samples.mk |   92    49    43     0 ++++++++++++++++++++++++++++-------------------------
 /trunk/ct-ng.comp         |    8     5     3     0 +++--
 3 files changed, 68 insertions(+), 51 deletions(-)
2008-10-31 18:31:01 +00:00
Yann E. MORIN"
6bfe4b1550 Transform LAN_MIRROR into plain MIRROR:
- it does not have to be in the LAN
- offer mirror preference over upstream
  - if selected, the mirror will be scanned before upstream servers
  - if not selected, upstream servers will be scanned before the mirror
- I've set up such an internet-accessible mirror
  - uClibc snapshot available
  - MPFR releases available (the MPFR site is down from time to time)
- update all samples to use my mirror as a failover

 /trunk/scripts/functions                                          |   45    16    29     0 +++++--------
 /trunk/samples/x86_64-unknown-linux-gnu/crosstool.config          |    8     7     1     0 ++
 /trunk/samples/sh4-unknown-linux-gnu/crosstool.config             |    8     7     1     0 ++
 /trunk/samples/armeb-unknown-linux-uclibc/crosstool.config        |    8     7     1     0 ++
 /trunk/samples/arm-unknown-elf/crosstool.config                   |    8     7     1     0 ++
 /trunk/samples/arm-unknown-linux-gnueabi/crosstool.config         |    8     7     1     0 ++
 /trunk/samples/ia64-unknown-linux-gnu/crosstool.config            |    8     7     1     0 ++
 /trunk/samples/x86_64-unknown-linux-uclibc/crosstool.config       |    8     7     1     0 ++
 /trunk/samples/armeb-unknown-linux-gnueabi/crosstool.config       |    8     7     1     0 ++
 /trunk/samples/powerpc-e500v2-linux-gnuspe/crosstool.config       |    8     7     1     0 ++
 /trunk/samples/i686-nptl-linux-gnu/crosstool.config               |    8     7     1     0 ++
 /trunk/samples/powerpc-unknown-linux-gnu/crosstool.config         |    8     7     1     0 ++
 /trunk/samples/arm-unknown-linux-gnu/crosstool.config             |    8     7     1     0 ++
 /trunk/samples/mips-unknown-linux-uclibc/crosstool.config         |    8     7     1     0 ++
 /trunk/samples/arm-unknown-linux-uclibcgnueabi/crosstool.config   |    8     7     1     0 ++
 /trunk/samples/armeb-unknown-linux-gnu/crosstool.config           |    8     7     1     0 ++
 /trunk/samples/powerpc-unknown_nofpu-linux-gnu/crosstool.config   |    8     7     1     0 ++
 /trunk/samples/powerpc-unknown-linux-uclibc/crosstool.config      |    8     7     1     0 ++
 /trunk/samples/arm-unknown-linux-uclibc/crosstool.config          |    8     7     1     0 ++
 /trunk/samples/i586-geode-linux-uclibc/crosstool.config           |    8     7     1     0 ++
 /trunk/samples/powerpc-405-linux-gnu/crosstool.config             |    8     7     1     0 ++
 /trunk/samples/armeb-unknown-linux-uclibcgnueabi/crosstool.config |    8     7     1     0 ++
 /trunk/samples/mipsel-unknown-linux-gnu/crosstool.config          |    8     7     1     0 ++
 /trunk/samples/arm-unknown-eabi/crosstool.config                  |    8     7     1     0 ++
 /trunk/samples/alphaev56-unknown-linux-gnu/crosstool.config       |    8     7     1     0 ++
 /trunk/samples/powerpc-860-linux-gnu/crosstool.config             |    8     7     1     0 ++
 /trunk/config/global/download.in                                  |   42    25    17     0 +++++++-----
 27 files changed, 216 insertions(+), 71 deletions(-)
2008-10-31 18:27:27 +00:00
Yann E. MORIN"
84ba331620 Typo.
/trunk/samples/i686-nptl-linux-gnu/reported.by |    2     1     1     0 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
2008-10-30 13:14:39 +00:00
Yann E. MORIN"
5d3a887d98 Update this x86_64 sample.
/trunk/samples/x86_64-unknown-linux-gnu/crosstool.config |  166    93    73     0 ++++++++++++----------
 /trunk/samples/x86_64-unknown-linux-gnu/reported.by      |    1     1     0     0 +
 2 files changed, 94 insertions(+), 73 deletions(-)
2008-10-30 09:42:07 +00:00
Yann E. MORIN"
645615a804 Update this ARM sample.
/trunk/samples/armeb-unknown-linux-uclibc/crosstool.config |  150    77    73     0 ++++++++++----------
 /trunk/samples/armeb-unknown-linux-uclibc/reported.by      |    3     3     0     0 +
 2 files changed, 80 insertions(+), 73 deletions(-)
2008-10-30 06:49:06 +00:00
Yann E. MORIN"
d31396bc23 Finally enable the PPC-8xx memset workaround, by Nye Liu.
http://sourceware.org/ml/crossgcc/2008-10/msg00094.html

 /trunk/scripts/build/libc/glibc.sh                          |    9     9     0     0 +
 /trunk/patches/glibc/2.7/290-powerpc-8xx-CPU15-errata.patch |   22    19     3     0 +
 /trunk/samples/powerpc-860-linux-gnu/crosstool.config       |  344   344     0     0 +++++++++++++++++++
 /trunk/samples/powerpc-860-linux-gnu/reported.by            |    3     3     0     0 +
 4 files changed, 375 insertions(+), 3 deletions(-)
2008-10-29 21:20:23 +00:00
Yann E. MORIN"
8cda25336c There is no EXPERIMENTAL feature in this powerpc sample.
/trunk/samples/powerpc-unknown_nofpu-linux-gnu/crosstool.config |   11     3     8     0 +++--------
 1 file changed, 3 insertions(+), 8 deletions(-)
2008-10-29 13:40:17 +00:00
Yann E. MORIN"
e17bd17184 Update this w86_64 sample.
/trunk/samples/x86_64-unknown-linux-uclibc/crosstool.config |  155    84    71     0 ++++++++++---------
 /trunk/samples/x86_64-unknown-linux-uclibc/reported.by      |    3     3     0     0 +
 2 files changed, 87 insertions(+), 71 deletions(-)
2008-10-29 13:35:44 +00:00
Yann E. MORIN"
fa4c744742 Update this powerpc sample.
/trunk/samples/powerpc-unknown_nofpu-linux-gnu/crosstool.config |    6     3     3     0 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
2008-10-29 12:19:34 +00:00
Yann E. MORIN"
04affa84d0 Update this powerpc sample.
/trunk/samples/powerpc-unknown_nofpu-linux-gnu/crosstool.config |  166    91    75     0 ++++++++-------
 /trunk/samples/powerpc-unknown_nofpu-linux-gnu/reported.by      |    1     1     0     0 +
 2 files changed, 92 insertions(+), 75 deletions(-)
2008-10-29 10:44:20 +00:00
Yann E. MORIN"
9c2b2a91f7 Update this powerpc sample.
/trunk/samples/powerpc-unknown-linux-uclibc/crosstool.config |  104    50    54     0 +++++++++---------
 /trunk/samples/powerpc-unknown-linux-uclibc/reported.by      |    2     2     0     0 +
 2 files changed, 52 insertions(+), 54 deletions(-)
2008-10-29 09:42:52 +00:00
Yann E. MORIN"
e54606d1e5 Update this powerpc sample.
/trunk/samples/powerpc-unknown-linux-gnu/crosstool.config |  161    84    77     0 +++++++++++----------
 /trunk/samples/powerpc-unknown-linux-gnu/reported.by      |    1     1     0     0 +
 2 files changed, 85 insertions(+), 77 deletions(-)
2008-10-28 15:07:28 +00:00
Yann E. MORIN"
dfbe870dbe Update this powerpc sample.
/trunk/samples/powerpc-e500v2-linux-gnuspe/crosstool.config |   20    12     8     0 +++++++++++--------
 1 file changed, 12 insertions(+), 8 deletions(-)
2008-10-28 14:06:51 +00:00
Yann E. MORIN"
34e7f335fc Update this MIPS sample.
/trunk/samples/mipsel-unknown-linux-gnu/crosstool.config |  160    83    77     0 +++++++++++-----------
 /trunk/samples/mipsel-unknown-linux-gnu/reported.by      |    1     1     0     0 +
 2 files changed, 84 insertions(+), 77 deletions(-)
2008-10-27 19:12:40 +00:00
Yann E. MORIN"
6bad5c1002 Don't use libelf in MIPS samples: it is not used as ltrace is not available for MIPS.
/trunk/samples/mips-unknown-linux-uclibc/crosstool.config |    9     4     5     0 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)
2008-10-27 18:46:04 +00:00
Yann E. MORIN"
b476443822 Enhance the make fragments:
- comment the different parts
- re-order the code so that it is homogeneous amogst fragments
- eye-candy in some existing comments

 /trunk/tools/tools.mk     |   17    15     2     0 +++++++++++++++--
 /trunk/steps.mk           |   38    26    12     0 ++++++++++++++++++++++++++------------
 /trunk/samples/samples.mk |   41    28    13     0 ++++++++++++++++++++++++++++-------------
 /trunk/config/config.mk   |    2     1     1     0 +-
 4 files changed, 70 insertions(+), 28 deletions(-)
2008-10-27 18:42:26 +00:00
Yann E. MORIN"
b4fcf60350 Update this MIPS sample.
/trunk/samples/mips-unknown-linux-uclibc/crosstool.config |  141    74    67     0 +++++++++++++++--------------
 /trunk/samples/mips-unknown-linux-uclibc/reported.by      |    3     3     0     0 +
 2 files changed, 77 insertions(+), 67 deletions(-)
2008-10-27 18:17:16 +00:00
Yann E. MORIN"
46f8e7ba90 Really, don't do DEBUG in samples.
/trunk/samples/sh4-unknown-linux-gnu/crosstool.config       |    5     1     4     0 +----
 /trunk/samples/alphaev56-unknown-linux-gnu/crosstool.config |    5     1     4     0 +----
 2 files changed, 2 insertions(+), 8 deletions(-)
2008-10-27 17:03:01 +00:00
Yann E. MORIN"
a1630bfc9b Don't do DEBUG in samples.
/trunk/samples/ia64-unknown-linux-gnu/crosstool.config |    5     1     4     0 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
2008-10-27 16:53:40 +00:00
Yann E. MORIN"
fa5a67e4a7 Update the ia64 sample.
/trunk/samples/ia64-unknown-linux-gnu/crosstool.config |  109    55    54     0 ++++++++++++------------
 /trunk/samples/ia64-unknown-linux-gnu/reported.by      |    3     3     0     0 +
 2 files changed, 58 insertions(+), 54 deletions(-)
2008-10-27 15:22:41 +00:00
Yann E. MORIN"
80c3652025 Update the i686 sample.
/trunk/samples/i686-nptl-linux-gnu/crosstool.config |  167    90    77     0 +++++++++++++++------------
 /trunk/samples/i686-nptl-linux-gnu/reported.by      |    3     3     0     0 +
 2 files changed, 93 insertions(+), 77 deletions(-)
2008-10-27 10:03:38 +00:00