- Add EXAMPLES option Changes: https://chromium.googlesource.com/v8/v8.git/+log/refs/heads/10.2-lkgr
46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
--- build/toolchain/gcc_toolchain.gni.orig 2022-05-07 05:44:30 UTC
|
|
+++ build/toolchain/gcc_toolchain.gni
|
|
@@ -53,6 +53,11 @@ if (enable_resource_allowlist_generation) {
|
|
"enable_resource_allowlist_generation=true does not work for target_os=$target_os")
|
|
}
|
|
|
|
+declare_args() {
|
|
+ extra_cxxflags = ""
|
|
+ extra_ldflags = ""
|
|
+}
|
|
+
|
|
# This template defines a toolchain for something that works like gcc
|
|
# (including clang).
|
|
#
|
|
@@ -786,13 +791,23 @@ template("gcc_toolchain") {
|
|
# use_gold too.
|
|
template("clang_toolchain") {
|
|
gcc_toolchain(target_name) {
|
|
- prefix = rebase_path("$clang_base_path/bin", root_build_dir)
|
|
- cc = "${prefix}/clang"
|
|
- cxx = "${prefix}/clang++"
|
|
- ld = cxx
|
|
- readelf = "${prefix}/llvm-readelf"
|
|
- ar = "${prefix}/llvm-ar"
|
|
- nm = "${prefix}/llvm-nm"
|
|
+ if (is_bsd) {
|
|
+ prefix = "%%LOCALBASE%%/bin"
|
|
+ cc = "cc"
|
|
+ cxx = "c++"
|
|
+ ld = cxx
|
|
+ readelf = "${prefix}/readelf"
|
|
+ ar = "${prefix}/ar"
|
|
+ nm = "${prefix}/nm"
|
|
+ } else {
|
|
+ prefix = rebase_path("$clang_base_path/bin", root_build_dir)
|
|
+ cc = "$prefix/clang"
|
|
+ cxx = "$prefix/clang++"
|
|
+ ld = cxx
|
|
+ readelf = "${prefix}/readelf"
|
|
+ ar = "${prefix}/llvm-ar"
|
|
+ nm = "${prefix}/llvm-nm"
|
|
+ }
|
|
|
|
forward_variables_from(invoker,
|
|
[
|