reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Driver/ToolChains/Cuda.cpp
  127     InstallPath = Candidate.Path;
  128     if (InstallPath.empty() || !D.getVFS().exists(InstallPath))
  128     if (InstallPath.empty() || !D.getVFS().exists(InstallPath))
  131     BinPath = InstallPath + "/bin";
  132     IncludePath = InstallPath + "/include";
  133     LibDevicePath = InstallPath + "/nvvm/libdevice";
  148     if (HostTriple.isArch64Bit() && FS.exists(InstallPath + "/lib64"))
  149       LibPath = InstallPath + "/lib64";
  150     else if (FS.exists(InstallPath + "/lib"))
  151       LibPath = InstallPath + "/lib";
  156         FS.getBufferForFile(InstallPath + "/version.txt");
  270         << CudaVersionToString(MaxVersion) << InstallPath
  277     OS << "Found CUDA installation: " << InstallPath << ", version "
tools/clang/lib/Driver/ToolChains/Cuda.h
   65   StringRef getInstallPath() const { return InstallPath; }