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
I found it is not trivial to setup a usable LLVM development environment.
I hope something like the following should work:
environment.systemPackages = with pkgs; [ llvmPackages_latest.clangUseLLVM llvmPackages_latest.llvm llvmPackages_latest.openmp llvmPackages_latest.lld llvmPackages_latest.bintools llvmPackages_latest.libcxx llvmPackages_latest.libcxxabi llvmPackages_latest.compiler-rt llvmPackages_latest.libunwind ];
But this does not give the dev headers like:
/nix/store/mg7dmdj9nbijkys9ink0qi6gl5cpshk6-openmp-14.0.6-dev
Only when I enter the nix shell would the *-dev being populated.
nix shell
*-dev
How to correctly setup the development environment?
The text was updated successfully, but these errors were encountered:
I think we have something that comes close to what you want in our rules_ll flake.
See #213144 and #214524.
Sorry, something went wrong.
No branches or pull requests
Problem
I found it is not trivial to setup a usable LLVM development environment.
I hope something like the following should work:
But this does not give the dev headers like:
Only when I enter the
nix shell
would the*-dev
being populated.How to correctly setup the development environment?
The text was updated successfully, but these errors were encountered: