[libcxx-commits] [PATCH] D112921: [clang] Enable sized deallocation by default in C++14 onwards

John McCall via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Mon Apr 25 14:51:59 PDT 2022


rjmccall added a comment.

Ideally, I think, we would set this up to work something like `ObjCRuntime`, where we're making queries to a common place that contains all the information necessary to decide what runtime features are available.  In particular, we shouldn't treat Apple platforms as forever unique in providing a stable runtime interface with availability gating.

Now, we don't necessarily need the same complexity that `ObjCRuntime` supports, where the user can tell us to use a different runtime and runtime version from the default for the platform.  On the other hand, maybe we want that, because it's a good way to deal with the compatibility problem that we have on non-Apple platforms.  Users could tell us that they're targeting e.g. libsupc++ v4.8, and we could tell them in response that sized allocation isn't supported.  And if we get them to tell us that, rather than "I have sized allocation support" specifically, it sets us up well to solve similar problems in the future.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D112921/new/

https://reviews.llvm.org/D112921



More information about the libcxx-commits mailing list