diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2012-11-29 19:15:43 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2012-11-29 11:15:43 -0800 |
commit | a23ed040bbd828f7ce578ec0dc510ee0a5197a50 (patch) | |
tree | d21d7681a82c47211119edbe74cfe5a34f900786 /libsanitizer/Makefile.in | |
parent | 99319980d372262c0ee79ca2eaef470e4621aed6 (diff) | |
download | gcc-a23ed040bbd828f7ce578ec0dc510ee0a5197a50.zip gcc-a23ed040bbd828f7ce578ec0dc510ee0a5197a50.tar.gz gcc-a23ed040bbd828f7ce578ec0dc510ee0a5197a50.tar.bz2 |
Don't use -I for libstdc++-v3 header files
* Makefile.am (AM_MAKEFLAGS): Restore CC and CXX.
* configure.ac (ACX_NONCANONICAL_TARGET): Removed.
* asan/Makefile.am (AM_CXXFLAGS): Remove -I for libstdc++-v3 header
files.
(AM_MAKEFLAGS): Restore CC and CXX.
* interception/Makefile.am: Likewise.
* sanitizer_common/Makefile.am: Likewise.
* tsan/Makefile.am: Likewise.
* Makefile.in: Regenerated.
* aclocal.m4: Likewise.
* configure: Likewise.
* asan/Makefile.in: Likewise.
* interception/Makefile.in: Likewise.
* sanitizer_common/Makefile.in: Likewise.
* tsan/Makefile.in: Likewise.
From-SVN: r193951
Diffstat (limited to 'libsanitizer/Makefile.in')
-rw-r--r-- | libsanitizer/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libsanitizer/Makefile.in b/libsanitizer/Makefile.in index 53e0be9..21c2711 100644 --- a/libsanitizer/Makefile.in +++ b/libsanitizer/Makefile.in @@ -41,8 +41,7 @@ DIST_COMMON = $(am__configure_deps) $(srcdir)/../config.guess \ $(srcdir)/../mkinstalldirs $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(top_srcdir)/configure ChangeLog ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \ - $(top_srcdir)/../config/depstand.m4 \ +am__aclocal_m4_deps = $(top_srcdir)/../config/depstand.m4 \ $(top_srcdir)/../config/lead-dot.m4 \ $(top_srcdir)/../config/multi.m4 \ $(top_srcdir)/../config/override.m4 \ @@ -237,7 +236,6 @@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ -target_noncanonical = @target_noncanonical@ target_os = @target_os@ target_vendor = @target_vendor@ toolexecdir = @toolexecdir@ @@ -280,6 +278,8 @@ AM_MAKEFLAGS = \ "includedir=$(includedir)" \ "AR=$(AR)" \ "AS=$(AS)" \ + "CC=$(CC)" \ + "CXX=$(CXX)" \ "LD=$(LD)" \ "LIBCFLAGS=$(LIBCFLAGS)" \ "NM=$(NM)" \ |