diff options
author | Martin Liska <mliska@suse.cz> | 2018-10-31 12:15:57 +0100 |
---|---|---|
committer | Martin Liska <marxin@gcc.gnu.org> | 2018-10-31 11:15:57 +0000 |
commit | 8468f94425979ede4f7ae165b280748d99b2b981 (patch) | |
tree | 8dd65dde19b30378f696f41b5a8b72b291da7b02 /libsanitizer/ubsan | |
parent | eac975312214dccb9d425b3e8d0b93e85c11ddf4 (diff) | |
download | gcc-8468f94425979ede4f7ae165b280748d99b2b981.zip gcc-8468f94425979ede4f7ae165b280748d99b2b981.tar.gz gcc-8468f94425979ede4f7ae165b280748d99b2b981.tar.bz2 |
Update build system: include new files and run autoheader, autoconf, automake
2018-10-31 Martin Liska <mliska@suse.cz>
* config.h.in: Regenerate.
* configure: Likewise.
* sanitizer_common/Makefile.am: Include new files, remove old
files.
* sanitizer_common/Makefile.in: Regenerate.
* ubsan/Makefile.am: Include new files, remove old
files.
* ubsan/Makefile.in: Likewise.
* asan/Makefile.am: Include new files.
* asan/Makefile.in: Regenerate.
From-SVN: r265666
Diffstat (limited to 'libsanitizer/ubsan')
-rw-r--r-- | libsanitizer/ubsan/Makefile.am | 1 | ||||
-rw-r--r-- | libsanitizer/ubsan/Makefile.in | 8 |
2 files changed, 6 insertions, 3 deletions
diff --git a/libsanitizer/ubsan/Makefile.am b/libsanitizer/ubsan/Makefile.am index 2bff6be..1f924f8 100644 --- a/libsanitizer/ubsan/Makefile.am +++ b/libsanitizer/ubsan/Makefile.am @@ -18,6 +18,7 @@ ubsan_plugin_files = \ ubsan_handlers.cc \ ubsan_handlers_cxx.cc \ ubsan_init.cc \ + ubsan_monitor.cc \ ubsan_type_hash.cc \ ubsan_type_hash_itanium.cc \ ubsan_type_hash_win.cc \ diff --git a/libsanitizer/ubsan/Makefile.in b/libsanitizer/ubsan/Makefile.in index d75260f..320d4d7 100644 --- a/libsanitizer/ubsan/Makefile.in +++ b/libsanitizer/ubsan/Makefile.in @@ -109,9 +109,9 @@ libubsan_la_DEPENDENCIES = \ $(top_builddir)/sanitizer_common/libsanitizer_common.la \ $(am__append_1) $(am__append_2) $(am__DEPENDENCIES_1) am__objects_1 = ubsan_diag.lo ubsan_flags.lo ubsan_handlers.lo \ - ubsan_handlers_cxx.lo ubsan_init.lo ubsan_type_hash.lo \ - ubsan_type_hash_itanium.lo ubsan_type_hash_win.lo \ - ubsan_value.lo + ubsan_handlers_cxx.lo ubsan_init.lo ubsan_monitor.lo \ + ubsan_type_hash.lo ubsan_type_hash_itanium.lo \ + ubsan_type_hash_win.lo ubsan_value.lo am__objects_2 = $(am__objects_1) am_libubsan_la_OBJECTS = $(am__objects_2) libubsan_la_OBJECTS = $(am_libubsan_la_OBJECTS) @@ -304,6 +304,7 @@ ubsan_plugin_files = \ ubsan_handlers.cc \ ubsan_handlers_cxx.cc \ ubsan_init.cc \ + ubsan_monitor.cc \ ubsan_type_hash.cc \ ubsan_type_hash_itanium.cc \ ubsan_type_hash_win.cc \ @@ -435,6 +436,7 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ubsan_handlers.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ubsan_handlers_cxx.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ubsan_init.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ubsan_monitor.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ubsan_type_hash.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ubsan_type_hash_itanium.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ubsan_type_hash_win.Plo@am__quote@ |