bolt/deps/llvm-18.1.8/llvm/utils/gn/secondary/compiler-rt/test/test.gni

19 lines
442 B
Text
Raw Normal View History

2025-02-14 19:21:04 +01:00
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 = ""
# Android API level used in compiler-rt tests.
android_api_level = 29
}
target_flags_string = ""
foreach(flag, target_flags + target_ldflags) {
if (target_flags_string != "") {
target_flags_string += " "
}
target_flags_string += flag
}