GCC4 cross tools: fixes the build with --use-gcc-graphite on another machine
* libsupc++ wasn't required, the build failed on x86_64. * PPL: --disable-maintainer-mode configure option seems not enough to avoid an autoconf launch. Solved by redefined AUTOCONF AUTOHEADER ACLOCAL AUTOMAKE variables to the noop command "true".
This commit is contained in:
@@ -125,7 +125,7 @@ if [ "$HAIKU_USE_GCC_GRAPHITE" = 1 ]; then
|
|||||||
gccConfigureArgs="$gccConfigureArgs --with-cloog=$installDir \
|
gccConfigureArgs="$gccConfigureArgs --with-cloog=$installDir \
|
||||||
--enable-cloog-backend=isl --with-ppl=$installDir \
|
--enable-cloog-backend=isl --with-ppl=$installDir \
|
||||||
--disable-cloog-version-check --with-gmp=$installDir \
|
--disable-cloog-version-check --with-gmp=$installDir \
|
||||||
--with-host-libstdcxx=\"-lstdc++ -lsupc++\""
|
--with-host-libstdcxx=\"-lstdc++\""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# force the POSIX locale, as the build (makeinfo) might choke otherwise
|
# force the POSIX locale, as the build (makeinfo) might choke otherwise
|
||||||
@@ -154,8 +154,8 @@ if [ "$HAIKU_USE_GCC_GRAPHITE" = 1 ]; then
|
|||||||
CFLAGS="-O2" CXXFLAGS="-O2" $pplSourceDir/configure --prefix=$installDir \
|
CFLAGS="-O2" CXXFLAGS="-O2" $pplSourceDir/configure --prefix=$installDir \
|
||||||
--disable-nls --disable-shared --disable-watchdog \
|
--disable-nls --disable-shared --disable-watchdog \
|
||||||
--disable-maintainer-mode || exit 1
|
--disable-maintainer-mode || exit 1
|
||||||
$MAKE $additionalMakeArgs || exit 1
|
$MAKE $additionalMakeArgs AUTOCONF:=true AUTOHEADER:=true ACLOCAL:=true AUTOMAKE:=true || exit 1
|
||||||
$MAKE $additionalMakeArgs install || exit 1
|
$MAKE $additionalMakeArgs install AUTOCONF:=true AUTOHEADER:=true ACLOCAL:=true AUTOMAKE:=true || exit 1
|
||||||
|
|
||||||
# build cloog
|
# build cloog
|
||||||
cd $cloogObjDir
|
cd $cloogObjDir
|
||||||
|
|||||||
Reference in New Issue
Block a user