2.056 merge update

dsimcha dsimcha at yahoo.com
Thu Dec 8 08:05:11 PST 2011


== Quote from Iain Buclaw (ibuclaw at ubuntu.com)'s article
> I was asked to announce when this would be done.   Well,  it is done.  :)
> If anyone wants linux binaries, give us a shout.   Will be updating to beta
later today.
> Regards,
> Iain.

Since I've learned my lesson about filing build issues as bugs, I'll post one
here.  Here's my (extremely quick, dirty and hard-coded) build script:

rm -rf /var/tmp/gdcStuff
mkdir /var/tmp/gdcStuff
cp -R * /var/tmp/gdcStuff
cd /var/tmp/gdcStuff
hg clone https://bitbucket.org/goshawk/gdc
mkdir gdc/dev
cd gdc/dev
tar -xvf ../../gcc-4.6.1.tar.bz2
cd gcc-4.6.1
ln -s ../../../d gcc/d
./gcc/d/setup-gcc.sh -v2
mkdir objdir
cd objdir
export LD_LIBRARY_PATH=/cis/home/dsimcha/opt/tools/lib:$LD_LIBRARY_PATH
../configure --enable-languages=d --disable-shared \
    --prefix=/gdc --enable-multilib \
    --with-bugurl="https://bitbucket.org/goshawk/gdc/issues" \
    --with-gmp=/cis/home/dsimcha/opt/tools --with-mpfr=/cis/home/dsimcha/opt/tools \
    --with-mpc=/cis/home/dsimcha/opt/tools \
    --enable-checking=release --disable-bootstrap \
    --disable-libgomp --disable-libmudflap
make -j 16 2>&1 | tee build.log
make install DESTDIR=$HOME/apps

When I try to build, I get:

make[2]: *** No rule to make target `d/cppmangle.dmd.o', needed by `cc1d'.  Stop.
make[2]: Leaving directory `/var/tmp/gdcStuff/gdc/dev/gcc-4.6.1/objdir/gcc'


More information about the D.gnu mailing list