Makefile improvements, +setup-tup, +test-info #909
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR includes a number of improvements primarily to the Makefile:
+to propagate-jNflags frommake testtomisc/test.tup.duneto "install" thebootpackage when building viatup, and all the hacks that entails.The last point probably bears more explanation, since what's in the setup right now is very hacky.
dunewraps libraries by default, i.e., when we write a moduleIntrinsicsit's available asBoot.Intrinsics. This is a good idea, and we depend on it in our generated code. For some reason this wrapping seems to happen duringdune install, notdune build, which means we need to usedune installrather thanocamlfind install(or at least I haven't figured out how to make the same wrapping happen with the latter). Unfortunatelydunedoes not play nice at all withtup, so we have to do a bunch of things to accommodate it, which is the hacky stuff.