On 25 March 2013 13:37, Christophe Lyon <christophe.l...@linaro.org> wrote:

> Sorry, I have no idea at the moment.
> Which sources are you using? Could you check from a GCC release known
> to build? (although even trunk is supposed to build correctly)
>

Trunk at some time a few weeks ago. :/ (commit
5f9b0c453c2e426afe451c003daa000cbc3174a4)

+2013-03-13  Paolo Carlini  <paolo.carl...@oracle.com>
+
+       * g++.dg/cpp0x/alias-decl-32.C: Remove redundant bits.
+

If that helps anything...

I don't think the source is broken... My script to build is attached.

cheers,
--renato
sudo apt-get build-dep gcc-4.7

export src_dir=~/devel/gcc/src
export build_dir=~/devel/gcc/build
mkdir -p ${build_dir}/install
mkdir -p ${build_dir}/objs

cd ${src_dir}/..
git clone git://gcc.gnu.org/git/gcc.git src

cd ${src_dir}
./contrib/gcc_update --touch
./contrib/download_prerequisites
export target=`./config.guess`

cd ${build_dir}/objs
export dpkg_arch=`dpkg-architecture -qDEB_HOST_MULTIARCH`
export LIBRARY_PATH=/usr/lib/${dpkg_arch}

${src_dir}/configure \
  --target=${target} --host=${target} --build=${target} \
  --prefix=${build_dir}/install \
  --enable-languages=c,c++,fortran \

export parallelism="-j2 -l2"
make ${parallelism} && echo Success
make ${parallelism} install && echo Success
make ${parallelism} -k check

_______________________________________________
linaro-toolchain mailing list
linaro-toolchain@lists.linaro.org
http://lists.linaro.org/mailman/listinfo/linaro-toolchain

Reply via email to