We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37d0568 commit e391ba0Copy full SHA for e391ba0
clang/tools/clang-nvlink-wrapper/ClangNVLinkWrapper.cpp
@@ -294,7 +294,8 @@ struct Symbol {
294
295
Expected<StringRef> runPTXAs(StringRef File, const ArgList &Args) {
296
std::string CudaPath = Args.getLastArgValue(OPT_cuda_path_EQ).str();
297
- Expected<std::string> PTXAsPath = Args.getLastArgValue(OPT_ptxas_path);
+ Expected<std::string> PTXAsPath =
298
+ Args.getLastArgValue(OPT_ptxas_path_EQ).str();
299
if (PTXAsPath->empty())
300
PTXAsPath = findProgram("ptxas", {CudaPath + "/bin"});
301
if (!PTXAsPath)
0 commit comments