mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-22 05:16:12 +03:00
libc++: Disable exceptions and RTTI
Except on Mac, where exceptions are required. And except on Android, where rtti is required.
This commit is contained in:
parent
bc8d23720a
commit
319b3ab97d
4
src/buildtools/third_party/libc++/BUILD.gn
vendored
4
src/buildtools/third_party/libc++/BUILD.gn
vendored
@ -142,8 +142,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 || is_apple) && libcxx_is_shared) {
|
||||
@ -157,8 +155,6 @@ target(_libcxx_target_type, "libc++") {
|
||||
configs += [
|
||||
":config",
|
||||
"//build/config/compiler:no_chromium_code",
|
||||
"//build/config/compiler:exceptions",
|
||||
"//build/config/compiler:rtti",
|
||||
]
|
||||
|
||||
if (libcxx_is_shared && !is_win) {
|
||||
|
30
src/buildtools/third_party/libc++abi/BUILD.gn
vendored
30
src/buildtools/third_party/libc++abi/BUILD.gn
vendored
@ -87,4 +87,34 @@ source_set("libc++abi") {
|
||||
|
||||
# libc++abi depends on libc++ internals.
|
||||
include_dirs = [ "../libc++/trunk/src" ]
|
||||
if (!is_apple) {
|
||||
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",
|
||||
]
|
||||
}
|
||||
if (is_android) {
|
||||
sources += [
|
||||
"trunk/src/private_typeinfo.cpp",
|
||||
]
|
||||
configs -= [
|
||||
"//build/config/compiler:no_rtti",
|
||||
]
|
||||
configs += [
|
||||
"//build/config/compiler:rtti",
|
||||
]
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user