snowleopard / hadrian

Hadrian: a new build system for the Glasgow Haskell Compiler. Now merged into the GHC tree!
https://gitlab.haskell.org/ghc/ghc/tree/master/hadrian
MIT License
208 stars 39 forks source link

unlit: build only in stage 0, copy that binary for later stages (fixes #595) #693

Closed alpmestan closed 5 years ago

alpmestan commented 5 years ago

This seems to cause an error, so it's not ready just yet.

alpmestan commented 5 years ago

So I can just change package == unlit to package == unlit || package == touchy then, no? That should do the trick, right?

snowleopard commented 5 years ago

So I can just change package == unlit to package == unlit || package == touchy then, no? That should do the trick, right?

Yes! Or package `elem` [unlit, touchy].

alpmestan commented 5 years ago

Done.

snowleopard commented 5 years ago

@alpmestan Great! I'll see what CI says and merge.