diff options
author | Austin Seipp <aseipp@pobox.com> | 2013-08-23 21:49:50 -0500 |
---|---|---|
committer | Austin Seipp <aseipp@pobox.com> | 2013-08-24 05:03:15 -0500 |
commit | b7130bfd1a042753a177c7212aee8223846f7992 (patch) | |
tree | f895f08bd2e9055d527eddfe86d91233b554367b /aclocal.m4 | |
parent | 6a02f280e074278acceb6e9331bb00dccfe02f08 (diff) | |
download | haskell-b7130bfd1a042753a177c7212aee8223846f7992.tar.gz |
Add support for iOS simulator (issue #8152).
The iOS simulator is essentially an iOS target but for an x86 machine
instead. It doesn't support the native code generator either, though.
Authored-by: Stephen Blackheath <...@blacksapphire.com>
Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'aclocal.m4')
-rw-r--r-- | aclocal.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/aclocal.m4 b/aclocal.m4 index d604cc08e0..3c615b6fc1 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -25,7 +25,7 @@ AC_DEFUN([GHC_SELECT_FILE_EXTENSIONS], x86_64-apple-darwin) $3='.dylib' ;; - arm-apple-darwin10) + arm-apple-darwin10|i386-apple-darwin11) $2='.a' $3='.dylib' ;; @@ -1918,7 +1918,7 @@ AC_DEFUN([GHC_CONVERT_VENDOR],[ # converts os from gnu to ghc naming, and assigns the result to $target_var AC_DEFUN([GHC_CONVERT_OS],[ case "$1-$2" in - darwin10-arm) + darwin10-arm|darwin11-i386) $3="ios" ;; *) |