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 env vars CC and CXX can be set to point to C and c++ compilers respectively, I'd like to be able to set the nvcc executable in a similar way.
CC
CXX
nvcc
CMake uses CUDACXX, which seems reasonable enough and would work for my usecase. I currently just modify PATH.
CUDACXX
PATH
Somthing analogous to CFLAGS and CXXFLAGS for Cuda would also be nice for completions sake, but I have not found a need for it.
CFLAGS
CXXFLAGS
I could probably implement and document this myself if this feature is in scope for the project.
The text was updated successfully, but these errors were encountered:
I will accept a PR to add this, the env is documented in src/lib.rs
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The env vars
CC
andCXX
can be set to point to C and c++ compilers respectively, I'd like to be able to set thenvcc
executable in a similar way.CMake uses
CUDACXX
, which seems reasonable enough and would work for my usecase. I currently just modifyPATH
.Somthing analogous to
CFLAGS
andCXXFLAGS
for Cuda would also be nice for completions sake, but I have not found a need for it.I could probably implement and document this myself if this feature is in scope for the project.
The text was updated successfully, but these errors were encountered: