diff options
author | Karel Gardas <karel.gardas@centrum.cz> | 2012-04-25 09:04:50 +0200 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2012-04-27 11:13:06 +0100 |
commit | 3144f85661da176e3d80f28d652b42245becde09 (patch) | |
tree | f10ab746a7cf379e134960ca7daaa2c14643a46e /aclocal.m4 | |
parent | 18c2a2f71e38fad5e677b8f448f6135e5a691868 (diff) | |
download | haskell-3144f85661da176e3d80f28d652b42245becde09.tar.gz |
add support for ARM hard-float ABI (fixes #5914)
This patch enhances Platform's ArchARM to include ARM ABI value. It also
tweaks configure machinery to detect hard-float ABI and to set it wherever
needed. Finally when hard-float ABI is in use, pass appropriate compiler
option to the LLVM's llc. Fixes #5914.
Diffstat (limited to 'aclocal.m4')
-rw-r--r-- | aclocal.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aclocal.m4 b/aclocal.m4 index 5652185b5e..c196bdf026 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -171,7 +171,7 @@ AC_DEFUN([FPTOOLS_SET_HASKELL_PLATFORM_VARS], ;; arm) GET_ARM_ISA() - test -z "[$]2" || eval "[$]2=\"ArchARM {armISA = \$ARM_ISA, armISAExt = \$ARM_ISA_EXT}\"" + test -z "[$]2" || eval "[$]2=\"ArchARM {armISA = \$ARM_ISA, armISAExt = \$ARM_ISA_EXT, armABI = \$ARM_ABI}\"" ;; alpha|mips|mipseb|mipsel|hppa|hppa1_1|ia64|m68k|rs6000|s390|s390x|sparc64|vax) test -z "[$]2" || eval "[$]2=ArchUnknown" |