From ec93451443fe6d52305241b49265265ba434547c Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN\"" Date: Sat, 4 Jan 2014 16:19:18 +0100 Subject: libc/uClibc: add option to enable fenv Support for fenv.h is a little bit more tricky that enabling it only for x86-32 is not right. Add an option for the user to choose whther to install fenv.h or not. Signed-off-by: "Yann E. MORIN" --- scripts/build/libc/uClibc.sh | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'scripts/build/libc') diff --git a/scripts/build/libc/uClibc.sh b/scripts/build/libc/uClibc.sh index 87fd3f62..f0522abd 100644 --- a/scripts/build/libc/uClibc.sh +++ b/scripts/build/libc/uClibc.sh @@ -315,13 +315,6 @@ mungeuClibcConfig() { ;; esac ;; - x86) - if [ "${CT_ARCH_BITNESS}" = "32" ]; then - cat <<-ENDSED - s/.*(UCLIBC_HAS_FENV).*/\\1=y/ - ENDSED - fi - ;; esac # Accomodate for old and new uClibc versions, where the @@ -374,6 +367,11 @@ mungeuClibcConfig() { ENDSED ;; esac + if [ "${CT_LIBC_UCLIBC_FENV}" = "y" ]; then + cat <<-ENDSED + s/.*(UCLIBC_HAS_FENV).*/\\1=y/ + ENDSED + fi # We always want ctor/dtor cat <<-ENDSED -- cgit v1.2.3