Thread overview
[Issue 13375] Linking failure when importing both std.regex and std.algorithm
Aug 25, 2014
Cody Casterline
Aug 26, 2014
Puneet Goel
Sep 03, 2014
Puneet Goel
August 25, 2014
https://issues.dlang.org/show_bug.cgi?id=13375

Cody Casterline <cody.casterline@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |cody.casterline@gmail.com

--- Comment #1 from Cody Casterline <cody.casterline@gmail.com> ---
Not able to reproduce that on my end:

$ cat foo.d
import std.regex;
import std.algorithm;

void foo(string bar) {
    split(bar, regex("_"));
    int[] test ;
    test.sort();
  }

void main(){}
$ rdmd --force foo.d
$ rdmd --version
rdmd build 20140224
[...]



What version are you using?

--
August 26, 2014
https://issues.dlang.org/show_bug.cgi?id=13375

--- Comment #2 from Puneet Goel <puneet@coverify.org> ---
(In reply to Cody Casterline from comment #1)

> $ rdmd --force foo.d
> $ rdmd --version
> rdmd build 20140224
> [...]
> 
> 
> 
> What version are you using?

$ rdmd -version
rdmd build 20140824


Today I also tried with version 20140826 -- same error. I am on a x86_64 architecture. The error does not show up with released version 2.066.

--
August 30, 2014
https://issues.dlang.org/show_bug.cgi?id=13375

bearophile_hugs@eml.cc changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bearophile_hugs@eml.cc

--- Comment #3 from bearophile_hugs@eml.cc ---
See also Issue 13400

--
September 03, 2014
https://issues.dlang.org/show_bug.cgi?id=13375

Puneet Goel <puneet@coverify.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #4 from Puneet Goel <puneet@coverify.org> ---
(In reply to bearophile_hugs from comment #3)
> See also Issue 13400

Seems to be working with the latest DMD.

--