diff options
author | Diego Novillo <dnovillo@google.com> | 2009-05-06 14:13:40 -0400 |
---|---|---|
committer | Diego Novillo <dnovillo@gcc.gnu.org> | 2009-05-06 14:13:40 -0400 |
commit | cb079a4db3ca5b1b59b16ab723eab74c3cd91588 (patch) | |
tree | f895a2aa19e49f84ea230d0d021a2389eb629094 | |
parent | 5416e9bec1c0e13c4c7c5e70d1db904432877fcb (diff) | |
download | gcc-cb079a4db3ca5b1b59b16ab723eab74c3cd91588.zip gcc-cb079a4db3ca5b1b59b16ab723eab74c3cd91588.tar.gz gcc-cb079a4db3ca5b1b59b16ab723eab74c3cd91588.tar.bz2 |
plugin-support.exp: Do not prefix $GMPINC with -I.
* lib/plugin-support.exp: Do not prefix $GMPINC with -I.
From-SVN: r147197
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/lib/plugin-support.exp | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 5075dff..3764a27 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2009-05-06 Diego Novillo <dnovillo@google.com> + + * lib/plugin-support.exp: Do not prefix $GMPINC with -I. + 2009-05-06 H.J. Lu <hongjiu.lu@intel.com> * gfortran.dg/pr40021.f: Moved to ... diff --git a/gcc/testsuite/lib/plugin-support.exp b/gcc/testsuite/lib/plugin-support.exp index f9017bb..0a548f7 100644 --- a/gcc/testsuite/lib/plugin-support.exp +++ b/gcc/testsuite/lib/plugin-support.exp @@ -82,7 +82,7 @@ proc plugin-test-execute { plugin_src plugin_tests } { set gcc_objdir "$objdir/../../.." set includes "-I. -I${srcdir} -I${gcc_srcdir}/gcc -I${gcc_objdir}/gcc \ -I${gcc_srcdir}/include -I${gcc_srcdir}/libcpp/include \ - -I$GMPINC" + $GMPINC" set optstr "$includes $extra_flags -DIN_GCC -fPIC -shared" |