-
Notifications
You must be signed in to change notification settings - Fork 81
Use external interpreter when compiling with profiling #338
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
Comments
I tried to mess with this one today and discovered the following:
|
Could we use |
An update: while working on "arbitrary file layouts" I noticed that |
I wonder if this issue can be closed, apparently rules_haskell is already using |
Currently (as of #332) to compile modules that use TH with profiling we also compile them without profiling because RTS that GHC is linked with is without profiling and so it needs object files without profiling to run TH. This is not very nice and probably less efficient than using the newer
-fexternal-interpreter
that was introduced in GHC 8.0 to solve exactly that problem.See also:
The text was updated successfully, but these errors were encountered: