blob: def24e5a8f6f5529a8e7b9b66d390e8c3c62ea70 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- build/config/gcc/BUILD.gn.orig 2025-01-27 17:37:37 UTC
+++ build/config/gcc/BUILD.gn
@@ -32,7 +32,9 @@ config("symbol_visibility_hidden") {
# See http://gcc.gnu.org/wiki/Visibility
config("symbol_visibility_hidden") {
cflags = [ "-fvisibility=hidden" ]
- rustflags = [ "-Zdefault-visibility=hidden" ]
+ if (!is_bsd) {
+ rustflags = [ "-Zdefault-visibility=hidden" ]
+ }
# Visibility attribute is not supported on AIX.
if (current_os != "aix") {
|