diff options
author | Koen Kooi <koen@openembedded.org> | 2006-06-20 00:42:28 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-06-20 00:42:28 +0000 |
commit | 99f4e370a0c38860880461cca63969e01d7d64fc (patch) | |
tree | e65a39d076788a572f6aa9f3662dea220324f3c1 /conf/distro | |
parent | d8aaeca2ad195be3be0bde2ffccf371184d00a70 (diff) |
angstrom.conf: add example for building uclibc enables stuff
Diffstat (limited to 'conf/distro')
-rw-r--r-- | conf/distro/angstrom.conf | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/conf/distro/angstrom.conf b/conf/distro/angstrom.conf index 100017410d..d30fcd3cca 100644 --- a/conf/distro/angstrom.conf +++ b/conf/distro/angstrom.conf @@ -22,8 +22,11 @@ ENABLE_BINARY_LOCALE_GENERATION ?= "" #Use the ARM EABI when building for an ARM cpu. We can't use overrides #here because this breaks all places where ":=" is used. +#if you want to build using uclibc, specify "-uclibcgnueabi" TARGET_VENDOR = "${@['','-angstrom'][bb.data.getVar('TARGET_ARCH',d,1)=='arm']}" TARGET_OS = "linux${@['','-gnueabi'][bb.data.getVar('TARGET_ARCH',d,1)=='arm']}" +#uclibc (needs gcc 4.1.1 or newer) +#TARGET_OS = "linux${@['','-uclibcgnueabi'][bb.data.getVar('TARGET_ARCH',d,1)=='arm']}" #mess with compiler flags to use -Os instead of -O2 #Please see http://free-electrons.com/doc/embedded_linux_optimizations/img47.html for some more info |