[clang] [flang] [Flang][AMDGPU] Add rocm-path flag (PR #88190)
Joseph Huber via cfe-commits
cfe-commits at lists.llvm.org
Fri Apr 12 05:47:13 PDT 2024
================
@@ -345,7 +345,13 @@ void Flang::AddAMDGPUTargetArgs(const ArgList &Args,
// Check ROCm path if specified
const ToolChain &TC = getToolChain();
- TC.getDeviceLibs(Args);
+ std::string HIPVersion;
+ llvm::raw_string_ostream HIPInfo(HIPVersion);
+ TC.printVerboseInfo(HIPInfo);
+ llvm::StringRef HIPInfoStrRef(HIPInfo.str());
+ if (!HIPInfoStrRef.contains("Found HIP installation") &&
----------------
jhuber6 wrote:
Do we use these libraries at all yet?
https://github.com/llvm/llvm-project/pull/88190
More information about the cfe-commits
mailing list