summaryrefslogtreecommitdiffstats
path: root/toolchain/Config.in
Commit message (Collapse)AuthorAgeFilesLines
...
* pxcab: Replace TARGET_pxcab with feature powerpc64Geoff Levand2009-08-181-3/+3
| | | | | | Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com> SVN-Revision: 17307
* powerpc: Create a powerpc64 config featureGeoff Levand2009-08-181-3/+3
| | | | | | | | | | | The config symbol TARGET_ps3 is used in the build files where special handling for the 64 bit PowerPC processors is needed. Introduce a new config feature powerpc64, and replace the use of TARGET_ps3 with powerpc64. Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com> SVN-Revision: 17306
* add the insight gdb frontend (#4701)Florian Fainelli2009-07-261-0/+8
| | | | SVN-Revision: 17019
* This patch adds a target for the IBM PowerXCell Accelerator Board. (aka ↵Florian Fainelli2009-07-161-3/+3
| | | | | | | | | | | | | | | | mvXCell-8i from MatrixVision or GigaAccel 180 from Fixstars) http://us.fixstars.com/products/gigaaccel/ This build will create zImage suitable for TFTP boot image. * v2 - add axonram device driver - switch to 2.6.30.1 Signed-off-by: Akinobu Mita <mita@fixstars.com> SVN-Revision: 16860
* add a config option to select the binary stripping method to use (between ↵Nicolas Thill2009-07-071-2/+0
| | | | | | none, strip & sstrip) SVN-Revision: 16728
* enable software floating point emulation by default for mips and mipsel targetsFlorian Fainelli2009-06-281-1/+1
| | | | SVN-Revision: 16604
* Added defaults for extra target architecture for ps3Hamish Guthrie2009-03-161-0/+3
| | | | SVN-Revision: 14897
* move cflags default setting to target makefilesFelix Fietkau2009-03-141-10/+1
| | | | SVN-Revision: 14866
* use different optimizations for x86 & x86_64 on umlNicolas Thill2009-01-111-1/+3
| | | | SVN-Revision: 13984
* fix wrong TARGET_SUFFIX when building a toolchain with uClibc & EABI ↵Nicolas Thill2009-01-101-1/+1
| | | | | | (closes: #4437) SVN-Revision: 13962
* add support for alternative C libraries (currently only glibc/eglibc) other ↵Nicolas Thill2009-01-081-1/+52
| | | | | | (related) changes: - kernel headers are now installed using "make headers_install" on 2.6 - target names now contain an openwrt "vendor" tag (e.g. mips-openwrt-linux-gnu) - build directory names now contain gcc/libc name/version - default cpu for x86 is now i486 (required to build glibc/eglibc) SVN-Revision: 13931
* storm is ARMv4, not ARMv4T (thx, SeG)Felix Fietkau2008-07-311-1/+1
| | | | SVN-Revision: 12046
* surprise :pGabor Juhos2008-07-211-0/+1
| | | | SVN-Revision: 11894
* add preliminary Marvell Orion supportImre Kaloz2008-06-041-1/+1
| | | | SVN-Revision: 11352
* soft-float shouldn't be used on targets with FPUImre Kaloz2008-06-031-1/+1
| | | | SVN-Revision: 11338
* add preliminary support for Storm SL3512 based devices, not ready yetImre Kaloz2008-04-271-0/+1
| | | | SVN-Revision: 10956
* PXA has Xscale core as well, so optimize the same way as we do on IXP/IOPImre Kaloz2008-04-261-1/+1
| | | | SVN-Revision: 10948
* do target dependent optimizationsImre Kaloz2008-04-141-1/+1
| | | | SVN-Revision: 10834
* provide a cleaner way to specify a biarch toolchain buildJeremy Kerr2008-04-121-0/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, to build a biarch toolchain, we need to explicitly give options to the binutils and gcc configure commands: CONFIG_EXTRA_BINUTILS_CONFIG_OPTIONS="--enable-targets=powerpc64-linux-uclibc" CONFIG_EXTRA_GCC_CONFIG_OPTIONS="--enable-biarch --enable-targets=powerpc64-linux-uclibc" This change replaces the command line options with an 'extra arch' configure option: CONFIG_EXTRA_TARGET_ARCH=y CONFIG_EXTRA_TARGET_ARCH_NAME="powerpc64" And a way to invoke this extra arch on the compiler command-line: CONFIG_EXTRA_TARGET_ARCH_OPTS="-m64" In this case, this results in an extra compiler: 'powerpc64-linux-uclibc-gcc', which invokes 'powerpc-linux-uclibc-gcc -m64' This is a more standard way of building biarch toolchains, and allows the packages to not have to care about how to invoke the 64-bit compiler. Signed-off-by: Jeremy Kerr <jk@ozlabs.org> SVN-Revision: 10802
* revert ARM to oabi by default, add some eabi patches for fixing up the ↵Felix Fietkau2008-02-141-1/+1
| | | | | | toolchain, which unfortunately break eabi userland, but are IMHO a necessary basis for further eabi fixes SVN-Revision: 10458
* add uClibc version 0.9.28.2, 0.9.28.3 and snapshots for development purpose ↵Ralph Hempel2008-01-271-0/+2
| | | | | | (and already deployed evaluation boards) the version 0.9.29 is still the default version SVN-Revision: 10282
* uClibc: restore support of shadow passwords, but make it configurableGabor Juhos2008-01-261-0/+7
| | | | SVN-Revision: 10276
* unconditionally enable c99 math support in uclibc - many packages need itFelix Fietkau2007-12-291-7/+0
| | | | SVN-Revision: 10024
* use softfloat and GNU EABI on the IOP, tooImre Kaloz2007-12-281-1/+1
| | | | SVN-Revision: 10015
* move ARM to the GNU EABIImre Kaloz2007-12-281-1/+1
| | | | SVN-Revision: 10013
* use soft float by default on arm and powerpcImre Kaloz2007-12-281-1/+1
| | | | SVN-Revision: 10011
* softfloat should be available on armeb, but not on mips until the kernel fpu ↵Imre Kaloz2007-12-261-1/+1
| | | | | | emulation can be disabled SVN-Revision: 9930
* Update CFLAGS pickup to match the target variable name, allow i686 to be ↵Florian Fainelli2007-10-261-2/+3
| | | | | | optimised SVN-Revision: 9451
* fix cflags for xscale (#2026)Felix Fietkau2007-07-111-1/+1
| | | | SVN-Revision: 7910
* Use -Os for rdc and -O2 for the x86 targetFlorian Fainelli2007-07-011-1/+2
| | | | SVN-Revision: 7831
* add initial support for the crisarchitecture used on foxboards to openwrtJohn Crispin2007-06-021-1/+0
| | | | SVN-Revision: 7439
* switch to -O2 on x86 for performance reasonsFelix Fietkau2006-12-051-1/+1
| | | | SVN-Revision: 5694
* add a configuration option to enable full c99 math in libm. this is needed ↵Tim Yardley2006-10-261-1/+8
| | | | | | for functions like floorf (which happens to be used in postgresql server as an example) SVN-Revision: 5302
* finally move buildroot-ng to trunkFelix Fietkau2016-03-201-0/+54