mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-23 22:06:12 +03:00
libc++: Disable exceptions and RTTI
Except on Mac, where disabling exceptions doesn't work.
This commit is contained in:
parent
543d0bdbe9
commit
0ac6ca70ca
4
src/buildtools/third_party/libc++/BUILD.gn
vendored
4
src/buildtools/third_party/libc++/BUILD.gn
vendored
@ -126,8 +126,6 @@ target(_libcxx_target_type, "libc++") {
|
||||
}
|
||||
configs -= [
|
||||
"//build/config/compiler:chromium_code",
|
||||
"//build/config/compiler:no_exceptions",
|
||||
"//build/config/compiler:no_rtti",
|
||||
"//build/config/coverage:default_coverage",
|
||||
]
|
||||
if (is_android && libcxx_is_shared) {
|
||||
@ -139,8 +137,6 @@ target(_libcxx_target_type, "libc++") {
|
||||
configs += [
|
||||
":config",
|
||||
"//build/config/compiler:no_chromium_code",
|
||||
"//build/config/compiler:exceptions",
|
||||
"//build/config/compiler:rtti",
|
||||
"//build/config/sanitizers:sanitizer_options_link_helper",
|
||||
]
|
||||
if (libcxx_is_shared && !is_win) {
|
||||
|
19
src/buildtools/third_party/libc++abi/BUILD.gn
vendored
19
src/buildtools/third_party/libc++abi/BUILD.gn
vendored
@ -93,4 +93,23 @@ source_set("libc++abi") {
|
||||
|
||||
# libc++abi depends on libc++ internals.
|
||||
include_dirs = [ "../libc++/trunk/src" ]
|
||||
if (!is_mac) {
|
||||
sources -= [
|
||||
"trunk/src/cxa_exception.cpp",
|
||||
"trunk/src/cxa_personality.cpp",
|
||||
"trunk/src/private_typeinfo.cpp",
|
||||
]
|
||||
sources += [
|
||||
"trunk/src/cxa_noexception.cpp",
|
||||
]
|
||||
defines += [ "_LIBCXXABI_NO_EXCEPTIONS" ]
|
||||
configs -= [
|
||||
"//build/config/compiler:exceptions",
|
||||
"//build/config/compiler:rtti",
|
||||
]
|
||||
configs += [
|
||||
"//build/config/compiler:no_exceptions",
|
||||
"//build/config/compiler:no_rtti",
|
||||
]
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user