mojca created this revision. mojca added a reviewer: carlosgalvezp. mojca added a project: clang. Herald added subscribers: usaxena95, kadircet, yaxunl. mojca requested review of this revision. Herald added subscribers: cfe-commits, ilya-biryukov.
I've been trying to address the following issue in `clangd` for Visual Studio Code trying to access CUDA: https://github.com/clangd/clangd/issues/793 This patch alone is not yet sufficient for a fully functional clangd, but it gets rid of the error message saying Cannot find CUDA installation. Provide its path via --cuda-path, or pass -nocudainc to build without CUDA includes. in case clangd and the code is located on the `C:` drive. In my case I had both `clangd` (which I needed for debugging purposes) and the source code on `D:`. At this point: c++ Candidates.emplace_back(D.SysRoot + "/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v" + Ver); the `D.SysRoot` seems to be empty. Then, during the call to c++ if (InstallPath.empty() || !FS.exists(InstallPath)) after `sys::fs::make_absolute(WD->Resolved, Storage);` (in `VirtualFileSystem.cpp`) the `Storage` expands to `D:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.4` which isn't found either. Repository: rG LLVM Github Monorepo https://reviews.llvm.org/D114326 Files: clang/lib/Driver/ToolChains/Cuda.cpp Index: clang/lib/Driver/ToolChains/Cuda.cpp =================================================================== --- clang/lib/Driver/ToolChains/Cuda.cpp +++ clang/lib/Driver/ToolChains/Cuda.cpp @@ -127,7 +127,9 @@ SmallVector<Candidate, 4> Candidates; // In decreasing order so we prefer newer versions to older versions. - std::initializer_list<const char *> Versions = {"8.0", "7.5", "7.0"}; + std::initializer_list<const char *> Versions = { + "11.5", "11.4", "11.3", "11.2", "11.1", "11.0", "10.2", "10.1", + "10.0", "9.2", "9.1", "9.0", "8.0", "7.5", "7.0"}; auto &FS = D.getVFS(); if (Args.hasArg(clang::driver::options::OPT_cuda_path_EQ)) {
Index: clang/lib/Driver/ToolChains/Cuda.cpp =================================================================== --- clang/lib/Driver/ToolChains/Cuda.cpp +++ clang/lib/Driver/ToolChains/Cuda.cpp @@ -127,7 +127,9 @@ SmallVector<Candidate, 4> Candidates; // In decreasing order so we prefer newer versions to older versions. - std::initializer_list<const char *> Versions = {"8.0", "7.5", "7.0"}; + std::initializer_list<const char *> Versions = { + "11.5", "11.4", "11.3", "11.2", "11.1", "11.0", "10.2", "10.1", + "10.0", "9.2", "9.1", "9.0", "8.0", "7.5", "7.0"}; auto &FS = D.getVFS(); if (Args.hasArg(clang::driver::options::OPT_cuda_path_EQ)) {
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits