mirror of git://gcc.gnu.org/git/gcc.git
re PR tree-optimization/38515 (Disabling PPL/CLOOG with configure does not work)
2009-01-12 Sebastian Pop <sebastian.pop@amd.com> PR tree-optimization/38515 * configure.ac (cloog-polylib): Removed. (with_ppl, with_cloog): Test for "no". * configure: Regenerated. From-SVN: r143311
This commit is contained in:
parent
31ca3fa447
commit
53095c5686
|
@ -1,3 +1,10 @@
|
|||
2009-01-12 Sebastian Pop <sebastian.pop@amd.com>
|
||||
|
||||
PR tree-optimization/38515
|
||||
* configure.ac (cloog-polylib): Removed.
|
||||
(with_ppl, with_cloog): Test for "no".
|
||||
* configure: Regenerated.
|
||||
|
||||
2009-01-11 Daniel Franke <franke.daniel@gmail.com>
|
||||
|
||||
* MAINTAINERS: Moved myself to reviewers (Fortran).
|
||||
|
|
|
@ -979,7 +979,6 @@ Optional Packages:
|
|||
plus --with-cloog-lib=PATH/lib
|
||||
--with-cloog-include=PATH Specify directory for installed CLooG include files
|
||||
--with-cloog-lib=PATH Specify the directory for the installed CLooG library
|
||||
--with-cloog-polylib=PATH Specify prefix directory for the installed CLooG-PolyLib package
|
||||
--with-build-sysroot=SYSROOT
|
||||
use sysroot as the system root during the build
|
||||
--with-debug-prefix-map='A=B C=D ...'
|
||||
|
@ -4831,11 +4830,16 @@ if test "${with_ppl_lib+set}" = set; then
|
|||
|
||||
fi;
|
||||
|
||||
if test "x$with_ppl" != x; then
|
||||
case $with_ppl in
|
||||
no)
|
||||
ppllibs=
|
||||
;;
|
||||
*)
|
||||
ppllibs="-L$with_ppl/lib -lppl_c -lppl -lgmpxx"
|
||||
pplinc="-I$with_ppl/include $pplinc"
|
||||
LIBS="$ppllibs $LIBS"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
if test "x$with_ppl_include" != x; then
|
||||
pplinc="-I$with_ppl_include $pplinc"
|
||||
fi
|
||||
|
@ -4944,22 +4948,17 @@ if test "${with_cloog_lib+set}" = set; then
|
|||
|
||||
fi;
|
||||
|
||||
# Check whether --with-cloog-polylib or --without-cloog-polylib was given.
|
||||
if test "${with_cloog_polylib+set}" = set; then
|
||||
withval="$with_cloog_polylib"
|
||||
|
||||
fi;
|
||||
|
||||
if test "x$with_cloog" != x; then
|
||||
case $with_cloog in
|
||||
no)
|
||||
clooglibs=
|
||||
clooginc=
|
||||
;;
|
||||
*)
|
||||
clooglibs="-L$with_cloog/lib -lcloog"
|
||||
clooginc="-I$with_cloog/include -DCLOOG_PPL_BACKEND "
|
||||
LIBS="$clooglibs $LIBS"
|
||||
fi
|
||||
if test "x$with_cloog_polylib" != x; then
|
||||
clooglibs="-L$with_cloog/lib -lcloog"
|
||||
clooginc="-I$with_cloog/include "
|
||||
LIBS="$clooglibs $LIBS"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
if test "x$with_cloog_include" != x; then
|
||||
clooginc="-I$with_cloog_include -DCLOOG_PPL_BACKEND "
|
||||
fi
|
||||
|
|
25
configure.ac
25
configure.ac
|
@ -1324,11 +1324,16 @@ AC_ARG_WITH(ppl, [ --with-ppl=PATH Specify prefix directory for the ins
|
|||
AC_ARG_WITH(ppl_include, [ --with-ppl-include=PATH Specify directory for installed PPL include files])
|
||||
AC_ARG_WITH(ppl_lib, [ --with-ppl-lib=PATH Specify the directory for the installed PPL library])
|
||||
|
||||
if test "x$with_ppl" != x; then
|
||||
case $with_ppl in
|
||||
no)
|
||||
ppllibs=
|
||||
;;
|
||||
*)
|
||||
ppllibs="-L$with_ppl/lib -lppl_c -lppl -lgmpxx"
|
||||
pplinc="-I$with_ppl/include $pplinc"
|
||||
LIBS="$ppllibs $LIBS"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
if test "x$with_ppl_include" != x; then
|
||||
pplinc="-I$with_ppl_include $pplinc"
|
||||
fi
|
||||
|
@ -1373,18 +1378,18 @@ AC_ARG_WITH(cloog, [ --with-cloog=PATH Specify prefix directory for the i
|
|||
plus --with-cloog-lib=PATH/lib])
|
||||
AC_ARG_WITH(cloog_include, [ --with-cloog-include=PATH Specify directory for installed CLooG include files])
|
||||
AC_ARG_WITH(cloog_lib, [ --with-cloog-lib=PATH Specify the directory for the installed CLooG library])
|
||||
AC_ARG_WITH(cloog-polylib, [ --with-cloog-polylib=PATH Specify prefix directory for the installed CLooG-PolyLib package])
|
||||
|
||||
if test "x$with_cloog" != x; then
|
||||
case $with_cloog in
|
||||
no)
|
||||
clooglibs=
|
||||
clooginc=
|
||||
;;
|
||||
*)
|
||||
clooglibs="-L$with_cloog/lib -lcloog"
|
||||
clooginc="-I$with_cloog/include -DCLOOG_PPL_BACKEND "
|
||||
LIBS="$clooglibs $LIBS"
|
||||
fi
|
||||
if test "x$with_cloog_polylib" != x; then
|
||||
clooglibs="-L$with_cloog/lib -lcloog"
|
||||
clooginc="-I$with_cloog/include "
|
||||
LIBS="$clooglibs $LIBS"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
if test "x$with_cloog_include" != x; then
|
||||
clooginc="-I$with_cloog_include -DCLOOG_PPL_BACKEND "
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue