-
Notifications
You must be signed in to change notification settings - Fork 1
Ci dynamic matrix and rename #45
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
base: stable-ghc-9.14
Are you sure you want to change the base?
Changes from all commits
fea2f26
b8e35e8
383c53e
7a98c05
e64f262
a062e37
9e2060c
279dfa2
59545d4
37e2399
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1323,6 +1323,11 @@ dynamic_flags_deps = [ | |
| (NoArg (setGeneralFlag Opt_NoHsMain)) | ||
| , make_ord_flag defGhcFlag "no-rts" | ||
| (NoArg (setGeneralFlag Opt_NoRts)) | ||
| -- Prevent ghc-internal from being auto-injected when building RTS sublibraries. | ||
| -- When building rts sublibaries with GHC, we may try to load ghc-internal | ||
| -- due to auto-injection. This flag, like -no-rts, prevents that. | ||
| , make_ord_flag defGhcFlag "no-ghc-internal" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is this needed now?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We have the following dependeny as visible to cabal: however, ghc will try to insert: If we try to build the rts-sublib with ghc, we can end up trying to load ghc-internal, due to auto-injection of libraries. Maybe a better solution is to add a flag to outright disable ghc's auto population of libs, instead of having separate ones for each lib 😅 |
||
| (NoArg (setGeneralFlag Opt_NoGhcInternal)) | ||
| , make_ord_flag defGhcFlag "fno-state-hack" | ||
| (NoArg (setGeneralFlag Opt_G_NoStateHack)) | ||
| , make_ord_flag defGhcFlag "fno-opt-coercion" | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.