-
-
Notifications
You must be signed in to change notification settings - Fork 608
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
fix Issue 23614 - ImportC: __int128 not supported #14805
Conversation
|
Thanks for your pull request, @WalterBright! Bugzilla references
Testing this PR locallyIf you don't have a local development environment setup, you can use Digger to test this PR: dub run digger -- build "stable + dmd#14805" |
| @@ -96,3 +96,7 @@ | |||
| #if linux // Microsoft won't allow the following macro | |||
| #define __PRETTY_FUNCTION__ __func__ | |||
| #endif | |||
|
|
|||
| #if __APPLE__ | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I assume DMD doesn't support 128 bit integers on any platforms?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
right.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Then why are undefing it just for Apple?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because that's the only platform that complains about it.
Note that the Standard .h files are quite different on each platform.
|
This should target stable. @WalterBright please check the bot message, it guides you when and how to retarget stable. |
2e02e18
to
0b3d670
Compare
Fix using Jacob Carlborg's suggestion.
This blocks compiling the BearSSL package.