summaryrefslogtreecommitdiff
path: root/samples
AgeCommit message (Collapse)AuthorFilesLines
2008-10-14Introduce the notion of a 'sample comment'.Yann E. MORIN"15-5/+32
- presence of the sample's reported.by file is now mandatory. - when saving a sample, reporter name & URL are queried, to avoid operator forget about creating the reported.by file. - when saving a sample, one can store a few-liner comment. - when recalling a sample, the reporter name, URL and comment (if present) are printed. - update the powerpc-e500v2-linux-gnuspe sample to include Nate's comment (from his original mail). - update all samples that were missing the reported.by file. /trunk/scripts/saveSample.sh | 46 35 11 0 ++++++++++++++++++------ /trunk/scripts/showSamples.sh | 12 6 6 0 +++--- /trunk/samples/powerpc-e500v2-linux-gnuspe/reported.by | 15 15 0 0 ++++++++ /trunk/samples/samples.mk | 22 17 5 0 +++++++++-- 4 files changed, 73 insertions(+), 22 deletions(-)
2008-10-14Use a function to retrieve a sample directory.Yann E. MORIN"1-10/+9
/trunk/samples/samples.mk | 19 9 10 0 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-)
2008-10-14Credit Nate CASE for his powerpc e500v2 sample.Yann E. MORIN"1-0/+2
/trunk/samples/powerpc-e500v2-linux-gnuspe/reported.by | 2 2 0 0 ++ 1 file changed, 2 insertions(+)
2008-10-14Sample config for e500v2 toolchainYann E. MORIN"1-93/+42
On Tuesday 14 October 2008 17:05:31 Nate Case wrote: > This is a sample config file for Freescale e500v2 processors (e.g., > MPC8548, MPC8572). It uses eglibc (for e500/SPE patches) and a recent > gcc (4.3.1, for e500v2 DPFP support) and will generate appropriate > dual-precision floating point instructions by default. > > Note: If building a Linux kernel with this toolchain, you will want to > make sure -mno-spe AND -mspe=no are passed to gcc to prevent SPE > ABI/instructions from getting into the kernel (which is currently > unsupported). At this time, the kernel build system only passes > -mno-spe by default (this should be fixed soon hopefully). > > A binutils snapshot is used to fix a bug present in 2.18 preventing > U-Boot from being compiled (CodeSourcery issue #2297: internal.h > (ELF_IS_SECTION_IN_SEGMENT): Adjust to cope with segments at the end of > memory). Obsoletes the powerpc-unknown-linux-gnuspe sample, so remove it. /trunk/samples/powerpc-e500v2-linux-gnuspe/crosstool.config | 307 307 0 0 +++++++++++++++++++ 1 file changed, 307 insertions(+)
2008-09-30Update the PowerPC+uClibc sample.Yann E. MORIN"1-63/+87
/trunk/samples/powerpc-unknown-linux-uclibc/crosstool.config | 150 87 63 0 ++++++++++-------- 1 file changed, 87 insertions(+), 63 deletions(-)
2008-09-29The IA64 sample builds again! :-)Yann E. MORIN"2-60/+80
/trunk/samples/ia64-unknown-linux-gnu/crosstool.config | 140 80 60 0 ++++++++++++++---------- 1 file changed, 80 insertions(+), 60 deletions(-)
2008-09-29Update the Alpha sample.Yann E. MORIN"1-63/+74
/trunk/samples/alphaev56-unknown-linux-gnu/crosstool.config | 137 74 63 0 ++++++++++--------- 1 file changed, 74 insertions(+), 63 deletions(-)
2008-09-28This PowerPC sample has been updated to use gcc-4.3.2.Yann E. MORIN"1-4/+6
/trunk/samples/powerpc-unknown-linux-gnuspe/crosstool.config | 10 6 4 0 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-)
2008-09-28The first sample to use gcc-4.3.2.Yann E. MORIN"1-4/+5
/trunk/samples/arm-unknown-linux-gnueabi/crosstool.config | 9 5 4 0 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-)
2008-09-23Update this ARM sample.Yann E. MORIN"1-61/+70
/trunk/samples/arm-unknown-linux-gnueabi/crosstool.config | 131 70 61 0 +++++++++++---------- 1 file changed, 70 insertions(+), 61 deletions(-)
2008-09-23Update the PowerPC SPE samle:Yann E. MORIN"1-9/+8
- don't DEBUG crosstool-NG and don't save intermediate steps - use released version of binutils rather than snapshots. /trunk/samples/powerpc-unknown-linux-gnuspe/crosstool.config | 17 8 9 0 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-)
2008-09-23Udate the PowerPC SPE sample.Yann E. MORIN"1-72/+81
/trunk/samples/powerpc-unknown-linux-gnuspe/crosstool.config | 153 81 72 0 ++++++++++-------- 1 file changed, 81 insertions(+), 72 deletions(-)
2008-09-14Introduce a new EXPERIMENTAL feature: BARE_METAL.Yann E. MORIN"2-0/+448
This should ultimately llow to build bare-metal compilers, for targets that have no kernel and no C library. Move the C library build script to their own sub-directory; introduce an empty build script for bare-metal. Move the compiler build script to its own sub-directory. Move the kernel build script to its own sub-directory; introduce an empty build script for bare-metal. Update the ARM target tuples to enable bare-metal targets. Add two ARM bare-metal samples. Add latest Linux kernel versions. /trunk/scripts/build/kernel/none.sh | 77 6 71 0 +---- /trunk/scripts/build/cc/gcc.sh | 58 41 17 0 ++- /trunk/scripts/build/libc/none.sh | 513 9 504 0 +----------------------------- /trunk/scripts/crosstool.sh | 17 9 8 0 + /trunk/scripts/functions | 6 4 2 0 + /trunk/scripts/showSamples.sh | 6 3 3 0 /trunk/samples/arm-unknown-elf/crosstool.config | 225 225 0 0 +++++++++++++ /trunk/samples/arm-unknown-eabi/crosstool.config | 223 223 0 0 +++++++++++++ /trunk/config/kernel/linux_headers_install.in | 64 27 37 0 ++-- /trunk/config/kernel.in | 9 8 1 0 + /trunk/config/toolchain.in | 1 1 0 0 + /trunk/config/cc/gcc.in | 3 3 0 0 + /trunk/config/debug/dmalloc.in | 1 1 0 0 + /trunk/config/debug/gdb.in | 4 3 1 0 + /trunk/config/debug/strace.in | 1 1 0 0 + /trunk/config/debug/duma.in | 1 1 0 0 + /trunk/config/cc.in | 8 8 0 0 + /trunk/config/target.in | 13 13 0 0 + /trunk/config/binutils.in | 1 1 0 0 + /trunk/config/gmp_mpfr.in | 1 1 0 0 + /trunk/config/libc.in | 17 11 6 0 + /trunk/arch/arm/functions | 3 1 2 0 - 22 files changed, 600 insertions(+), 652 deletions(-)
2008-09-05Update this sample without EXPERIMENTAL features as much as possible.Yann E. MORIN"1-6/+6
/trunk/samples/armeb-unknown-linux-uclibcgnueabi/crosstool.config | 12 6 6 0 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-)
2008-09-05Update the PPC sample to not use EXPERIMENTAL features.Yann E. MORIN"1-24/+28
/trunk/samples/powerpc-unknown-linux-gnu/crosstool.config | 52 28 24 0 +++++++++++---------- 1 file changed, 28 insertions(+), 24 deletions(-)
2008-09-05Mark the IA64 sample as being broken (might be because it uses an old gcc, ↵Yann E. MORIN"1-0/+0
that triggers a incorrect code-path in scripts/build/cc_gcc.sh).
2008-09-05Update the teo MIPS sample to use as less EXPERIMENTAL features as possible.Yann E. MORIN"2-38/+52
/trunk/samples/mips-unknown-linux-uclibc/crosstool.config | 39 24 15 0 ++++++++++------ /trunk/samples/mipsel-unknown-linux-gnu/crosstool.config | 51 28 23 0 ++++++++++++--------- 2 files changed, 52 insertions(+), 38 deletions(-)
2008-09-04Update the i686 sample to not use EXPERIMENTAL features.Yann E. MORIN"1-23/+28
/trunk/samples/i686-nptl-linux-gnu/crosstool.config | 51 28 23 0 +++++++++++++++------------ 1 file changed, 28 insertions(+), 23 deletions(-)
2008-09-04Update the latest two RM samples.Yann E. MORIN"2-29/+47
/trunk/samples/armeb-unknown-linux-uclibc/crosstool.config | 40 25 15 0 ++++++++----- /trunk/samples/armeb-unknown-linux-uclibcgnueabi/crosstool.config | 36 22 14 0 +++++++----- 2 files changed, 47 insertions(+), 29 deletions(-)
2008-09-04Update the i586-uclibc sample.Yann E. MORIN"1-15/+24
/trunk/samples/i586-geode-linux-uclibc/crosstool.config | 39 24 15 0 ++++++++++++++--------- 1 file changed, 24 insertions(+), 15 deletions(-)
2008-09-04The Alpha sample does not use EXPERIMENTAL features.Yann E. MORIN"1-24/+29
/trunk/samples/alphaev56-unknown-linux-gnu/crosstool.config | 53 29 24 0 ++++++++++--------- 1 file changed, 29 insertions(+), 24 deletions(-)
2008-09-04Update some samples to use only non-EXPERIMENTAL features where possible ↵Yann E. MORIN"4-87/+109
(uClibcis still a snashot, though). /trunk/samples/arm-unknown-linux-gnueabi/crosstool.config | 60 32 28 0 ++++++++------- /trunk/samples/arm-unknown-linux-uclibcgnueabi/crosstool.config | 36 19 17 0 +++++---- /trunk/samples/armeb-unknown-linux-gnu/crosstool.config | 54 30 24 0 ++++++++------ /trunk/samples/arm-unknown-linux-uclibc/crosstool.config | 46 28 18 0 +++++++----- 4 files changed, 109 insertions(+), 87 deletions(-)
2008-09-04Add new ARMeb EABI sample.Yann E. MORIN"1-0/+346
/trunk/samples/armeb-unknown-linux-gnueabi/crosstool.config | 346 346 0 0 +++++++++++++++++++++++++++ 1 file changed, 346 insertions(+)
2008-09-02Add a new ARM sample.Yann E. MORIN"2-0/+349
/trunk/samples/arm-unknown-linux-gnu/crosstool.config | 347 347 0 0 +++++++++++++++++++++++++++++++++ /trunk/samples/arm-unknown-linux-gnu/reported.by | 2 2 0 0 + 2 files changed, 349 insertions(+)
2008-09-02Warn the user if he/she recalls a sample with EXPERIMENTAL features.Yann E. MORIN"1-0/+12
Also, print the EXPERIMENTAL status when listing the samples. /trunk/scripts/showSamples.sh | 12 9 3 0 +++++++++--- /trunk/samples/samples.mk | 12 12 0 0 ++++++++++++ 2 files changed, 21 insertions(+), 3 deletions(-)
2008-08-13Don't do debug in this ARM sample.Yann E. MORIN"1-6/+9
/trunk/samples/arm-unknown-linux-uclibcgnueabi/crosstool.config | 15 9 6 0 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-)
2008-08-12Update the PowerPC SPE sample to not use a proxy.Yann E. MORIN"1-6/+6
/trunk/samples/powerpc-unknown-linux-gnuspe/crosstool.config | 12 6 6 0 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-)
2008-08-12Update the PowerPC SPE sample.Yann E. MORIN"1-8/+47
/trunk/samples/powerpc-unknown-linux-gnuspe/crosstool.config | 55 47 8 0 +++++++++++++++--- 1 file changed, 47 insertions(+), 8 deletions(-)
2008-08-12Add SPE extensions support for PowerPC (after a work by Thomas JOURDAN).Yann E. MORIN"1-0/+309
Add a PowerPC sample that supports SPE extensions. /trunk/arch/powerpc/functions | 13 13 0 0 + /trunk/arch/powerpc/config.in | 8 8 0 0 + /trunk/patches/gcc/4.3.1/340-make-mno-spe-work-as-expected.patch | 90 90 0 0 ++++ /trunk/samples/powerpc-unknown-linux-gnuspe/crosstool.config | 309 309 0 0 ++++++++++++++ 4 files changed, 420 insertions(+)
2008-08-07glibc-based toolchain for PowerPC can now build using the latest kernel ↵Yann E. MORIN"2-12/+14
headers (2.6.26.1). /trunk/samples/powerpc-unknown-linux-gnu/crosstool.config | 13 7 6 0 +++++++------ /trunk/samples/powerpc-unknown_nofpu-linux-gnu/crosstool.config | 13 7 6 0 +++++++------ 2 files changed, 14 insertions(+), 12 deletions(-)
2008-08-07Update all samples to the latest set of options.Yann E. MORIN"20-167/+365
Update some samples to use newer features. Add patches for the uClibc-20080801 snapshot to be able to build with gcc-4.3. Add a patch against glibc-2.7 to allow building PPC with latest kernel headers. Add a patch to gcc to use an alternate unwinding when built against uClibc (after a private explanation/request by Daniel Egger <daniel@eggers-club.de>) /trunk/patches/glibc/2.7/230-powerpc-private_futex.patch | 15 15 0 0 + /trunk/patches/uClibc/20080801/300-fix-asm.patch | 175 175 0 0 +++++++++ /trunk/patches/uClibc/20080801/100-ifaddrs.patch | 190 190 0 0 +++++++++ /trunk/patches/uClibc/20080801/200-mips-typeof.patch | 112 112 0 0 ++++++ /trunk/patches/gcc/4.3.1/330-unwind-for-uClibc.patch | 25 25 0 0 + /trunk/samples/x86_64-unknown-linux-gnu/crosstool.config | 17 10 7 0 + /trunk/samples/armeb-unknown-linux-uclibc/crosstool.config | 7 5 2 0 + /trunk/samples/arm-unknown-linux-gnueabi/crosstool.config | 7 5 2 0 + /trunk/samples/ia64-unknown-linux-gnu/crosstool.config | 14 11 3 0 + /trunk/samples/x86_64-unknown-linux-uclibc/uClibc-20080801.config | 232 232 0 0 ++++++++++++ /trunk/samples/x86_64-unknown-linux-uclibc/crosstool.config | 34 21 13 0 +- /trunk/samples/i686-nptl-linux-gnu/crosstool.config | 10 7 3 0 + /trunk/samples/powerpc-unknown-linux-gnu/crosstool.config | 12 9 3 0 + /trunk/samples/mips-unknown-linux-uclibc/uClibc-20080801.config | 249 249 0 0 ++++++++++++ /trunk/samples/mips-unknown-linux-uclibc/crosstool.config | 38 23 15 0 +- /trunk/samples/arm-unknown-linux-uclibcgnueabi/crosstool.config | 14 10 4 0 + /trunk/samples/armeb-unknown-linux-gnu/crosstool.config | 7 5 2 0 + /trunk/samples/powerpc-unknown_nofpu-linux-gnu/crosstool.config | 12 9 3 0 + /trunk/samples/arm-unknown-linux-uclibc/crosstool.config | 7 5 2 0 + /trunk/samples/i586-geode-linux-uclibc/uClibc-20080801.config | 261 261 0 0 +++++++++++++ /trunk/samples/i586-geode-linux-uclibc/crosstool.config | 32 20 12 0 ++ /trunk/samples/powerpc-unknown-linux-uclibc/crosstool.config | 12 9 3 0 + /trunk/samples/mipsel-unknown-linux-gnu/crosstool.config | 7 5 2 0 + /trunk/samples/armeb-unknown-linux-uclibcgnueabi/crosstool.config | 7 5 2 0 + /trunk/samples/alphaev56-unknown-linux-gnu/crosstool.config | 16 10 6 0 + 25 files changed, 1428 insertions(+), 84 deletions(-)
2008-08-06Update this sample to use latest tools.Yann E. MORIN"1-9/+16
/trunk/samples/mipsel-unknown-linux-gnu/crosstool.config | 25 16 9 0 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-)
2008-08-04All ARM sample now build with gcc-4.3.1! :-)Yann E. MORIN"10-179/+321
Unfortunately (fortunately?), this implies using a uClibc snapshot. /trunk/samples/armeb-unknown-linux-uclibc/uClibc-20080801.config | 243 243 0 0 ++++++++++ /trunk/samples/armeb-unknown-linux-uclibc/crosstool.config | 29 17 12 0 + /trunk/samples/arm-unknown-linux-gnueabi/crosstool.config | 13 8 5 0 + /trunk/samples/arm-unknown-linux-uclibcgnueabi/uClibc-20080801.config | 243 243 0 0 ++++++++++ /trunk/samples/arm-unknown-linux-uclibcgnueabi/crosstool.config | 29 17 12 0 + /trunk/samples/armeb-unknown-linux-gnu/crosstool.config | 13 8 5 0 + /trunk/samples/arm-unknown-linux-uclibc/uClibc-20080801.config | 243 243 0 0 ++++++++++ /trunk/samples/arm-unknown-linux-uclibc/crosstool.config | 29 17 12 0 + /trunk/samples/armeb-unknown-linux-uclibcgnueabi/uClibc-20080801.config | 243 243 0 0 ++++++++++ /trunk/samples/armeb-unknown-linux-uclibcgnueabi/crosstool.config | 29 17 12 0 + 10 files changed, 1056 insertions(+), 58 deletions(-)
2008-07-29Update a new sample to use gcc-4.3.1.Yann E. MORIN"1-6/+12
/trunk/samples/i686-nptl-linux-gnu/crosstool.config | 18 12 6 0 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-)
2008-07-29Update the Alpha sample to use up-to-date components.Yann E. MORIN"1-12/+18
/trunk/samples/alphaev56-unknown-linux-gnu/crosstool.config | 30 18 12 0 +++++++++++-------- 1 file changed, 18 insertions(+), 12 deletions(-)
2008-07-27Update this sample to compress the log file.Yann E. MORIN"1-1/+1
/trunk/samples/x86_64-unknown-linux-gnu/crosstool.config | 2 1 1 0 +- 1 file changed, 1 insertion(+), 1 deletion(-)
2008-07-26Update the PPC sample, add a new softfloat PPC sample, thanks to Thomas JOURDAN.Yann E. MORIN"3-12/+375
/trunk/samples/powerpc-unknown-linux-gnu/crosstool.config | 54 42 12 0 ++ /trunk/samples/powerpc-unknown_nofpu-linux-gnu/crosstool.config | 331 331 0 0 +++++++++++++++ /trunk/samples/powerpc-unknown_nofpu-linux-gnu/reported.by | 2 2 0 0 + 3 files changed, 375 insertions(+), 12 deletions(-)
2008-07-25Another ARM sample to build with gcc-4.3.1.Yann E. MORIN"1-6/+10
/trunk/samples/arm-unknown-linux-gnueabi/crosstool.config | 16 10 6 0 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-)
2008-07-25Two new samples by "Thomas JOURDAN".Yann E. MORIN"4-0/+639
/trunk/samples/x86_64-unknown-linux-gnu/crosstool.config | 334 334 0 0 +++++++++++++++++++++ /trunk/samples/x86_64-unknown-linux-gnu/reported.by | 2 2 0 0 + /trunk/samples/powerpc-unknown-linux-gnu/crosstool.config | 301 301 0 0 +++++++++++++++++++ /trunk/samples/powerpc-unknown-linux-gnu/reported.by | 2 2 0 0 + 4 files changed, 639 insertions(+)
2008-07-25Re-instatethe fortran forntend for this sample.Yann E. MORIN"1-2/+2
/trunk/samples/armeb-unknown-linux-gnu/crosstool.config | 4 2 2 0 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
2008-07-25This sample is the first to build gcc-4.3 for ARM.Yann E. MORIN"1-7/+11
/trunk/samples/armeb-unknown-linux-gnu/crosstool.config | 18 11 7 0 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-)
2008-07-20PowerPC now builds the Fortran frontend.Yann E. MORIN"1-3/+3
/trunk/samples/powerpc-unknown-linux-uclibc/crosstool.config | 6 3 3 0 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
2008-07-20Alpha sample can build the Fortran frontend.Yann E. MORIN"1-3/+3
/trunk/samples/alphaev56-unknown-linux-gnu/crosstool.config | 6 3 3 0 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
2008-07-20Update the last four samples to use linux-2.6.26 headers, and gcc-4.2.4.Yann E. MORIN"4-29/+29
/trunk/samples/ia64-unknown-linux-gnu/crosstool.config | 10 5 5 0 +++++----- /trunk/samples/i686-nptl-linux-gnu/crosstool.config | 16 8 8 0 ++++++++-------- /trunk/samples/powerpc-unknown-linux-uclibc/crosstool.config | 16 8 8 0 ++++++++-------- /trunk/samples/i586-geode-linux-uclibc/crosstool.config | 16 8 8 0 ++++++++-------- 4 files changed, 29 insertions(+), 29 deletions(-)
2008-07-19Updatge all samples to neither use a LAN mirror, nor a proxy (new set of ↵Yann E. MORIN"14-280/+260
options). /trunk/samples/armeb-unknown-linux-uclibc/crosstool.config | 38 18 20 0 ++++++------ /trunk/samples/arm-unknown-linux-gnueabi/crosstool.config | 38 18 20 0 ++++++------ /trunk/samples/ia64-unknown-linux-gnu/crosstool.config | 40 20 20 0 ++++++------ /trunk/samples/x86_64-unknown-linux-uclibc/crosstool.config | 38 18 20 0 ++++++------ /trunk/samples/i686-nptl-linux-gnu/crosstool.config | 40 20 20 0 ++++++------ /trunk/samples/mips-unknown-linux-uclibc/crosstool.config | 38 18 20 0 ++++++------ /trunk/samples/arm-unknown-linux-uclibcgnueabi/crosstool.config | 38 18 20 0 ++++++------ /trunk/samples/armeb-unknown-linux-gnu/crosstool.config | 38 18 20 0 ++++++------ /trunk/samples/powerpc-unknown-linux-uclibc/crosstool.config | 40 20 20 0 ++++++------ /trunk/samples/i586-geode-linux-uclibc/crosstool.config | 40 20 20 0 ++++++------ /trunk/samples/arm-unknown-linux-uclibc/crosstool.config | 38 18 20 0 ++++++------ /trunk/samples/mipsel-unknown-linux-gnu/crosstool.config | 38 18 20 0 ++++++------ /trunk/samples/armeb-unknown-linux-uclibcgnueabi/crosstool.config | 38 18 20 0 ++++++------ /trunk/samples/alphaev56-unknown-linux-gnu/crosstool.config | 38 18 20 0 ++++++------ 14 files changed, 260 insertions(+), 280 deletions(-)
2008-07-19Update all ARM samples to use gcc-4.2.4.Yann E. MORIN"6-24/+30
/trunk/samples/armeb-unknown-linux-uclibc/crosstool.config | 9 5 4 0 +++++---- /trunk/samples/arm-unknown-linux-gnueabi/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/arm-unknown-linux-uclibc/crosstool.config | 9 5 4 0 +++++---- /trunk/samples/armeb-unknown-linux-uclibcgnueabi/crosstool.config | 9 5 4 0 +++++---- 6 files changed, 30 insertions(+), 24 deletions(-)
2008-07-19x86_64 updated.Yann E. MORIN"1-6/+8
/trunk/samples/x86_64-unknown-linux-uclibc/crosstool.config | 14 8 6 0 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-)
2008-07-19Update some samples to use latest kernel headers and gcc-4.2.4 (latest stable?).Yann E. MORIN"3-12/+16
/trunk/samples/mips-unknown-linux-uclibc/crosstool.config | 7 4 3 0 ++++--- /trunk/samples/mipsel-unknown-linux-gnu/crosstool.config | 7 4 3 0 ++++--- /trunk/samples/alphaev56-unknown-linux-gnu/crosstool.config | 14 8 6 0 ++++++++------ 3 files changed, 16 insertions(+), 12 deletions(-)
2008-07-19iMIPS samples also are capable of building a Fortran frontend, now.Yann E. MORIN"2-11/+13
/trunk/samples/mips-unknown-linux-uclibc/crosstool.config | 11 6 5 0 ++++++----- /trunk/samples/mipsel-unknown-linux-gnu/crosstool.config | 13 7 6 0 +++++++------ 2 files changed, 13 insertions(+), 11 deletions(-)
2008-07-18All ARM samples now build the gfortran frontend.Yann E. MORIN"2-10/+12
/trunk/samples/armeb-unknown-linux-uclibc/crosstool.config | 11 6 5 0 ++++++----- /trunk/samples/arm-unknown-linux-uclibc/crosstool.config | 11 6 5 0 ++++++----- 2 files changed, 12 insertions(+), 10 deletions(-)