brintos

brintos / llvm-project-archived public Read only

0
0
Text · 458 B · 01de4ee Raw
19 lines · plain
1import("//llvm/utils/gn/build/toolchain/target_flags.gni")2 3declare_args() {4  # Specifies the serial number of the Android device to be used for testing.5  android_serial_for_testing = ""6 7  # Android API level used in compiler-rt tests.8  android_api_level = 299}10 11target_flags_string = ""12 13foreach(flag, target_flags + target_cflags + target_ldflags) {14  if (target_flags_string != "") {15    target_flags_string += " "16  }17  target_flags_string += flag18}19