www.digitalmars.com         C & C++   DMDScript  

digitalmars.D - what does it take to build DMD on linux?

reply BCS <none anon.com> writes:
I'm working on setting up a machine to do automated builds of DMD and I'm 
wondering what packages it will take to do it. A this point I don't even 
have GCC installed.

If someone has a list of what I need to apt-get I'd appreciate not having 
to sort it out by hand. It's slightly confused because it's a IA64 box and 
I'd rather build x86-32 DMD binaries (at last till the 64-bit version is 
stable).

So anyone have the list handy?

-- 
... <IXOYE><
Sep 13 2010
next sibling parent reply Walter Bright <newshound2 digitalmars.com> writes:
BCS wrote:
 If someone has a list of what I need to apt-get I'd appreciate not 
 having to sort it out by hand. It's slightly confused because it's a 
 IA64 box and I'd rather build x86-32 DMD binaries (at last till the 
 64-bit version is stable).
 
 So anyone have the list handy?
sudo apt-get install gcc-multilib g++-multilib libc6-i386 lib6-dev-i386
Sep 13 2010
parent BCS <none anon.com> writes:
Hello Walter,

 sudo apt-get install gcc-multilib g++-multilib libc6-i386
 lib6-dev-i386
 
Thanks. Nice: http://www.digitalmars.com/d/2.0/dmd-linux.html (haven't looked at those pages in some time :) -- ... <IXOYE><
Sep 14 2010
prev sibling parent reply Brad Roberts <braddr slice-2.puremagic.com> writes:
On Tue, 14 Sep 2010, BCS wrote:

 I'm working on setting up a machine to do automated builds of DMD and I'm
 wondering what packages it will take to do it. A this point I don't even have
 GCC installed.
 
 If someone has a list of what I need to apt-get I'd appreciate not having to
 sort it out by hand. It's slightly confused because it's a IA64 box and I'd
 rather build x86-32 DMD binaries (at last till the 64-bit version is stable).
 
 So anyone have the list handy?
Walter already answered the base question, but I figured I could also point you to: http://d.puremagic.com/test-results/ Automated builds are being done. :) It's awfully crude, but it doesn't take a lot to be effective. Later, Brad
Sep 13 2010
parent BCS <none anon.com> writes:
Hello Brad,

 On Tue, 14 Sep 2010, BCS wrote:
 
 I'm working on setting up a machine to do automated builds of DMD and
 I'm wondering what packages it will take to do it. A this point I
 don't even have GCC installed.
 
 If someone has a list of what I need to apt-get I'd appreciate not
 having to sort it out by hand. It's slightly confused because it's a
 IA64 box and I'd rather build x86-32 DMD binaries (at last till the
 64-bit version is stable).
 
 So anyone have the list handy?
 
Walter already answered the base question, but I figured I could also point you to: http://d.puremagic.com/test-results/ Automated builds are being done. :)
I'm working on a slighy more elaorate system. Easy to add tests (without access to DMD or Phobos reps) the ability to run new test on old vertions (WhenTF did that break?!) better than 1hr resolution and whatever else I can think of.
 It's awfully crude, but it doesn't take a lot to be effective.
I'm hopeing for not so cure.
 Later,
 Brad
-- ... <IXOYE><
Sep 13 2010