12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
- From: VerteDinde <[email protected]>
- Date: Wed, 12 May 2021 13:19:19 -0700
- Subject: build_libc++_as_static_library
- Build libc++ as static library to compile and pass
- nan tests
- diff --git a/buildtools/third_party/libc++/BUILD.gn b/buildtools/third_party/libc++/BUILD.gn
- index dec348e235b1306cec50e0602fb910f21eaed925..0545e0ce5490df51088ca7a4cacd968e69fa0d09 100644
- --- a/buildtools/third_party/libc++/BUILD.gn
- +++ b/buildtools/third_party/libc++/BUILD.gn
- @@ -44,7 +44,11 @@ config("winver") {
- if (libcxx_is_shared) {
- _libcxx_target_type = "shared_library"
- } else {
- - _libcxx_target_type = "source_set"
- + if (is_win) {
- + _libcxx_target_type = "source_set"
- + } else {
- + _libcxx_target_type = "static_library"
- + }
- }
- target(_libcxx_target_type, "libc++") {
- # Most things that need to depend on libc++ should do so via the implicit
- @@ -52,6 +56,7 @@ target(_libcxx_target_type, "libc++") {
- # need to explicitly depend on libc++.
- visibility = [
- "//build/config:common_deps",
- + "//electron:libcxx_objects_zip",
- "//third_party/catapult/devil:devil",
- ]
- if (is_linux && !is_chromeos) {
- diff --git a/buildtools/third_party/libc++abi/BUILD.gn b/buildtools/third_party/libc++abi/BUILD.gn
- index 40f1285f14c0843405e0ee51879b8742285a006d..5be895d3e36df53a5960006a1513f1322400fd23 100644
- --- a/buildtools/third_party/libc++abi/BUILD.gn
- +++ b/buildtools/third_party/libc++abi/BUILD.gn
- @@ -4,7 +4,7 @@
-
- import("//build/config/c++/c++.gni")
-
- -source_set("libc++abi") {
- +static_library("libc++abi") {
- if (export_libcxxabi_from_executables) {
- visibility = [ "//build/config:executable_deps" ]
- } else {
|