Jump to page: 1 2
Thread overview
[Issue 13178] Duplicate symbol of compiler generated symbols
Jul 25, 2014
Walter Bright
Jul 25, 2014
Jacob Carlborg
Jul 26, 2014
Walter Bright
Jul 27, 2014
Jacob Carlborg
Jul 27, 2014
Dicebot
Jul 27, 2014
Dicebot
Jul 30, 2014
Andrew Edwards
Jul 31, 2014
Martin Nowak
Aug 04, 2014
Jacob Carlborg
Aug 04, 2014
Dicebot
Aug 04, 2014
Jacob Carlborg
Aug 04, 2014
Dicebot
July 25, 2014
https://issues.dlang.org/show_bug.cgi?id=13178

Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bugzilla@digitalmars.com

--- Comment #1 from Walter Bright <bugzilla@digitalmars.com> ---
Does this happen on any other platform?

--
July 25, 2014
https://issues.dlang.org/show_bug.cgi?id=13178

--- Comment #2 from Jacob Carlborg <doob@me.com> ---
(In reply to Walter Bright from comment #1)
> Does this happen on any other platform?

Yes, on Linux 64bit. But I get a lot symbol duplication error for a lot more symbols.

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

--- Comment #3 from Walter Bright <bugzilla@digitalmars.com> ---
(In reply to Jacob Carlborg from comment #2)
> (In reply to Walter Bright from comment #1)
> > Does this happen on any other platform?
> 
> Yes, on Linux 64bit. But I get a lot symbol duplication error for a lot more symbols.

Could you please try to get a small test case?

--
July 27, 2014
https://issues.dlang.org/show_bug.cgi?id=13178

--- Comment #4 from Jacob Carlborg <doob@me.com> ---
(In reply to Walter Bright from comment #3)

> Could you please try to get a small test case?

I don't have access to my development computer right now. So I want be able to do that in the near future.

--
July 27, 2014
https://issues.dlang.org/show_bug.cgi?id=13178

Dicebot <public@dicebot.lv> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |public@dicebot.lv

--- Comment #5 from Dicebot <public@dicebot.lv> ---
I think this is related to https://github.com/D-Programming-Language/tools/pull/133 - tango had a special case in rdmd that got finally removed. Proper solution is to manually supply --exclude=tango in your application build script.

I will shortly prepare rdmd pull request that warns about behaviour change upon encountering `tango` package path.

--
July 27, 2014
https://issues.dlang.org/show_bug.cgi?id=13178

--- Comment #6 from Dicebot <public@dicebot.lv> ---
https://github.com/D-Programming-Language/tools/pull/134

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

Andrew Edwards <edwards.ac@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |edwards.ac@gmail.com

--- Comment #7 from Andrew Edwards <edwards.ac@gmail.com> ---
Pull has been merged, please retest and resolve if fixed.

--
July 31, 2014
https://issues.dlang.org/show_bug.cgi?id=13178

Martin Nowak <code@dawg.eu> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |code@dawg.eu
         Resolution|---                         |FIXED

--- Comment #8 from Martin Nowak <code@dawg.eu> ---
Tested and submitted a pull for dvm https://github.com/jacob-carlborg/dvm/pull/24.

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

--- Comment #9 from Jacob Carlborg <doob@me.com> ---
(In reply to Dicebot from comment #5)
> I think this is related to https://github.com/D-Programming-Language/tools/pull/133 - tango had a special case in rdmd that got finally removed. Proper solution is to manually supply --exclude=tango in your application build script.
> 
> I will shortly prepare rdmd pull request that warns about behaviour change upon encountering `tango` package path.

Does this mean I cannot use RDMD together with static libraries?

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

--- Comment #10 from Dicebot <public@dicebot.lv> ---
(In reply to Jacob Carlborg from comment #9)
> Does this mean I cannot use RDMD together with static libraries?

You can but using --exclude=pkgname for those is necessary - rdmd itself can't know relation between static library file and package names of compiled sources. Phobos is excluded by default and tango was only non-standard pre-defined exclusion until recently. All other static libraries have needed it all the time.

--
« First   ‹ Prev
1 2