Re: dmd not building with dmd

2016-05-11 Thread Lionello Lunesu via Digitalmars-d
On 10/5/2016 14:39, Jacob Carlborg wrote: On 2016-05-10 06:49, Lionello Lunesu wrote: Well, it's either wrong phobos or wrong dmd. I assumed phobos was mismatched, but perhaps DMD was mismatched? Installing with brew suggest it's installing 2.071.0, but DMD appears to be 2.070: The issue Stev

Re: dmd not building with dmd

2016-05-11 Thread Lionello Lunesu via Digitalmars-d
On 10/5/2016 16:24, John Colvin wrote: On Tuesday, 10 May 2016 at 04:49:33 UTC, Lionello Lunesu wrote: Well, it's either wrong phobos or wrong dmd. I assumed phobos was mismatched, but perhaps DMD was mismatched? Installing with brew suggest it's installing 2.071.0, but DMD appears to be 2.070:

Re: dmd not building with dmd

2016-05-10 Thread Jacob Carlborg via Digitalmars-d
On 2016-05-10 14:29, Steven Schveighoffer wrote: I couldn't remember the exact version, but since 2.070.2 worked, I didn't look any further. I just was curious whether the policy is that this is an expectation that you have to use a prior version to build dmd, or if we should report bugs when dm

Re: dmd not building with dmd

2016-05-10 Thread Steven Schveighoffer via Digitalmars-d
On 5/10/16 2:41 AM, Jacob Carlborg wrote: On 2016-05-08 12:33, Steven Schveighoffer wrote: Ok thanks. Will wait for next release. For some reason this doesn't affect command line compiles Since you're using DVM, :), you can easily roll back to 2.070.0 as a workaround. Oh yes, that's what I

Re: dmd not building with dmd

2016-05-10 Thread John Colvin via Digitalmars-d
On Tuesday, 10 May 2016 at 04:49:33 UTC, Lionello Lunesu wrote: Well, it's either wrong phobos or wrong dmd. I assumed phobos was mismatched, but perhaps DMD was mismatched? Installing with brew suggest it's installing 2.071.0, but DMD appears to be 2.070: $ brew install dmd ==> Downloading

Re: dmd not building with dmd

2016-05-09 Thread Jacob Carlborg via Digitalmars-d
On 2016-05-08 12:33, Steven Schveighoffer wrote: Ok thanks. Will wait for next release. For some reason this doesn't affect command line compiles Since you're using DVM, :), you can easily roll back to 2.070.0 as a workaround. If I recall correctly, DMD is buildable with DMD 2.067.0 and lat

Re: dmd not building with dmd

2016-05-09 Thread Jacob Carlborg via Digitalmars-d
On 2016-05-10 06:49, Lionello Lunesu wrote: Well, it's either wrong phobos or wrong dmd. I assumed phobos was mismatched, but perhaps DMD was mismatched? Installing with brew suggest it's installing 2.071.0, but DMD appears to be 2.070: The issue Steven is having is that the symbol doesn't exi

Re: dmd not building with dmd

2016-05-09 Thread Lionello Lunesu via Digitalmars-d
On 9/5/2016 20:19, John Colvin wrote: On Monday, 9 May 2016 at 07:57:33 UTC, Lionello Lunesu wrote: On 8/5/2016 14:43, Steven Schveighoffer wrote: [...] I ran into this as well. It's a bug in the package from brew: it shipped with the wrong phobos. You can build your own DMD: $ make -f posix

Re: dmd not building with dmd

2016-05-09 Thread John Colvin via Digitalmars-d
On Monday, 9 May 2016 at 07:57:33 UTC, Lionello Lunesu wrote: On 8/5/2016 14:43, Steven Schveighoffer wrote: [...] I ran into this as well. It's a bug in the package from brew: it shipped with the wrong phobos. You can build your own DMD: $ make -f posix.mak AUTO_BOOTSTRAP=1 In what way d

Re: dmd not building with dmd

2016-05-09 Thread Lionello Lunesu via Digitalmars-d
On 8/5/2016 14:43, Steven Schveighoffer wrote: I went to create a PR, and did a git pull on all my repositories. After make clean on OSX, dmd would not build: /Applications/Xcode.app/Contents/Developer/usr/bin/make -C src -f posix.mak no cpu specified, assuming X86 CC=c++ dmd idgen.d Undefined s

Re: dmd not building with dmd

2016-05-08 Thread Walter Bright via Digitalmars-d
On 5/8/2016 12:18 AM, Walter Bright wrote: On 5/7/2016 11:43 PM, Steven Schveighoffer wrote: I went to create a PR, and did a git pull on all my repositories. After make clean on OSX, dmd would not build: /Applications/Xcode.app/Contents/Developer/usr/bin/make -C src -f posix.mak no cpu specifi

Re: dmd not building with dmd

2016-05-08 Thread Jacob Carlborg via Digitalmars-d
On Sunday, 8 May 2016 at 07:18:05 UTC, Walter Bright wrote: __dmd_personality_v0 is in druntime\src\rt\dwarfeh.d, and was added rather recently. So it seems you have a dmd-phobos mismatch. I'm not sure what how your current setup looks like. But on OS X these days we should target clang, lib

Re: dmd not building with dmd

2016-05-08 Thread Steven Schveighoffer via Digitalmars-d
On Sunday, 8 May 2016 at 10:30:06 UTC, Jacob Carlborg wrote: On Sunday, 8 May 2016 at 06:43:38 UTC, Steven Schveighoffer wrote: Undefined symbols for architecture x86_64: "__Unwind_GetIPInfo", referenced from: ___dmd_personality_v0 in libphobos2.a(dwarfeh_5c8_811.o) ld: symbol(s) not f

Re: dmd not building with dmd

2016-05-08 Thread Jacob Carlborg via Digitalmars-d
On Sunday, 8 May 2016 at 06:43:38 UTC, Steven Schveighoffer wrote: Undefined symbols for architecture x86_64: "__Unwind_GetIPInfo", referenced from: ___dmd_personality_v0 in libphobos2.a(dwarfeh_5c8_811.o) ld: symbol(s) not found for architecture x86_64 It's a bug that has been reporte

Re: dmd not building with dmd

2016-05-08 Thread Steven Schveighoffer via Digitalmars-d
On 5/8/16 9:18 AM, Walter Bright wrote: On 5/7/2016 11:43 PM, Steven Schveighoffer wrote: I went to create a PR, and did a git pull on all my repositories. After make clean on OSX, dmd would not build: /Applications/Xcode.app/Contents/Developer/usr/bin/make -C src -f posix.mak no cpu specified,

Re: dmd not building with dmd

2016-05-08 Thread Walter Bright via Digitalmars-d
On 5/7/2016 11:43 PM, Steven Schveighoffer wrote: I went to create a PR, and did a git pull on all my repositories. After make clean on OSX, dmd would not build: /Applications/Xcode.app/Contents/Developer/usr/bin/make -C src -f posix.mak no cpu specified, assuming X86 CC=c++ dmd idgen.d Undefine

dmd not building with dmd

2016-05-07 Thread Steven Schveighoffer via Digitalmars-d
I went to create a PR, and did a git pull on all my repositories. After make clean on OSX, dmd would not build: /Applications/Xcode.app/Contents/Developer/usr/bin/make -C src -f posix.mak no cpu specified, assuming X86 CC=c++ dmd idgen.d Undefined symbols for architecture x86_64: "__Unwind_Get