From e55eccddd3ec4171b57a646386e7ef37d8066b00 Mon Sep 17 00:00:00 2001 From: Christian Wiese Date: Wed, 27 Jun 2012 01:14:38 +0200 Subject: [PATCH] gcc: improved to inject --with-float depending on -mfloat-abi --- base/gcc/gcc.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/base/gcc/gcc.conf b/base/gcc/gcc.conf index 6ae19dbd4..1dfffd56a 100644 --- a/base/gcc/gcc.conf +++ b/base/gcc/gcc.conf @@ -22,6 +22,7 @@ if [ "${ver:0:3}" = "4.4" ]; then for x in $GCC_WRAPPER_INSERT $GCC_WRAPPER_APPEND; do case "$x" in -mabi=*|-march=*|-mcpu=*|-mtune=*|-mfpu=*) var_append confopt " " "${x/-m/--with-}" ;; + -mfloat-abi=*) var_append confopt " " "${x/-mfloat-abi/--with-float}" ;; esac done fi