TODO
author Johannes Stezenbach <js@sig21.net>
Thu Jul 29 19:47:16 2010 +0200 (2010-07-29)
changeset 2045 fdaa6c7f6dea
parent 1512 439a6b292917
child 2564 5d4e91c0343e
permissions -rw-r--r--
cc/gcc: add option to compile against static libstdc++, for gcc-4.4 and newer

Idea and know-how taken from CodeSourcery build script.

Normal build:
$ ldd arm-unknown-linux-uclibcgnueabi-gcc
linux-gate.so.1 => (0xb77f3000)
libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0xb76e8000)
libc.so.6 => /lib/i686/cmov/libc.so.6 (0xb75a1000)
libm.so.6 => /lib/i686/cmov/libm.so.6 (0xb757a000)
/lib/ld-linux.so.2 (0xb77f4000)
libgcc_s.so.1 => /lib/libgcc_s.so.1 (0xb755c000)

CC_STATIC_LIBSTDCXX=y:
$ ldd arm-unknown-linux-uclibcgnueabi-gcc
linux-gate.so.1 => (0xb7843000)
libc.so.6 => /lib/i686/cmov/libc.so.6 (0xb76e6000)
/lib/ld-linux.so.2 (0xb7844000)

I made CC_STATIC_LIBSTDCXX default=y since I think
it is always desirable.

Signed-off-by: Johannes Stezenbach <js@sig21.net>
     1 This is a somewhat ordered TODO list:
     2 
     3 Recuring tasks:
     4 
     5 - update versions for every tools...
     6 
     7 - update and/or upgrade all samples
     8 
     9 
    10 Non-recurring tasks:
    11 
    12 - update newlib (for enhanced bare metal)
    13   - confirm existing implementation on targets other than AVR32
    14   - try to make it generic, will help for uClibc++
    15 
    16 - multilib
    17 
    18 - Cygwin target (needs newlib)
    19   - so we can build toolchains that generate code for Windows/Cygwin
    20 
    21 - Cygwin host
    22   - so we can build toolchains that run natively under Windows/Cygwin
    23 
    24 - mingw32 target
    25   - so we can build toolchains that generate code for Windows/Win32
    26 
    27 - mingw32 host
    28   - so we can build toolchains that run natively under Windows/Win32
    29     (without requiring Cygwin)
    30 
    31 - uClibc++
    32   - see newlib, above
    33 
    34 - uClinux
    35   - check whether we can use newlib under uClinux (?)