mirror of
https://github.com/termux/termux-packages.git
synced 2025-05-14 08:52:47 +00:00
19 lines
414 B
Plaintext
19 lines
414 B
Plaintext
import("//build/config/sysroot.gni")
|
|
import("//build/toolchain/gcc_toolchain.gni")
|
|
|
|
gcc_toolchain("host") {
|
|
cc = "@HOST_CC@"
|
|
cxx = "@HOST_CXX@"
|
|
ld = "@HOST_LD@"
|
|
ar = "@HOST_AR@"
|
|
nm = "@HOST_NM@"
|
|
toolchain_args = {
|
|
current_os = "linux"
|
|
current_cpu = "x64"
|
|
v8_current_cpu = "@V8_CURRENT_CPU@"
|
|
is_clang = @HOST_IS_CLANG@
|
|
use_gold = @HOST_USE_GOLD@
|
|
sysroot = "@HOST_SYSROOT@"
|
|
}
|
|
}
|