diff options
author | Henning Heinold <heinold@inf.fu-berlin.de> | 2008-09-25 12:08:32 +0000 |
---|---|---|
committer | Henning Heinold <heinold@inf.fu-berlin.de> | 2008-09-25 12:08:32 +0000 |
commit | ceaf5dc7a03b36eeebd7ce989c4b414b5f706732 (patch) | |
tree | e83ce1c475eb30ad1e92959592f72a82df2ee9b8 /packages/liboil/liboil-0.3.15 | |
parent | 2cac5a4b33a16c8ce06ce3593c53022a6b815993 (diff) |
liboil: fix arm vfp stuff
* the only for vfp is in liboil/arm/math_vfp.c and math_vfp_asm.S
it is only triggered when __VFP_FP__ is defined, which I belief
is set when gcc is called with -mfpu=vfp
* so removing the whole VFP_CLFAGS stuff from configure.ac because
our cpu tune options does this fine for us
* bump PR
Diffstat (limited to 'packages/liboil/liboil-0.3.15')
-rw-r--r-- | packages/liboil/liboil-0.3.15/autotools.patch | 35 |
1 files changed, 5 insertions, 30 deletions
diff --git a/packages/liboil/liboil-0.3.15/autotools.patch b/packages/liboil/liboil-0.3.15/autotools.patch index bbd4cbb250..53501e3991 100644 --- a/packages/liboil/liboil-0.3.15/autotools.patch +++ b/packages/liboil/liboil-0.3.15/autotools.patch @@ -1,8 +1,8 @@ Index: liboil-0.3.15/configure.ac =================================================================== --- liboil-0.3.15.orig/configure.ac 2008-07-01 06:45:53.000000000 +0200 -+++ liboil-0.3.15/configure.ac 2008-09-24 20:37:24.963143501 +0200 -@@ -187,15 +187,33 @@ ++++ liboil-0.3.15/configure.ac 2008-09-25 13:44:18.633758105 +0200 +@@ -187,16 +187,6 @@ true) fi @@ -13,34 +13,9 @@ Index: liboil-0.3.15/configure.ac - #AS_COMPILER_FLAG(["-Wa,-mfloat-abi=softfp"], - # [VFP_CFLAGS="$VFP_CFLAGS -mfloat-abi=softfp"], - # true) -+dnl macro taken from cacao -+dnl check if softfloat should be used -+ -+AC_DEFUN([AC_CHECK_SOFTFLOAT],[ -+AC_MSG_CHECKING(whether softfloat should be used) -+AC_ARG_ENABLE([softfloat], -+ [AS_HELP_STRING(--enable-softfloat,use softfloat [[default=no]])], -+ [case "${enableval}" in -+ yes) -+ ENABLE_SOFTFLOAT=yes -+ ;; -+ *) -+ ENABLE_SOFTFLOAT=no -+ ;; -+ esac], -+ [ENABLE_SOFTFLOAT=no]) -+AC_MSG_RESULT(${ENABLE_SOFTFLOAT}) -+ -+if test x"${ENABLE_SOFTFLOAT}" = "xyes"; then -+ VFP_CFLAGS="$VFP_CFLAGS -mfloat-abi=softfp" -+else -+ VFP_CFLAGS="$VFP_CFLAGS -mfpu=vfp" - fi +-fi -AC_SUBST(VFP_CFLAGS) -+AC_SUBST([VFP_CFLAGS]) -+]) -+ -+AC_CHECK_SOFTFLOAT - +- #AS_COMPILER_FLAG(["-fasm-blocks"], HAVE_ASM_BLOCKS=yes, HAVE_ASM_BLOCKS=no) HAVE_ASM_BLOCKS=no + if test "x$HAVE_ASM_BLOCKS" = "xyes" |