diff options
author | Austin Seipp <aseipp@pobox.com> | 2013-09-04 17:35:53 -0500 |
---|---|---|
committer | Austin Seipp <aseipp@pobox.com> | 2013-09-04 17:35:55 -0500 |
commit | 0451d85d58363f8ce7ce552c19a00f9d535e6fed (patch) | |
tree | 006103fdf08ca980c03ca8a0fe432e3dd8c12166 /compiler/main/SysTools.lhs | |
parent | eb304bd9a8904c60febe3bf5d1768eebab7d05f2 (diff) | |
download | haskell-0451d85d58363f8ce7ce552c19a00f9d535e6fed.tar.gz |
Fix annoying iOS linker warnings (#8208)
Authored-by: Luke Iannini <lukexi@me.com>
Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'compiler/main/SysTools.lhs')
-rw-r--r-- | compiler/main/SysTools.lhs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/main/SysTools.lhs b/compiler/main/SysTools.lhs index 6fe29a99c4..78255b74b8 100644 --- a/compiler/main/SysTools.lhs +++ b/compiler/main/SysTools.lhs @@ -681,6 +681,9 @@ getLinkerInfo' dflags = do -- that doesn't support --version. We can just assume that's -- what we're using. return $ DarwinLD [] + OSiOS -> + -- Ditto for iOS + return $ DarwinLD [] OSMinGW32 -> -- GHC doesn't support anything but GNU ld on Windows anyway. -- Process creation is also fairly expensive on win32, so |