-
Notifications
You must be signed in to change notification settings - Fork 39
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
Stack build #206
Comments
The issue upstream has been resolved, so a more efficient builder can now be implemented. |
It seems to me that "Make project" and "Make module ..." works the same way: targets are computed, and the dependencies between them, then each each module/target will be built. The way I see it we have two options to avoid calling
Is there something I'm missing? :) |
|
Yeah, I think just doing |
Currently, the stack builder can be a little inefficient. In order to get absolute paths to the source locations of errors, we must run
stack build .
in each package directory, which is slower than just runningstack build
at the project root.Note that there is an open issue upstream to get absolute paths when using
stack build
- commercialhaskell/stack#1348The text was updated successfully, but these errors were encountered: