Merge "Adapt to the new libc++/libc++abi update."
This commit is contained in:
commit
39ee5a4b47
|
@ -35,3 +35,7 @@ void* __find_icu_symbol(const char* symbol_name __attribute__((__unused__))) {
|
|||
extern "C" int __cxa_type_match() {
|
||||
async_safe_fatal("__cxa_type_match is not implemented in the linker");
|
||||
}
|
||||
|
||||
int posix_memalign(void**, size_t, size_t) {
|
||||
async_safe_fatal("posix_memalign is not implemented in the linker");
|
||||
}
|
||||
|
|
|
@ -35,6 +35,8 @@ cc_binary_host {
|
|||
|
||||
"-D__STDC_CONSTANT_MACROS",
|
||||
"-D__STDC_LIMIT_MACROS",
|
||||
|
||||
"-D_LIBCPP_ENABLE_CXX17_REMOVED_BINDERS",
|
||||
],
|
||||
|
||||
target: {
|
||||
|
|
Loading…
Reference in New Issue