Bug 3186 – corrections for http://www.digitalmars.com/d/2.0/dmd-osx.html
Status
RESOLVED
Resolution
FIXED
Severity
normal
Priority
P2
Component
dlang.org
Product
D
Version
D2
Platform
Other
OS
Mac OS X
Creation time
2009-07-16T22:53:00Z
Last change time
2015-06-09T01:28:07Z
Assigned to
nobody
Creator
mike.kinney
Comments
Comment #0 by mike.kinney — 2009-07-16T22:53:54Z
Corrections for: http://www.digitalmars.com/d/2.0/dmd-osx.html
1) it still refers to the dmd directory, but all directory references should be dmd2
2) there is no "rdmd", so this line:
chmod u+x dmd/osx/bin/{dmd,dumpobj,obj2asm,rdmd}
should probably be:
chmod u+x dmd2/osx/bin/{dmd,dumpobj,obj2asm}
3) probably have to use "sudo":
cp dmd/osx/bin/dmd.conf /etc
should probably be:
sudo cp dmd2/osx/bin/dmd.conf /etc
4) probably have to use "sudo":
cp dmd/osx/lib/libphobos2.a /usr/lib
should probably be:
sudo cp dmd2/osx/lib/libphobos2.a /usr/lib
5) Cannot find "shell" or "shell.exe" for osx, so this line:
/dmd/bin/shell all.sh
is probably not applicable to osx, or if it is, then all.sh needs to be changed.