-
Notifications
You must be signed in to change notification settings - Fork 738
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
allow dollars in identifiers #4219
Conversation
Apple patch libstdc++v3 with additional support for dtrace. These dtrace symbols use dollar signs indentifiers, and are incompatible with the compile option -fno-dollars-in-identifiers. This commit removes the option. Signed-off-by: Robert Young <rwy0717@gmail.com>
Got some details wrong, it's not libc++, it's Apple's modified libstdc++ that uses dollar signs. Here's a patch that shows the difference: |
/cc @0xdaryl |
Jenkins test sanity all jdk11 |
@jjohnst-us, can you confirm this won't cause a problem for zTPF? |
@0xdaryl |
To me, the CI failure looks unrelated:
|
Jenkins test sanity xlinux jdk11 |
Jenkins test sanity xlinuxlargeheap jdk11 |
Apple patches libstdc++v3 with additional support for dtrace. These dtrace
symbols use dollar signs identifiers, and are incompatible with the
compile option -fno-dollars-in-identifiers. This commit removes the
option.
Signed-off-by: Robert Young rwy0717@gmail.com