We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
dmd and ddemangle are install via `install.sh install dmd-2.084.0`. --- (dmd-2.084.0)$ cat objc.d extern (Objective-C) void fooObjC(T)(T x) { } extern (D) void fooD(T)(T x) { } void main() { fooD(1); fooObjC(1); } (dmd-2.084.0)$ dmd -g objc.d (dmd-2.084.0)$ nm objc| grep foo| ddemangle 0000000000032e78 W pure nothrow @nogc @safe void objc.fooD!(int).fooD(int) 0000000000032e88 W _D4objc__T7fooObjCTiZQlYNaNbNiNfiZv ---
The text was updated successfully, but these errors were encountered:
PR 2482: https://github.com/dlang/druntime/pull/2482
Sorry, something went wrong.
@kubo39 updated dlang/druntime pull request #2482 "FIX Issue 19643 - add missing Objective-C function calling convention" fixing this issue: - FIX Issue 19643 - add missing Objective-C function calling convention https://github.com/dlang/druntime/pull/2482
@kubo39 updated dlang/druntime pull request #2977 "Fix Issue 20640 - LDC: AddressSanitizer failing to catch SIGSEGV in unittest" fixing this issue: - FIX Issue 19643 - add missing Objective-C function calling convention https://github.com/dlang/druntime/pull/2977
No branches or pull requests
Hiroki Noda (@kubo39) reported this on 2019-02-03T23:12:36Z
Transferred from https://issues.dlang.org/show_bug.cgi?id=19643
CC List
Description
The text was updated successfully, but these errors were encountered: