[libc++abi][libunwind] Don't override libc++'s handling of exception features

0e04342ae0 simplified exceptions-related configurations for libc++abi
and libunwind by reusing the logic in libc++. However, it missed the fact
that libc++abi and libunwind were overriding libc++'s handling of exceptions.

This commit removes special handling in libc++abi and libunwind to use
the logic in libc++, which is the right one.
This commit is contained in:
Louis Dionne 2020-06-09 15:58:41 -04:00
parent e26b25f8b1
commit 168681abce
2 changed files with 0 additions and 6 deletions

View File

@ -86,8 +86,5 @@ class Configuration(LibcxxConfiguration):
% libunwind_headers)
self.cxx.compile_flags += ['-I' + libunwind_headers]
def configure_compile_flags_exceptions(self):
pass
def configure_compile_flags_rtti(self):
pass

View File

@ -59,9 +59,6 @@ class Configuration(LibcxxConfiguration):
% libunwind_headers)
self.cxx.compile_flags += ['-I' + libunwind_headers]
def configure_compile_flags_exceptions(self):
pass
def configure_compile_flags_rtti(self):
pass