mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-15 12:39:19 +00:00
849d4405f5
Do not detect device library by default in rocm detector. Only detect device library in Rocm and HIP toolchain. Separate detection of HIP runtime and Rocm device library. Detect rocm path by version file in host toolchains. Also added detecting rocm version and printing rocm installation path and version with -v. Fixed include path and device library detection for ROCm 3.5. Added --hip-version option. Renamed --hip-device-lib-path to --rocm-device-lib-path. Fixed default value for -fhip-new-launch-api. Added default -std option for HIP. Differential Revision: https://reviews.llvm.org/D82930
18 lines
679 B
Plaintext
18 lines
679 B
Plaintext
// REQUIRES: clang-driver
|
|
// REQUIRES: x86-registered-target
|
|
// REQUIRES: amdgpu-registered-target
|
|
|
|
// By default FE assumes -fhip-new-launch-api.
|
|
|
|
// RUN: %clang -### -target x86_64-unknown-linux-gnu -offload-arch=gfx906 %s \
|
|
// RUN: 2>&1 | FileCheck -check-prefixes=NEW %s
|
|
// NEW: "-fhip-new-launch-api"
|
|
|
|
// RUN: %clang -### -target x86_64-unknown-linux-gnu -offload-arch=gfx906 %s \
|
|
// RUN: -fhip-new-launch-api 2>&1 | FileCheck -check-prefixes=NEW %s
|
|
// NEW: "-fhip-new-launch-api"
|
|
|
|
// RUN: %clang -### -target x86_64-unknown-linux-gnu -offload-arch=gfx906 %s \
|
|
// RUN: -fno-hip-new-launch-api 2>&1 | FileCheck -check-prefixes=OLD %s
|
|
// OLD-NOT: "-fhip-new-launch-api"
|