Thread overview
Where the F*** is phobos on OSX nowadays ?
Aug 11, 2015
deadalnix
Aug 11, 2015
Brad Anderson
Aug 11, 2015
deadalnix
Aug 11, 2015
John Colvin
Aug 11, 2015
Sebastiaan Koppe
Aug 11, 2015
John Colvin
Aug 11, 2015
Jacob Carlborg
Aug 11, 2015
Daniel Kozak
Aug 12, 2015
Jacob Carlborg
Aug 12, 2015
Daniel Kozák
August 11, 2015
And why does it keep moving ? Why isn't it in some place where linker will find it ?

Is that really worth it to have every build system to have to jump through hoops to find it, and to break it on a regular basis ?
August 11, 2015
On Tuesday, 11 August 2015 at 04:51:03 UTC, deadalnix wrote:
> And why does it keep moving ? Why isn't it in some place where linker will find it ?
>
> Is that really worth it to have every build system to have to jump through hoops to find it, and to break it on a regular basis ?

The problem, as usual, is Apple just breaking things willy nilly.

https://issues.dlang.org/show_bug.cgi?id=14801

Say what you will about Microsoft but at least with them you don't have to fix a handful of new bugs with every minor OS or IDE upgrade.
August 11, 2015
On Tuesday, 11 August 2015 at 04:51:03 UTC, deadalnix wrote:
> And why does it keep moving ? Why isn't it in some place where linker will find it ?
>
> Is that really worth it to have every build system to have to jump through hoops to find it, and to break it on a regular basis ?

well if you're sane, then you had homebrew install it to /usr/local/lib/ and /usr/local/include/d2/

:p
August 11, 2015
On Tuesday, 11 August 2015 at 08:01:53 UTC, John Colvin wrote:
> On Tuesday, 11 August 2015 at 04:51:03 UTC, deadalnix wrote:
>> And why does it keep moving ? Why isn't it in some place where linker will find it ?
>>
>> Is that really worth it to have every build system to have to jump through hoops to find it, and to break it on a regular basis ?
>
> well if you're sane, then you had homebrew install it to /usr/local/lib/ and /usr/local/include/d2/
>
> :p

Does homebrew install to those folders by default?
August 11, 2015
On Tuesday, 11 August 2015 at 16:12:12 UTC, Sebastiaan Koppe wrote:
> On Tuesday, 11 August 2015 at 08:01:53 UTC, John Colvin wrote:
>> On Tuesday, 11 August 2015 at 04:51:03 UTC, deadalnix wrote:
>>> And why does it keep moving ? Why isn't it in some place where linker will find it ?
>>>
>>> Is that really worth it to have every build system to have to jump through hoops to find it, and to break it on a regular basis ?
>>
>> well if you're sane, then you had homebrew install it to /usr/local/lib/ and /usr/local/include/d2/
>>
>> :p
>
> Does homebrew install to those folders by default?

yes
August 11, 2015
On 2015-08-11 10:01, John Colvin wrote:

> well if you're sane, then you had homebrew install it to /usr/local/lib/
> and /usr/local/include/d2/

If you're sane you'll be using DVM ;)

-- 
/Jacob Carlborg
August 11, 2015
Not at all, I am using dvm and I like it. But OTOH it makes things sometimes wierd. My common habit is to do something like this: dmd somefile && ./somefile. But without dvm I use latest (current installed vesion of dmd) but with dvm I use last setup vesion. And often I do not know which version of dmd I am using.


Jacob Carlborg via Digitalmars-d <digitalmars-d@puremagic.com> napsal Út, srp 11, 2015 v 11∶04 :
> On 2015-08-11 10:01, John Colvin wrote:
> 
>> well if you're sane, then you had homebrew install it to
>> /usr/local/lib/
>> and /usr/local/include/d2/
> 
> If you're sane you'll be using DVM ;)
> 
> --
> /Jacob Carlborg


August 11, 2015
On Tuesday, 11 August 2015 at 05:40:01 UTC, Brad Anderson wrote:
> On Tuesday, 11 August 2015 at 04:51:03 UTC, deadalnix wrote:
>> And why does it keep moving ? Why isn't it in some place where linker will find it ?
>>
>> Is that really worth it to have every build system to have to jump through hoops to find it, and to break it on a regular basis ?
>
> The problem, as usual, is Apple just breaking things willy nilly.
>
> https://issues.dlang.org/show_bug.cgi?id=14801
>
> Say what you will about Microsoft but at least with them you don't have to fix a handful of new bugs with every minor OS or IDE upgrade.

Slow clap...

August 12, 2015
On 2015-08-11 23:55, Daniel Kozak via Digitalmars-d wrote:
> Not at all, I am using dvm and I like it. But OTOH it makes things
> sometimes wierd. My common habit is to do something like this:
> dmd somefile && ./somefile. But without dvm I use latest (current
> installed vesion of dmd) but with dvm I use last setup vesion. And often
> I do not know which version of dmd I am using.

Not sure I understand the problem.

-- 
/Jacob Carlborg
August 12, 2015
On Wed, 12 Aug 2015 11:16:55 +0200
Jacob Carlborg <doob@me.com> wrote:

> On 2015-08-11 23:55, Daniel Kozak via Digitalmars-d wrote:
> > Not at all, I am using dvm and I like it. But OTOH it makes things sometimes wierd. My common habit is to do something like this: dmd somefile && ./somefile. But without dvm I use latest (current installed vesion of dmd) but with dvm I use last setup vesion. And often I do not know which version of dmd I am using.
> 
> Not sure I understand the problem.
> 

Ok, I find out whats wrong. I use -d parameter. So it was my fault.