1 // UNSUPPORTED: system-windows
5 // Test HIP runtime lib args specified by --rocm-path.
6 // RUN: %clang -### --hip-link --target=x86_64-linux-gnu \
7 // RUN: --rocm-path=%S/Inputs/rocm %t.o 2>&1 \
8 // RUN: | FileCheck -check-prefixes=ROCM-PATH %s
10 // Test HIP runtime lib args specified by environment variable ROCM_PATH.
11 // RUN: env ROCM_PATH=%S/Inputs/rocm %clang -### --hip-link \
12 // RUN: --target=x86_64-linux-gnu %t.o 2>&1 \
13 // RUN: | FileCheck -check-prefixes=ROCM-PATH %s
15 // RUN: %clang -### --hip-link --target=x86_64-linux-gnu \
16 // RUN: --rocm-path=%S/Inputs/rocm %t.o --offload-add-rpath 2>&1 \
17 // RUN: | FileCheck -check-prefixes=ROCM-RPATH %s
19 // RUN: %clang -### --hip-link --target=x86_64-linux-gnu \
20 // RUN: --rocm-path=%S/Inputs/rocm %t.o -frtlib-add-rpath 2>&1 \
21 // RUN: | FileCheck -check-prefixes=ROCM-RPATH %s
23 // Test detecting latest /opt/rocm-{release} directory.
24 // RUN: rm -rf %t && mkdir -p %t/opt
25 // RUN: cp -r %S/Inputs/rocm %t/opt/rocm-3.9.0-1234
26 // RUN: cp -r %S/Inputs/rocm %t/opt/rocm-3.10.0
27 // RUN: %clang -### --hip-link --target=x86_64-linux-gnu \
28 // RUN: --sysroot=%t %t.o 2>&1 \
29 // RUN: | FileCheck -check-prefixes=ROCM-REL %s
31 // Test HIP runtime lib is not linked without --hip-link.
32 // RUN: %clang -### --target=x86_64-linux-gnu \
33 // RUN: --rocm-path=%S/Inputs/rocm %t.o 2>&1 \
34 // RUN: | FileCheck -check-prefixes=NOHIPRT %s
36 // Test HIP runtime lib is not linked with -nostdlib.
37 // RUN: %clang -### --hip-link -nostdlib --target=x86_64-linux-gnu \
38 // RUN: --rocm-path=%S/Inputs/rocm %t.o 2>&1 \
39 // RUN: | FileCheck -check-prefixes=NOHIPRT %s
41 // Test HIP runtime lib is not linked with -no-hip-rt.
42 // RUN: %clang -### --hip-link -no-hip-rt --target=x86_64-linux-gnu \
43 // RUN: --rocm-path=%S/Inputs/rocm %t.o 2>&1 \
44 // RUN: | FileCheck -check-prefixes=NOHIPRT %s
46 // Test HIP runtime lib is not linked with -r.
47 // RUN: %clang -### --hip-link -r --target=x86_64-linux-gnu \
48 // RUN: --rocm-path=%S/Inputs/rocm %t.o 2>&1 \
49 // RUN: | FileCheck -check-prefixes=NOHIPRT %s
51 // Test HIP runtime lib is linked without hip-link if there is HIP input file.
52 // RUN: %clang -### --target=x86_64-linux-gnu -nogpuinc -nogpulib \
53 // RUN: --rocm-path=%S/Inputs/rocm %s 2>&1 \
54 // RUN: | FileCheck -check-prefixes=ROCM-PATH %s
56 // ROCM-PATH: "-L[[HIPRT:.*/Inputs/rocm/lib]]" "-lamdhip64"
57 // ROCM-RPATH: "-L[[HIPRT:.*/Inputs/rocm/lib]]" "-rpath" "[[HIPRT]]" "-lamdhip64"
58 // ROCM-REL: "-L[[HIPRT:.*/opt/rocm-3.10.0/lib]]" "-lamdhip64"
59 // NOHIPRT-NOT: "-L{{.*/Inputs/rocm/lib}}"
60 // NOHIPRT-NOT: "-rpath" "{{.*/Inputs/rocm/lib}}"
61 // NOHIPRT-NOT: "-lamdhip64"