Skip to content
Snippets Groups Projects
Commit 8af39a5f authored by tibbe's avatar tibbe
Browse files

Don't use --strip-unneeded on Solaris

parent a04d4930
No related branches found
No related tags found
No related merge requests found
......@@ -44,9 +44,11 @@ stripExe verbosity (Platform _arch os) conf path =
stripLib :: Verbosity -> Platform -> ProgramConfiguration -> FilePath -> IO ()
stripLib verbosity (Platform _arch os) conf path = do
case os of
OSX -> -- '--strip-unneeded' is not supported on OS X or iOS. See #1630.
OSX -> -- '--strip-unneeded' is not supported on OS X, iOS or
-- Solaris. See #1630.
return ()
IOS -> return ()
Solaris -> return ()
_ -> runStrip verbosity conf path args
where
args = ["--strip-unneeded"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment