<html>
<head>
<base href="http://bugzilla.gdcproject.org/">
</head>
<body>
<p>
<div>
<b><a class="bz_bug_link
bz_status_NEW "
title="NEW - Undefined reference to libcurl functions with small program (not explicitly using network)."
href="http://bugzilla.gdcproject.org/show_bug.cgi?id=202#c1">Comment # 1</a>
on <a class="bz_bug_link
bz_status_NEW "
title="NEW - Undefined reference to libcurl functions with small program (not explicitly using network)."
href="http://bugzilla.gdcproject.org/show_bug.cgi?id=202">bug 202</a>
from <span class="vcard"><a class="email" href="mailto:sebastien.alaiwan@gmail.com" title="Sebastien Alaiwan <sebastien.alaiwan@gmail.com>"> <span class="fn">Sebastien Alaiwan</span></a>
</span></b>
<pre>It seems to occur when std.conv and byLine are used in the same module.
Here's another example which causes link issues:
// cantlink.d
int main()
{
import std.stdio;
stdin.byLine().front();
return 0;
}
void f(char[] s)
{
import std.conv;
to!int(s);
}
$ gdc cantlink.d
If the 'char[]' is changed to a 'string', the problem disappears.</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are watching all bug changes.</li>
</ul>
</body>
</html>