diff options
author | Chris Larson <clarson@kergoth.com> | 2004-07-24 19:55:33 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-07-24 19:55:33 +0000 |
commit | abe619ce54bd4d10a29f13da1bc890345a74087d (patch) | |
tree | 3c2d8dc6e3a5881b3daaa3dd72277e022dc861fe /glibc/glibc_2.3.2.oe | |
parent | 3c1ef4c761fc9d2360a1a65833acacc67024856e (diff) |
Merge openembedded@openembedded.bkbits.net:packages
into linux.local:/home/kergoth/code/packages
2004/07/24 15:55:24-04:00 local!kergoth
Add TARGET_FPU option, to allow us to more easily enable soft float
operation in our toolchains (set it to 'soft').
BKrev: 4102beb5HkyvZVLBWeqFY5dHqDaRdQ
Diffstat (limited to 'glibc/glibc_2.3.2.oe')
-rw-r--r-- | glibc/glibc_2.3.2.oe | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/glibc/glibc_2.3.2.oe b/glibc/glibc_2.3.2.oe index ca40a7b480..c743e64d5f 100644 --- a/glibc/glibc_2.3.2.oe +++ b/glibc/glibc_2.3.2.oe @@ -110,7 +110,13 @@ EXTRA_OECONF = "--without-tls --without-__thread --enable-kernel=${OLDEST_KERNEL --without-cvs --disable-profile --disable-debug --without-gd \ --enable-clocale=gnu \ --enable-add-ons=linuxthreads --with-headers=${WORKDIR}/linux/include" -EXTRA_OECONF_append_ramses = " --without-fp" + +EXTRA_OECONF += "${@get_fpu_setting(oe, d)}" + +def get_fpu_setting(oe, d): + if oe.data.getVar('TARGET_FPU', d, 1) in [ 'soft' ]: + return "--without-fp" + return "" glibcbuild_do_unpack () { mv "${WORKDIR}/linuxthreads" "${WORKDIR}/linuxthreads_db" "${S}/" |