We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d40a59 commit c544eceCopy full SHA for c544ece
patch/patch.cfg
@@ -11,4 +11,8 @@ patches = [
11
'name': 'icu',
12
'path': 'third_party/icu/',
13
},
14
+ {
15
+ 'name': 'buildtools',
16
+ 'path': 'buildtools',
17
+ },
18
]
patch/patches/buildtools.patch
@@ -0,0 +1,17 @@
1
+diff --git a/third_party/libc++/BUILD.gn b/third_party/libc++/BUILD.gn
2
+index 6cd5a55..8ea6885 100644
3
+--- third_party/libc++/BUILD.gn
4
++++ third_party/libc++/BUILD.gn
5
+@@ -19,7 +19,11 @@ config("config") {
6
+ }
7
+
8
+ if (libcpp_is_static) {
9
+- link_target_type = "source_set"
10
++ if (is_linux) {
++ link_target_type = "static_library"
++ } else {
++ link_target_type = "source_set"
++ }
+ } else {
+ link_target_type = "shared_library"
0 commit comments