mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
build: Add OpenWrt toolchain definitions
This commit is contained in:
parent
25bd7cd9cc
commit
779806dbf0
@ -21,6 +21,16 @@ clang_toolchain("clang_arm") {
|
||||
}
|
||||
}
|
||||
|
||||
clang_toolchain("clang_arm_openwrt") {
|
||||
extra_cppflags = "--target=arm-openwrt-linux-muslgnueabi -D_LIBCPP_HAS_MUSL_LIBC -D__UCLIBC__"
|
||||
extra_ldflags = "--target=arm-openwrt-linux-muslgnueabi"
|
||||
extra_asmflags = "--target=arm-openwrt-linux-muslgnueabi"
|
||||
toolchain_args = {
|
||||
current_cpu = "arm"
|
||||
current_os = "linux"
|
||||
}
|
||||
}
|
||||
|
||||
clang_toolchain("clang_arm64") {
|
||||
toolprefix = "aarch64-linux-gnu-"
|
||||
toolchain_args = {
|
||||
@ -29,6 +39,16 @@ clang_toolchain("clang_arm64") {
|
||||
}
|
||||
}
|
||||
|
||||
clang_toolchain("clang_arm64_openwrt") {
|
||||
extra_cppflags = "--target=aarch64-openwrt-linux-musl -D_LIBCPP_HAS_MUSL_LIBC -D__UCLIBC__"
|
||||
extra_ldflags = "--target=aarch64-openwrt-linux-musl"
|
||||
extra_asmflags = "--target=aarch64-openwrt-linux-musl"
|
||||
toolchain_args = {
|
||||
current_cpu = "arm64"
|
||||
current_os = "linux"
|
||||
}
|
||||
}
|
||||
|
||||
gcc_toolchain("arm64") {
|
||||
toolprefix = "aarch64-linux-gnu-"
|
||||
|
||||
@ -128,6 +148,18 @@ clang_toolchain("clang_x64") {
|
||||
}
|
||||
}
|
||||
|
||||
clang_toolchain("clang_x64_openwrt") {
|
||||
# Output linker map files for binary size analysis.
|
||||
enable_linker_map = true
|
||||
extra_cppflags = "--target=x86_64-openwrt-linux-musl -D_LIBCPP_HAS_MUSL_LIBC -D__UCLIBC__"
|
||||
extra_ldflags = "--target=x86_64-openwrt-linux-musl"
|
||||
|
||||
toolchain_args = {
|
||||
current_cpu = "x64"
|
||||
current_os = "linux"
|
||||
}
|
||||
}
|
||||
|
||||
clang_toolchain("clang_x64_v8_arm64") {
|
||||
toolchain_args = {
|
||||
current_cpu = "x64"
|
||||
@ -178,6 +210,16 @@ clang_toolchain("clang_mipsel") {
|
||||
}
|
||||
}
|
||||
|
||||
clang_toolchain("clang_mipsel_openwrt") {
|
||||
extra_cppflags = "--target=mipsel-openwrt-linux-musl -D_LIBCPP_HAS_MUSL_LIBC -D__UCLIBC__"
|
||||
extra_ldflags = "--target=mipsel-openwrt-linux-musl"
|
||||
|
||||
toolchain_args = {
|
||||
current_cpu = "mipsel"
|
||||
current_os = "linux"
|
||||
}
|
||||
}
|
||||
|
||||
clang_toolchain("clang_mips64el") {
|
||||
toolchain_args = {
|
||||
current_cpu = "mips64el"
|
||||
|
Loading…
Reference in New Issue
Block a user