[libc] Switch to using the generic `<gpuintrin.h>` implementations (#121810)
[llvm-project.git] / clang / test / Driver / android-link.cpp
blobab7dae540558730be319c0efcc8c3208f6abbe3e
1 // Check that we add relevant linker flags for Android ARM/AArch64/i386/x86_64.
3 // RUN: %clang -### --target=arm-linux-androideabi %s 2>&1 | \
4 // RUN: FileCheck --check-prefix=MAX-PAGE-SIZE-4KB %s
6 // RUN: %clang --target=aarch64-none-linux-android \
7 // RUN: -### -v %s 2> %t
8 // RUN: FileCheck -check-prefix=GENERIC-ARM < %t %s
10 // RUN: %clang --target=aarch64-none-linux-android \
11 // RUN: -mcpu=cortex-a53 -### -v %s 2> %t
12 // RUN: FileCheck -check-prefix=CORTEX-A53 < %t %s
14 // RUN: %clang --target=aarch64-none-linux-android \
15 // RUN: -mcpu=cortex-a57 -### -v %s 2> %t
16 // RUN: FileCheck -check-prefix=CORTEX-A57 < %t %s
18 // RUN: %clang --target=aarch64-none-linux-android \
19 // RUN: -### -v %s 2> %t
20 // RUN: FileCheck -check-prefix=MAX-PAGE-SIZE-16KB < %t %s
22 // RUN: %clang -### --target=i386-none-linux-android %s 2>&1 | \
23 // RUN: FileCheck --check-prefix=NO-MAX-PAGE-SIZE-16KB %s
25 // RUN: %clang -### --target=x86_64-none-linux-gnu %s 2>&1 | \
26 // RUN: FileCheck --check-prefix=NO-MAX-PAGE-SIZE-16KB %s
28 // RUN: %clang -### --target=x86_64-none-linux-android %s 2>&1 | \
29 // RUN: FileCheck --check-prefix=MAX-PAGE-SIZE-16KB %s
31 // GENERIC-ARM: --fix-cortex-a53-843419
32 // CORTEX-A53: --fix-cortex-a53-843419
33 // CORTEX-A57-NOT: --fix-cortex-a53-843419
34 // MAX-PAGE-SIZE-4KB: "-z" "max-page-size=4096"
35 // MAX-PAGE-SIZE-16KB: "-z" "max-page-size=16384"
36 // NO-MAX-PAGE-SIZE-16KB-NOT: "-z" "max-page-size=16384"