Skip to content
This repository was archived by the owner on Apr 21, 2025. It is now read-only.

Commit f27d99b

Browse files
authored
[CP] [Impeller] Switched to static linked libc++ in vulkan validation layers. (#794)
CP of flutter/engine#47886 and the buildroot part of flutter/engine#48290
1 parent 9780f25 commit f27d99b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

build/secondary/third_party/libcxxabi/BUILD.gn

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,8 @@ source_set("libcxxabi") {
7979
if (!(is_tsan && is_linux)) {
8080
sources += [ "src/cxa_guard.cpp" ]
8181
}
82+
83+
if (is_fuchsia || (is_posix && !is_apple)) {
84+
sources += [ "src/cxa_thread_atexit.cpp" ]
85+
}
8286
}

build/secondary/third_party/vulkan_validation_layers/BUILD.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ foreach(layer_info, layers) {
463463
}
464464
if (is_android) {
465465
libs = [
466-
"c++", # Note: C++ added by Flutter.
466+
"c++_static", # Note: C++ added by Flutter.
467467
"log",
468468
"nativewindow",
469469
]

0 commit comments

Comments
 (0)