summaryrefslogtreecommitdiffstats
path: root/test/Driver/android-aarch64-link.cpp
blob: 2c4cfb9898ebc15207358ecc8db50fb1bb8ce44f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Check that we automatically add relevant linker flags for Android aarch64.

// RUN: %clang -target aarch64-none-linux-android \
// RUN:   -### -v %s 2> %t
// RUN: FileCheck -check-prefix=GENERIC-ARM < %t %s
//
// RUN: %clang -target aarch64-none-linux-android \
// RUN:   -mcpu=cortex-a53 -### -v %s 2> %t
// RUN: FileCheck -check-prefix=CORTEX-A53 < %t %s
//
// RUN: %clang -target aarch64-none-linux-android \
// RUN:   -mcpu=cortex-a57 -### -v %s 2> %t
// RUN: FileCheck -check-prefix=CORTEX-A57 < %t %s
//
// GENERIC-ARM: --fix-cortex-a53-843419
// CORTEX-A53: --fix-cortex-a53-843419
// CORTEX-A57-NOT: --fix-cortex-a53-843419