-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[libc++] regression: new/delete symbol overrides broken on macOS #123224
Comments
Attn @nico |
I think it's this line specifically that suddenly made them visible globally. Strange that this change was only done to |
@petrhosek Could you have a look? |
Yes, I was already looking at the macOS implementation in the context of #122983 so I can look into this. @tycho Do you have instructions for building |
ANGLE's build directions: https://chromium.googlesource.com/angle/angle/+/main/doc/DevSetup.md The TL;DR is something like:
and you should get a libEGL + libGLESv2. Their version of libc++ comes from the This is the args.gn I am using for arm64 debug builds of ANGLE at the moment, and what I used for the repro in the OP:
|
This allows me to build and run with libEGL+libGLESv2 without crashing: It basically makes all the But that did lead me to notice that not all of the
But it misses the nothrow versions, for some reason (the following are covered by mimalloc, but libc++ doesn't expose them?):
|
This roughly matches the ELF version and addresses the issue llvm#123224.
The issue isn't We don't want to use I have reworked the implementation to avoid the use of assembly altogether in #122983 which should address this issue once landed. |
Reverts #120805 This change while desirable has two issues we discovered: - It is incompatible with `-funique-internal-linkage-names`, see #120805 (comment) - It is incompatible with `-fvisibility-global-new-delete=force-hidden`, see #123224 (comment) We were hoping to address both of these issues with #122983, but that change has other issues we haven't yet managed to resolve. For now, we have decided to revert the change to avoid shipping a broken feature in LLVM 20, and we plan to follow up with a new approach post branch.
…n" (#124431) Reverts llvm/llvm-project#120805 This change while desirable has two issues we discovered: - It is incompatible with `-funique-internal-linkage-names`, see llvm/llvm-project#120805 (comment) - It is incompatible with `-fvisibility-global-new-delete=force-hidden`, see llvm/llvm-project#123224 (comment) We were hoping to address both of these issues with llvm/llvm-project#122983, but that change has other issues we haven't yet managed to resolve. For now, we have decided to revert the change to avoid shipping a broken feature in LLVM 20, and we plan to follow up with a new approach post branch.
Reverts llvm/llvm-project#120805 This change while desirable has two issues we discovered: - It is incompatible with `-funique-internal-linkage-names`, see llvm/llvm-project#120805 (comment) - It is incompatible with `-fvisibility-global-new-delete=force-hidden`, see llvm/llvm-project#123224 (comment) We were hoping to address both of these issues with llvm/llvm-project#122983, but that change has other issues we haven't yet managed to resolve. For now, we have decided to revert the change to avoid shipping a broken feature in LLVM 20, and we plan to follow up with a new approach post branch. NOKEYCHECK=True GitOrigin-RevId: 4167ea2cb082a2acb00b8b1dc09aa780dc0e3110
This is referring to commit 8418955.
In a shared library which statically links libc++ (ANGLE's libEGL in this case), the symbols for
new
andnew[]
are, as of the above commit, suddenly exposed as global, but the correspondingdelete
anddelete[]
operators are not.Before the above commit:
After:
This causes applications like mine with custom allocators (mimalloc in this case) to provide the implementations for the operator
new
symbols, but not thedelete
symbols, which inevitably causes a crash within the shared library when it tries to free memory.The text was updated successfully, but these errors were encountered: