diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2011-06-26 23:10:49 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-06-26 23:10:49 +0100 |
commit | 690f7ec4cd51cee854cb2bd57f53cbb7d7167038 (patch) | |
tree | 0a1b075ad39d77f0778cb1e4c083e773d7cdcc2c /aclocal.m4 | |
parent | 991f141989940c897cb2fc3dba7b5b49342d402a (diff) | |
download | haskell-690f7ec4cd51cee854cb2bd57f53cbb7d7167038.tar.gz |
The patch fixes recognition of 'softfloat' targets as valid:
ghc $ ./configure --build=armv5tel-softfloat-linux-gnueabi \
--host=armv5tel-softfloat-linux-gnueabi \
--target=armv5tel-softfloat-linux-gnueabi
checking for gfind... no
checking for find... /usr/bin/find
checking for sort... /usr/bin/sort
checking for GHC version date... inferred 7.1.20110626
checking for ghc... /usr/bin/ghc
checking version of ghc... 7.0.4
checking build system type... armv5tel-softfloat-linux-gnueabi
checking host system type... armv5tel-softfloat-linux-gnueabi
checking target system type... armv5tel-softfloat-linux-gnueabi
Unknown vendor softfloat
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'aclocal.m4')
-rw-r--r-- | aclocal.m4 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/aclocal.m4 b/aclocal.m4 index d6b97fe52b..f8dafaca5f 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1523,6 +1523,9 @@ AC_DEFUN([GHC_CONVERT_VENDOR],[ pc|gentoo) # like i686-pc-linux-gnu and i686-gentoo-freebsd8 $2="unknown" ;; + softfloat) # like armv5tel-softfloat-linux-gnueabi + $2="unknown" + ;; *) #pass thru by default $2="$1" |