-
Notifications
You must be signed in to change notification settings - Fork 40
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
openssl + std.conv = Linker error #107
Comments
Reduced: main.d import test;
int main() {return 0;}
auto blabla(string d) {
import std;
SysTime.fromISOString(d);
} test.di: module test;
enum XXX = bla("1.1");
int bla()(string s)
{
import std;
s.splitter('.').front.to!uint;
return 0;
}
|
Well, it's a DMD bug. Please file this to https://issues.dlang.org/ too. We can try a workaround here (e.g. avoid using Phobos). |
Why only if test.di and not test.d? |
Such is bug. We use |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Reduced test:
Output:
The text was updated successfully, but these errors were encountered: