[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Bug-glpk] GLPK (4.47) fails to build with LTO (GCC 4.6.3, '-flto')
From: |
Andrew Makhorin |
Subject: |
Re: [Bug-glpk] GLPK (4.47) fails to build with LTO (GCC 4.6.3, '-flto') |
Date: |
Sat, 17 Mar 2012 15:05:30 +0300 |
> Most likely the error is caused by autotools, so regenerating configure
> and makefiles with a newer version of autotools may resolve the problem
> (I used autoconf-2.65 and automake-1.11.1 released about 3 years ago).
>
I used the following commands to generate the configure script and
Makefiles from comfigure.ac and Makefile.am (if this may help):
cd $PACKAGE
echo "Executing libtoolize..."
libtoolize -c -f
echo "Executing aclocal..."
aclocal-1.11 -I m4
echo "Executing autoconf..."
autoconf
### echo "Executing autoheader..."
### autoheader
echo "Executing automake..."
automake-1.11 -c -a
cd ..