You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-util/hip/files/hip-5.1.3-rocm-path.patch

14 lines
564 B

explicitly specify `--rocm-path=/usr` because clang does not list
it among the default paths
===================================================================
--- HIP-rocm-5.1.3.orig/bin/hipcc.pl
+++ HIP-rocm-5.1.3/bin/hipcc.pl
@@ -696,6 +696,7 @@ if ($HIP_PLATFORM eq "amd") {
if ($hasHIP) {
if ($DEVICE_LIB_PATH ne "$ROCM_PATH/amdgcn/bitcode") {
+ $HIPCXXFLAGS .= " --rocm-path=\"$ROCM_PATH\"";
$HIPCXXFLAGS .= " --hip-device-lib-path=\"$DEVICE_LIB_PATH\"";
}
$HIPCXXFLAGS .= " -fhip-new-launch-api";