You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While trying to convince GHC to set -this-unit-id to I learned that passing -this-unit-id multiple times to GHC will result in GHC using the first occurrence in the passed arguments, rather than the last. Thus any ghc-options: set in the cabal file, or even in the cabal.project file, which will be passed later do not have any effect.
ghc -this-unit-id X -this-unit-id Y -this-unit-id Z
will result in GHC using X.
The text was updated successfully, but these errors were encountered:
While trying to convince GHC to set
-this-unit-id
to I learned that passing-this-unit-id
multiple times to GHC will result in GHC using the first occurrence in the passed arguments, rather than the last. Thus anyghc-options:
set in the cabal file, or even in the cabal.project file, which will be passed later do not have any effect.will result in GHC using
X
.The text was updated successfully, but these errors were encountered: