diff options
| author | Moritz Angermann <moritz.angermann@gmail.com> | 2017-02-28 11:07:45 -0500 | 
|---|---|---|
| committer | Ben Gamari <ben@smart-cactus.org> | 2017-02-28 15:43:38 -0500 | 
| commit | 23aca13255729a4649a800bbc36dc61e0816a05e (patch) | |
| tree | 0d3faea6d352091c52a1368a108ea2b4b10e45e7 | |
| parent | 65c41cc58d341672f6e55b40488729c8f7b6fbf2 (diff) | |
| download | haskell-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.hs | 1 | 
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"  | 
