summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoritz Angermann <moritz.angermann@gmail.com>2017-02-28 11:07:45 -0500
committerBen Gamari <ben@smart-cactus.org>2017-02-28 15:43:38 -0500
commit23aca13255729a4649a800bbc36dc61e0816a05e (patch)
tree0d3faea6d352091c52a1368a108ea2b4b10e45e7
parent65c41cc58d341672f6e55b40488729c8f7b6fbf2 (diff)
downloadhaskell-23aca13255729a4649a800bbc36dc61e0816a05e.tar.gz
iOS: shared objects have .dylib extension.
Reviewers: austin, rwbarton, bgamari Reviewed By: rwbarton Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D3241
-rw-r--r--compiler/main/HscTypes.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/main/HscTypes.hs b/compiler/main/HscTypes.hs
index d729dcc002..6473512411 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"