Use libcxx abi v1

This commit is contained in:
Justine Tunney 2024-07-24 09:48:33 -07:00
parent fbc4b03d4c
commit f25fbbaaeb
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
3 changed files with 13 additions and 4 deletions

View file

@ -10,6 +10,8 @@
#ifndef _LIBCPP_NEW
#define _LIBCPP_NEW
#pragma GCC diagnostic ignored "-Walloc-size-larger-than="
/*
new synopsis
@ -264,6 +266,7 @@ _LIBCPP_HIDE_FROM_ABI void* __libcpp_operator_new(_Args... __args) {
#if __has_builtin(__builtin_operator_new) && __has_builtin(__builtin_operator_delete)
return __builtin_operator_new(__args...);
#else
return ::operator new(__args...);
#endif
}