[commit: ghc] master: iOS: shared objects have .dylib extension. (23aca13)
git at git.haskell.org
git at git.haskell.org
Tue Feb 28 20:50:51 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/23aca13255729a4649a800bbc36dc61e0816a05e/ghc
>---------------------------------------------------------------
commit 23aca13255729a4649a800bbc36dc61e0816a05e
Author: Moritz Angermann <moritz.angermann at gmail.com>
Date: Tue Feb 28 11:07:45 2017 -0500
iOS: shared objects have .dylib extension.
Reviewers: austin, rwbarton, bgamari
Reviewed By: rwbarton
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D3241
>---------------------------------------------------------------
23aca13255729a4649a800bbc36dc61e0816a05e
compiler/main/HscTypes.hs | 1 +
1 file changed, 1 insertion(+)
diff --git a/compiler/main/HscTypes.hs b/compiler/main/HscTypes.hs
index d729dcc..6473512 100644
--- a/compiler/main/HscTypes.hs
+++ b/compiler/main/HscTypes.hs
@@ -2548,6 +2548,7 @@ soExt :: Platform -> FilePath
soExt platform
= case platformOS platform of
OSDarwin -> "dylib"
+ OSiOS -> "dylib"
OSMinGW32 -> "dll"
_ -> "so"
More information about the ghc-commits
mailing list