summaryrefslogtreecommitdiffstats
path: root/llvm/utils/gn/secondary/compiler-rt/test/test.gni
blob: e2335933659fd060621480b366bf20af22a8058d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import("//llvm/utils/gn/build/toolchain/target_flags.gni")

declare_args() {
  # Specifies the serial number of the Android device to be used for testing.
  android_serial_for_testing = ""
}

target_flags_string = ""

foreach(flag, target_flags + target_ldflags + [ "-fuse-ld=lld" ]) {
  if (target_flags_string != "") {
    target_flags_string += " "
  }
  target_flags_string += flag
}
OpenPOWER on IntegriCloud