ports/multimedia/ringrtc/files/patch-build_toolchain_gcc__toolchain.gni
2024-07-09 15:27:55 +02:00

44 lines
1.3 KiB
Text

--- src/webrtc/src/build/toolchain/gcc_toolchain.gni.orig 2022-02-16 12:34:12 UTC
+++ src/webrtc/src/build/toolchain/gcc_toolchain.gni
@@ -53,6 +53,13 @@ if (enable_resource_allowlist_generation) {
"enable_resource_allowlist_generation=true does not work for target_os=$target_os")
}
+declare_args() {
+ extra_cflags = ""
+ extra_cppflags = ""
+ extra_cxxflags = ""
+ extra_ldflags = ""
+}
+
# This template defines a toolchain for something that works like gcc
# (including clang).
#
@@ -825,22 +832,12 @@ template("gcc_toolchain") {
# use_gold too.
template("clang_toolchain") {
gcc_toolchain(target_name) {
- _path = "$clang_base_path/bin"
- _is_path_absolute = get_path_info(_path, "abspath") == _path
-
- # Preserve absolute paths for tools like distcc.
- if (_is_path_absolute && filter_include([ _path ], [ "//*" ]) == []) {
- prefix = _path
- } else {
- prefix = rebase_path(_path, root_build_dir)
- }
-
- cc = "${prefix}/clang"
- cxx = "${prefix}/clang++"
+ cc = "cc"
+ cxx = "c++"
ld = cxx
- readelf = "${prefix}/llvm-readelf"
- ar = "${prefix}/llvm-ar"
- nm = "${prefix}/llvm-nm"
+ readelf = "llvm-readelf"
+ ar = "llvm-ar"
+ nm = "llvm-nm"
forward_variables_from(invoker,
[