We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
-lssp
Given the following Haskell program:
module Main where main :: IO () main = putStrLn "Hi"
Running ghc --make Hello.hs fails to link due to missing symbols from libssp.so. It appears to be sufficient to change the bundled ghc script from:
ghc --make Hello.hs
#!/bin/sh exedir="/opt/local/lib/ghc-7.6.3" exeprog="ghc-stage2" executablename="$exedir/$exeprog" datadir="/opt/local/share" bindir="/opt/local/bin" topdir="/opt/local/lib/ghc-7.6.3" executablename="$exedir/ghc" exec "$executablename" -B"$topdir" ${1+"$@"}
to
#!/bin/sh exedir="/opt/local/lib/ghc-7.6.3" exeprog="ghc-stage2" executablename="$exedir/$exeprog" datadir="/opt/local/share" bindir="/opt/local/bin" topdir="/opt/local/lib/ghc-7.6.3" executablename="$exedir/ghc" exec "$executablename" -B"$topdir" ${1+"$@"} -lssp
However, I'm totally new to the smartos/illumos/etc ecosystem, so I'm not quite sure how to go about submitting this change upstream.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given the following Haskell program:
Running
ghc --make Hello.hs
fails to link due to missing symbols from libssp.so. It appears to be sufficient to change the bundled ghc script from:to
However, I'm totally new to the smartos/illumos/etc ecosystem, so I'm not quite sure how to go about submitting this change upstream.
The text was updated successfully, but these errors were encountered: