-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
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
Mostly static binaries #378
Comments
I will try and get a patch going for this, because simply uncommenting the
Fully-static however seems like it will be much more problematic -- adding the traditional
|
I get an error when I try to update to
8.2.2 works fine. Will ping you on the PR. Update: whoops, should have been on the PR. |
We already support building static libraries. In fact we already know how to static binaries as well: when profiling is enabled we use static linking because profiling and dynamic linking don't mix. This ticket is about exposing to the user the functionality, so that users can force static linking.
This ticket is about static linking in the sense of GHC: in Bazel terms, this corresponds to "mostly static" linking. That is, Haskell code is statically linked, but system libraries (like libgmp, glibc, libpthread etc) are still dynamically linked.
cc @lunaris
The text was updated successfully, but these errors were encountered: