We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The attempt to have all auto-generated code in place for Dredd, as noted in README -
cmake --build "${BUILD_DIR}" --target LLVMCore
doesn’t generate llvm/Frontend/OpenMP/OMP.h.inc, and dredd failed to mutate llvm/lib/Transforms/IPO/OpenMPOpt.cpp as a result.
llvm/Frontend/OpenMP/OMP.h.inc
llvm/lib/Transforms/IPO/OpenMPOpt.cpp
Instead, running
cmake --build "${BUILD_DIR}" --target all
fix this issue, but this requires a long build time.
We should find a way to filter out the necessary targets while still ensure all auto-generated code is in place.
The text was updated successfully, but these errors were encountered:
Thanks. In the worst case, I think it's OK to require building with --target all, as this is a one-off thing.
--target all
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The attempt to have all auto-generated code in place for Dredd, as noted in README -
doesn’t generate
llvm/Frontend/OpenMP/OMP.h.inc
, and dredd failed to mutatellvm/lib/Transforms/IPO/OpenMPOpt.cpp
as a result.Instead, running
fix this issue, but this requires a long build time.
We should find a way to filter out the necessary targets while still ensure all auto-generated code is in place.
The text was updated successfully, but these errors were encountered: