Commit 4f148bbc by Jakub Jelinek Committed by Jakub Jelinek

re PR sanitizer/56781 (boostrap-asan failure: fixincl fails to link (missing -lasan))

	PR sanitizer/56781
lto-plugin/
	* Makefile.am (CFLAGS, LDFLAGS): Filter out -fsanitize=address.
	(liblto_plugin_la_LIBADD, liblto_plugin_la_LDFLAGS,
	liblto_plugin_la_DEPENDENCIES): Prefer ../libiberty/noasan/libiberty.a
	over ../libiberty/pic/libiberty.a if the former exists.
	* Makefile.in: Regenerated.
libiberty/
	* maint-tool: Also emit rule for noasan/ subdirectory.
	* configure.ac (NOASANFLAG): Set and substitute.
	* Makefile.in: Regenerated.
	(NOASANFLAG): Set.
	(all, $(TARGETLIB), mostlyclean): Handle noasan subdir like pic
	subdir.
	(stamp-noasandir): New goal.
	* configure: Regenerated.

From-SVN: r209476
parent ffe7f7a7
2014-04-17 Jakub Jelinek <jakub@redhat.com>
PR sanitizer/56781
* maint-tool: Also emit rule for noasan/ subdirectory.
* configure.ac (NOASANFLAG): Set and substitute.
* Makefile.in: Regenerated.
(NOASANFLAG): Set.
(all, $(TARGETLIB), mostlyclean): Handle noasan subdir like pic
subdir.
(stamp-noasandir): New goal.
* configure: Regenerated.
2014-04-01 Richard Biener <rguenther@suse.de> 2014-04-01 Richard Biener <rguenther@suse.de>
* simple-object.c (simple_object_internal_write): Handle * simple-object.c (simple_object_internal_write): Handle
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
# Originally written by K. Richard Pixley <rich@cygnus.com>. # Originally written by K. Richard Pixley <rich@cygnus.com>.
# #
# Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, # Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
# 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 # 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
# Free Software Foundation # 2012, 2014 Free Software Foundation
# #
# This file is part of the libiberty library. # This file is part of the libiberty library.
# Libiberty is free software; you can redistribute it and/or # Libiberty is free software; you can redistribute it and/or
...@@ -62,6 +62,7 @@ MAKEINFO = @MAKEINFO@ ...@@ -62,6 +62,7 @@ MAKEINFO = @MAKEINFO@
PERL = @PERL@ PERL = @PERL@
PICFLAG = @PICFLAG@ PICFLAG = @PICFLAG@
NOASANFLAG = @NOASANFLAG@
MAKEOVERRIDES = MAKEOVERRIDES =
...@@ -101,7 +102,7 @@ FLAGS_TO_PASS = \ ...@@ -101,7 +102,7 @@ FLAGS_TO_PASS = \
SUBDIRS = testsuite SUBDIRS = testsuite
# FIXME: add @BUILD_INFO@ once we're sure it works for everyone. # FIXME: add @BUILD_INFO@ once we're sure it works for everyone.
all: stamp-picdir $(TARGETLIB) required-list all-subdir all: stamp-picdir stamp-noasandir $(TARGETLIB) required-list all-subdir
@: $(MAKE) ; $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all @: $(MAKE) ; $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all
.PHONY: check installcheck .PHONY: check installcheck
...@@ -241,7 +242,7 @@ INSTALLED_HEADERS = \ ...@@ -241,7 +242,7 @@ INSTALLED_HEADERS = \
$(INCDIR)/timeval-utils.h $(INCDIR)/timeval-utils.h
$(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS)
-rm -f $(TARGETLIB) pic/$(TARGETLIB) -rm -f $(TARGETLIB) pic/$(TARGETLIB) noasan/$(TARGETLIB)
$(AR) $(AR_FLAGS) $(TARGETLIB) \ $(AR) $(AR_FLAGS) $(TARGETLIB) \
$(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS)
$(RANLIB) $(TARGETLIB) $(RANLIB) $(TARGETLIB)
...@@ -251,6 +252,13 @@ $(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) ...@@ -251,6 +252,13 @@ $(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS)
$(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS); \ $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS); \
$(RANLIB) $(TARGETLIB); \ $(RANLIB) $(TARGETLIB); \
cd ..; \ cd ..; \
else true; fi; \
if [ x"$(NOASANFLAG)" != x ]; then \
cd noasan; \
$(AR) $(AR_FLAGS) $(TARGETLIB) \
$(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS); \
$(RANLIB) $(TARGETLIB); \
cd ..; \
else true; fi else true; fi
$(TESTLIB): $(REQUIRED_OFILES) $(CONFIGURED_OFILES) $(TESTLIB): $(REQUIRED_OFILES) $(CONFIGURED_OFILES)
...@@ -389,6 +397,12 @@ stamp-picdir: ...@@ -389,6 +397,12 @@ stamp-picdir:
else true; fi else true; fi
touch stamp-picdir touch stamp-picdir
stamp-noasandir:
if [ x"$(NOASANFLAG)" != x ] && [ ! -d noasan ]; then \
mkdir noasan; \
else true; fi
touch stamp-noasandir
.PHONY: all etags tags ls clean stage1 stage2 .PHONY: all etags tags ls clean stage1 stage2
etags tags: TAGS etags-subdir etags tags: TAGS etags-subdir
...@@ -426,9 +440,9 @@ maint-deps : ...@@ -426,9 +440,9 @@ maint-deps :
# Cleaning has to be done carefully to ensure that we don't clean our SUBDIRS # Cleaning has to be done carefully to ensure that we don't clean our SUBDIRS
# multiple times, hence our explicit recursion with an empty SUBDIRS. # multiple times, hence our explicit recursion with an empty SUBDIRS.
mostlyclean: mostlyclean-subdir mostlyclean: mostlyclean-subdir
-rm -rf *.$(objext) pic core errs \#* *.E a.out -rm -rf *.$(objext) pic noasan core errs \#* *.E a.out
-rm -f errors dummy config.h stamp-* -rm -f errors dummy config.h stamp-*
-rm -f $(CONFIG_H) stamp-picdir -rm -f $(CONFIG_H) stamp-picdir stamp-noasandir
-rm -f libiberty.aux libiberty.cp libiberty.cps libiberty.fn libiberty.ky -rm -f libiberty.aux libiberty.cp libiberty.cps libiberty.fn libiberty.ky
-rm -f libiberty.log libiberty.tmp libiberty.tps libiberty.pg -rm -f libiberty.log libiberty.tmp libiberty.tps libiberty.pg
-rm -f libiberty.pgs libiberty.toc libiberty.tp libiberty.tpl libiberty.vr -rm -f libiberty.pgs libiberty.toc libiberty.tp libiberty.tpl libiberty.vr
...@@ -485,8 +499,8 @@ maintainer-clean-subdir: config.h ...@@ -485,8 +499,8 @@ maintainer-clean-subdir: config.h
cd $$dir && $(MAKE) $(FLAGS_TO_PASS) $$target; \ cd $$dir && $(MAKE) $(FLAGS_TO_PASS) $$target; \
done done
$(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS): stamp-picdir $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS): stamp-picdir stamp-noasandir
$(CONFIGURED_OFILES): stamp-picdir $(CONFIGURED_OFILES): stamp-picdir stamp-noasandir
# Don't export variables to the environment, in order to not confuse # Don't export variables to the environment, in order to not confuse
# configure. # configure.
...@@ -500,6 +514,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -500,6 +514,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/_doprnt.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/_doprnt.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/_doprnt.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/_doprnt.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/_doprnt.c $(OUTPUT_OPTION)
./alloca.$(objext): $(srcdir)/alloca.c config.h $(INCDIR)/ansidecl.h \ ./alloca.$(objext): $(srcdir)/alloca.c config.h $(INCDIR)/ansidecl.h \
...@@ -507,6 +524,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -507,6 +524,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/alloca.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/alloca.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/alloca.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/alloca.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/alloca.c $(OUTPUT_OPTION)
./argv.$(objext): $(srcdir)/argv.c config.h $(INCDIR)/ansidecl.h \ ./argv.$(objext): $(srcdir)/argv.c config.h $(INCDIR)/ansidecl.h \
...@@ -514,6 +534,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -514,6 +534,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/argv.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/argv.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/argv.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/argv.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/argv.c $(OUTPUT_OPTION)
./asprintf.$(objext): $(srcdir)/asprintf.c config.h $(INCDIR)/ansidecl.h \ ./asprintf.$(objext): $(srcdir)/asprintf.c config.h $(INCDIR)/ansidecl.h \
...@@ -521,12 +544,18 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -521,12 +544,18 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/asprintf.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/asprintf.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/asprintf.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/asprintf.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/asprintf.c $(OUTPUT_OPTION)
./atexit.$(objext): $(srcdir)/atexit.c config.h ./atexit.$(objext): $(srcdir)/atexit.c config.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/atexit.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/atexit.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/atexit.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/atexit.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/atexit.c $(OUTPUT_OPTION)
./basename.$(objext): $(srcdir)/basename.c config.h $(INCDIR)/ansidecl.h \ ./basename.$(objext): $(srcdir)/basename.c config.h $(INCDIR)/ansidecl.h \
...@@ -534,36 +563,54 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -534,36 +563,54 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/basename.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/basename.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/basename.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/basename.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/basename.c $(OUTPUT_OPTION)
./bcmp.$(objext): $(srcdir)/bcmp.c ./bcmp.$(objext): $(srcdir)/bcmp.c
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/bcmp.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/bcmp.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/bcmp.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/bcmp.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/bcmp.c $(OUTPUT_OPTION)
./bcopy.$(objext): $(srcdir)/bcopy.c ./bcopy.$(objext): $(srcdir)/bcopy.c
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/bcopy.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/bcopy.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/bcopy.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/bcopy.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/bcopy.c $(OUTPUT_OPTION)
./bsearch.$(objext): $(srcdir)/bsearch.c config.h $(INCDIR)/ansidecl.h ./bsearch.$(objext): $(srcdir)/bsearch.c config.h $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/bsearch.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/bsearch.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/bsearch.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/bsearch.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/bsearch.c $(OUTPUT_OPTION)
./bzero.$(objext): $(srcdir)/bzero.c ./bzero.$(objext): $(srcdir)/bzero.c
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/bzero.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/bzero.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/bzero.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/bzero.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/bzero.c $(OUTPUT_OPTION)
./calloc.$(objext): $(srcdir)/calloc.c $(INCDIR)/ansidecl.h ./calloc.$(objext): $(srcdir)/calloc.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/calloc.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/calloc.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/calloc.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/calloc.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/calloc.c $(OUTPUT_OPTION)
./choose-temp.$(objext): $(srcdir)/choose-temp.c config.h $(INCDIR)/ansidecl.h \ ./choose-temp.$(objext): $(srcdir)/choose-temp.c config.h $(INCDIR)/ansidecl.h \
...@@ -571,12 +618,18 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -571,12 +618,18 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/choose-temp.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/choose-temp.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/choose-temp.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/choose-temp.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/choose-temp.c $(OUTPUT_OPTION)
./clock.$(objext): $(srcdir)/clock.c config.h ./clock.$(objext): $(srcdir)/clock.c config.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/clock.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/clock.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/clock.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/clock.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/clock.c $(OUTPUT_OPTION)
./concat.$(objext): $(srcdir)/concat.c config.h $(INCDIR)/ansidecl.h \ ./concat.$(objext): $(srcdir)/concat.c config.h $(INCDIR)/ansidecl.h \
...@@ -584,12 +637,18 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -584,12 +637,18 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/concat.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/concat.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/concat.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/concat.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/concat.c $(OUTPUT_OPTION)
./copysign.$(objext): $(srcdir)/copysign.c $(INCDIR)/ansidecl.h ./copysign.$(objext): $(srcdir)/copysign.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/copysign.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/copysign.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/copysign.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/copysign.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/copysign.c $(OUTPUT_OPTION)
./cp-demangle.$(objext): $(srcdir)/cp-demangle.c config.h $(INCDIR)/ansidecl.h \ ./cp-demangle.$(objext): $(srcdir)/cp-demangle.c config.h $(INCDIR)/ansidecl.h \
...@@ -598,6 +657,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -598,6 +657,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/cp-demangle.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/cp-demangle.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/cp-demangle.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/cp-demangle.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/cp-demangle.c $(OUTPUT_OPTION)
./cp-demint.$(objext): $(srcdir)/cp-demint.c config.h $(INCDIR)/ansidecl.h \ ./cp-demint.$(objext): $(srcdir)/cp-demint.c config.h $(INCDIR)/ansidecl.h \
...@@ -606,6 +668,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -606,6 +668,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/cp-demint.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/cp-demint.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/cp-demint.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/cp-demint.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/cp-demint.c $(OUTPUT_OPTION)
./cplus-dem.$(objext): $(srcdir)/cplus-dem.c config.h $(INCDIR)/ansidecl.h \ ./cplus-dem.$(objext): $(srcdir)/cplus-dem.c config.h $(INCDIR)/ansidecl.h \
...@@ -614,6 +679,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -614,6 +679,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/cplus-dem.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/cplus-dem.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/cplus-dem.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/cplus-dem.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/cplus-dem.c $(OUTPUT_OPTION)
./crc32.$(objext): $(srcdir)/crc32.c config.h $(INCDIR)/ansidecl.h \ ./crc32.$(objext): $(srcdir)/crc32.c config.h $(INCDIR)/ansidecl.h \
...@@ -621,6 +689,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -621,6 +689,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/crc32.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/crc32.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/crc32.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/crc32.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/crc32.c $(OUTPUT_OPTION)
./dwarfnames.$(objext): $(srcdir)/dwarfnames.c $(INCDIR)/dwarf2.def \ ./dwarfnames.$(objext): $(srcdir)/dwarfnames.c $(INCDIR)/dwarf2.def \
...@@ -628,6 +699,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -628,6 +699,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/dwarfnames.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/dwarfnames.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/dwarfnames.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/dwarfnames.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/dwarfnames.c $(OUTPUT_OPTION)
./dyn-string.$(objext): $(srcdir)/dyn-string.c config.h $(INCDIR)/ansidecl.h \ ./dyn-string.$(objext): $(srcdir)/dyn-string.c config.h $(INCDIR)/ansidecl.h \
...@@ -635,6 +709,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -635,6 +709,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/dyn-string.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/dyn-string.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/dyn-string.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/dyn-string.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/dyn-string.c $(OUTPUT_OPTION)
./fdmatch.$(objext): $(srcdir)/fdmatch.c config.h $(INCDIR)/ansidecl.h \ ./fdmatch.$(objext): $(srcdir)/fdmatch.c config.h $(INCDIR)/ansidecl.h \
...@@ -642,12 +719,18 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -642,12 +719,18 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/fdmatch.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/fdmatch.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/fdmatch.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/fdmatch.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/fdmatch.c $(OUTPUT_OPTION)
./ffs.$(objext): $(srcdir)/ffs.c ./ffs.$(objext): $(srcdir)/ffs.c
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/ffs.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/ffs.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/ffs.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/ffs.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/ffs.c $(OUTPUT_OPTION)
./fibheap.$(objext): $(srcdir)/fibheap.c config.h $(INCDIR)/ansidecl.h \ ./fibheap.$(objext): $(srcdir)/fibheap.c config.h $(INCDIR)/ansidecl.h \
...@@ -655,6 +738,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -655,6 +738,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/fibheap.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/fibheap.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/fibheap.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/fibheap.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/fibheap.c $(OUTPUT_OPTION)
./filename_cmp.$(objext): $(srcdir)/filename_cmp.c config.h $(INCDIR)/ansidecl.h \ ./filename_cmp.$(objext): $(srcdir)/filename_cmp.c config.h $(INCDIR)/ansidecl.h \
...@@ -663,6 +749,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -663,6 +749,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/filename_cmp.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/filename_cmp.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/filename_cmp.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/filename_cmp.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/filename_cmp.c $(OUTPUT_OPTION)
./floatformat.$(objext): $(srcdir)/floatformat.c config.h $(INCDIR)/ansidecl.h \ ./floatformat.$(objext): $(srcdir)/floatformat.c config.h $(INCDIR)/ansidecl.h \
...@@ -670,6 +759,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -670,6 +759,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/floatformat.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/floatformat.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/floatformat.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/floatformat.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/floatformat.c $(OUTPUT_OPTION)
./fnmatch.$(objext): $(srcdir)/fnmatch.c config.h $(INCDIR)/fnmatch.h \ ./fnmatch.$(objext): $(srcdir)/fnmatch.c config.h $(INCDIR)/fnmatch.h \
...@@ -677,6 +769,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -677,6 +769,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/fnmatch.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/fnmatch.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/fnmatch.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/fnmatch.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/fnmatch.c $(OUTPUT_OPTION)
./fopen_unlocked.$(objext): $(srcdir)/fopen_unlocked.c config.h \ ./fopen_unlocked.$(objext): $(srcdir)/fopen_unlocked.c config.h \
...@@ -684,12 +779,18 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -684,12 +779,18 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/fopen_unlocked.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/fopen_unlocked.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/fopen_unlocked.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/fopen_unlocked.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/fopen_unlocked.c $(OUTPUT_OPTION)
./getcwd.$(objext): $(srcdir)/getcwd.c config.h ./getcwd.$(objext): $(srcdir)/getcwd.c config.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/getcwd.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/getcwd.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/getcwd.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/getcwd.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/getcwd.c $(OUTPUT_OPTION)
./getopt.$(objext): $(srcdir)/getopt.c config.h $(INCDIR)/ansidecl.h \ ./getopt.$(objext): $(srcdir)/getopt.c config.h $(INCDIR)/ansidecl.h \
...@@ -697,18 +798,27 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -697,18 +798,27 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/getopt.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/getopt.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/getopt.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/getopt.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/getopt.c $(OUTPUT_OPTION)
./getopt1.$(objext): $(srcdir)/getopt1.c config.h $(INCDIR)/getopt.h ./getopt1.$(objext): $(srcdir)/getopt1.c config.h $(INCDIR)/getopt.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/getopt1.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/getopt1.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/getopt1.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/getopt1.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/getopt1.c $(OUTPUT_OPTION)
./getpagesize.$(objext): $(srcdir)/getpagesize.c config.h ./getpagesize.$(objext): $(srcdir)/getpagesize.c config.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/getpagesize.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/getpagesize.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/getpagesize.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/getpagesize.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/getpagesize.c $(OUTPUT_OPTION)
./getpwd.$(objext): $(srcdir)/getpwd.c config.h $(INCDIR)/ansidecl.h \ ./getpwd.$(objext): $(srcdir)/getpwd.c config.h $(INCDIR)/ansidecl.h \
...@@ -716,6 +826,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -716,6 +826,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/getpwd.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/getpwd.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/getpwd.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/getpwd.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/getpwd.c $(OUTPUT_OPTION)
./getruntime.$(objext): $(srcdir)/getruntime.c config.h $(INCDIR)/ansidecl.h \ ./getruntime.$(objext): $(srcdir)/getruntime.c config.h $(INCDIR)/ansidecl.h \
...@@ -723,6 +836,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -723,6 +836,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/getruntime.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/getruntime.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/getruntime.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/getruntime.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/getruntime.c $(OUTPUT_OPTION)
./gettimeofday.$(objext): $(srcdir)/gettimeofday.c config.h $(INCDIR)/ansidecl.h \ ./gettimeofday.$(objext): $(srcdir)/gettimeofday.c config.h $(INCDIR)/ansidecl.h \
...@@ -730,6 +846,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -730,6 +846,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/gettimeofday.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/gettimeofday.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/gettimeofday.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/gettimeofday.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/gettimeofday.c $(OUTPUT_OPTION)
./hashtab.$(objext): $(srcdir)/hashtab.c config.h $(INCDIR)/ansidecl.h \ ./hashtab.$(objext): $(srcdir)/hashtab.c config.h $(INCDIR)/ansidecl.h \
...@@ -737,6 +856,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -737,6 +856,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/hashtab.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/hashtab.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/hashtab.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/hashtab.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/hashtab.c $(OUTPUT_OPTION)
./hex.$(objext): $(srcdir)/hex.c config.h $(INCDIR)/ansidecl.h \ ./hex.$(objext): $(srcdir)/hex.c config.h $(INCDIR)/ansidecl.h \
...@@ -744,18 +866,27 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -744,18 +866,27 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/hex.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/hex.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/hex.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/hex.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/hex.c $(OUTPUT_OPTION)
./index.$(objext): $(srcdir)/index.c ./index.$(objext): $(srcdir)/index.c
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/index.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/index.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/index.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/index.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/index.c $(OUTPUT_OPTION)
./insque.$(objext): $(srcdir)/insque.c ./insque.$(objext): $(srcdir)/insque.c
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/insque.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/insque.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/insque.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/insque.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/insque.c $(OUTPUT_OPTION)
./lbasename.$(objext): $(srcdir)/lbasename.c config.h $(INCDIR)/ansidecl.h \ ./lbasename.$(objext): $(srcdir)/lbasename.c config.h $(INCDIR)/ansidecl.h \
...@@ -764,6 +895,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -764,6 +895,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/lbasename.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/lbasename.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/lbasename.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/lbasename.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/lbasename.c $(OUTPUT_OPTION)
./lrealpath.$(objext): $(srcdir)/lrealpath.c config.h $(INCDIR)/ansidecl.h \ ./lrealpath.$(objext): $(srcdir)/lrealpath.c config.h $(INCDIR)/ansidecl.h \
...@@ -771,6 +905,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -771,6 +905,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/lrealpath.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/lrealpath.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/lrealpath.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/lrealpath.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/lrealpath.c $(OUTPUT_OPTION)
./make-relative-prefix.$(objext): $(srcdir)/make-relative-prefix.c config.h \ ./make-relative-prefix.$(objext): $(srcdir)/make-relative-prefix.c config.h \
...@@ -778,6 +915,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -778,6 +915,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/make-relative-prefix.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/make-relative-prefix.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/make-relative-prefix.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/make-relative-prefix.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/make-relative-prefix.c $(OUTPUT_OPTION)
./make-temp-file.$(objext): $(srcdir)/make-temp-file.c config.h \ ./make-temp-file.$(objext): $(srcdir)/make-temp-file.c config.h \
...@@ -785,66 +925,99 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -785,66 +925,99 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/make-temp-file.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/make-temp-file.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/make-temp-file.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/make-temp-file.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/make-temp-file.c $(OUTPUT_OPTION)
./md5.$(objext): $(srcdir)/md5.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/md5.h ./md5.$(objext): $(srcdir)/md5.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/md5.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/md5.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/md5.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/md5.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/md5.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/md5.c $(OUTPUT_OPTION)
./memchr.$(objext): $(srcdir)/memchr.c $(INCDIR)/ansidecl.h ./memchr.$(objext): $(srcdir)/memchr.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/memchr.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/memchr.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/memchr.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/memchr.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/memchr.c $(OUTPUT_OPTION)
./memcmp.$(objext): $(srcdir)/memcmp.c $(INCDIR)/ansidecl.h ./memcmp.$(objext): $(srcdir)/memcmp.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/memcmp.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/memcmp.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/memcmp.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/memcmp.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/memcmp.c $(OUTPUT_OPTION)
./memcpy.$(objext): $(srcdir)/memcpy.c $(INCDIR)/ansidecl.h ./memcpy.$(objext): $(srcdir)/memcpy.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/memcpy.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/memcpy.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/memcpy.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/memcpy.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/memcpy.c $(OUTPUT_OPTION)
./memmem.$(objext): $(srcdir)/memmem.c config.h ./memmem.$(objext): $(srcdir)/memmem.c config.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/memmem.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/memmem.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/memmem.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/memmem.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/memmem.c $(OUTPUT_OPTION)
./memmove.$(objext): $(srcdir)/memmove.c $(INCDIR)/ansidecl.h ./memmove.$(objext): $(srcdir)/memmove.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/memmove.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/memmove.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/memmove.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/memmove.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/memmove.c $(OUTPUT_OPTION)
./mempcpy.$(objext): $(srcdir)/mempcpy.c $(INCDIR)/ansidecl.h ./mempcpy.$(objext): $(srcdir)/mempcpy.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/mempcpy.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/mempcpy.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/mempcpy.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/mempcpy.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/mempcpy.c $(OUTPUT_OPTION)
./memset.$(objext): $(srcdir)/memset.c $(INCDIR)/ansidecl.h ./memset.$(objext): $(srcdir)/memset.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/memset.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/memset.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/memset.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/memset.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/memset.c $(OUTPUT_OPTION)
./mkstemps.$(objext): $(srcdir)/mkstemps.c config.h $(INCDIR)/ansidecl.h ./mkstemps.$(objext): $(srcdir)/mkstemps.c config.h $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/mkstemps.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/mkstemps.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/mkstemps.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/mkstemps.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/mkstemps.c $(OUTPUT_OPTION)
./msdos.$(objext): $(srcdir)/msdos.c ./msdos.$(objext): $(srcdir)/msdos.c
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/msdos.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/msdos.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/msdos.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/msdos.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/msdos.c $(OUTPUT_OPTION)
./objalloc.$(objext): $(srcdir)/objalloc.c config.h $(INCDIR)/ansidecl.h \ ./objalloc.$(objext): $(srcdir)/objalloc.c config.h $(INCDIR)/ansidecl.h \
...@@ -852,12 +1025,18 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -852,12 +1025,18 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/objalloc.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/objalloc.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/objalloc.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/objalloc.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/objalloc.c $(OUTPUT_OPTION)
./obstack.$(objext): $(srcdir)/obstack.c config.h $(INCDIR)/obstack.h ./obstack.$(objext): $(srcdir)/obstack.c config.h $(INCDIR)/obstack.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/obstack.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/obstack.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/obstack.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/obstack.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/obstack.c $(OUTPUT_OPTION)
./partition.$(objext): $(srcdir)/partition.c config.h $(INCDIR)/ansidecl.h \ ./partition.$(objext): $(srcdir)/partition.c config.h $(INCDIR)/ansidecl.h \
...@@ -865,6 +1044,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -865,6 +1044,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/partition.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/partition.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/partition.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/partition.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/partition.c $(OUTPUT_OPTION)
./pex-common.$(objext): $(srcdir)/pex-common.c config.h $(INCDIR)/ansidecl.h \ ./pex-common.$(objext): $(srcdir)/pex-common.c config.h $(INCDIR)/ansidecl.h \
...@@ -872,6 +1054,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -872,6 +1054,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/pex-common.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/pex-common.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/pex-common.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/pex-common.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/pex-common.c $(OUTPUT_OPTION)
./pex-djgpp.$(objext): $(srcdir)/pex-djgpp.c config.h $(INCDIR)/ansidecl.h \ ./pex-djgpp.$(objext): $(srcdir)/pex-djgpp.c config.h $(INCDIR)/ansidecl.h \
...@@ -879,6 +1064,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -879,6 +1064,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/pex-djgpp.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/pex-djgpp.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/pex-djgpp.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/pex-djgpp.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/pex-djgpp.c $(OUTPUT_OPTION)
./pex-msdos.$(objext): $(srcdir)/pex-msdos.c config.h $(INCDIR)/ansidecl.h \ ./pex-msdos.$(objext): $(srcdir)/pex-msdos.c config.h $(INCDIR)/ansidecl.h \
...@@ -887,6 +1075,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -887,6 +1075,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/pex-msdos.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/pex-msdos.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/pex-msdos.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/pex-msdos.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/pex-msdos.c $(OUTPUT_OPTION)
./pex-one.$(objext): $(srcdir)/pex-one.c config.h $(INCDIR)/ansidecl.h \ ./pex-one.$(objext): $(srcdir)/pex-one.c config.h $(INCDIR)/ansidecl.h \
...@@ -894,6 +1085,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -894,6 +1085,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/pex-one.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/pex-one.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/pex-one.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/pex-one.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/pex-one.c $(OUTPUT_OPTION)
./pex-unix.$(objext): $(srcdir)/pex-unix.c config.h $(INCDIR)/ansidecl.h \ ./pex-unix.$(objext): $(srcdir)/pex-unix.c config.h $(INCDIR)/ansidecl.h \
...@@ -901,6 +1095,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -901,6 +1095,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/pex-unix.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/pex-unix.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/pex-unix.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/pex-unix.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/pex-unix.c $(OUTPUT_OPTION)
./pex-win32.$(objext): $(srcdir)/pex-win32.c config.h $(INCDIR)/ansidecl.h \ ./pex-win32.$(objext): $(srcdir)/pex-win32.c config.h $(INCDIR)/ansidecl.h \
...@@ -908,6 +1105,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -908,6 +1105,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/pex-win32.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/pex-win32.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/pex-win32.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/pex-win32.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/pex-win32.c $(OUTPUT_OPTION)
./pexecute.$(objext): $(srcdir)/pexecute.c config.h $(INCDIR)/ansidecl.h \ ./pexecute.$(objext): $(srcdir)/pexecute.c config.h $(INCDIR)/ansidecl.h \
...@@ -915,6 +1115,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -915,6 +1115,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/pexecute.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/pexecute.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/pexecute.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/pexecute.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/pexecute.c $(OUTPUT_OPTION)
./physmem.$(objext): $(srcdir)/physmem.c config.h $(INCDIR)/ansidecl.h \ ./physmem.$(objext): $(srcdir)/physmem.c config.h $(INCDIR)/ansidecl.h \
...@@ -922,18 +1125,27 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -922,18 +1125,27 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/physmem.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/physmem.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/physmem.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/physmem.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/physmem.c $(OUTPUT_OPTION)
./putenv.$(objext): $(srcdir)/putenv.c config.h $(INCDIR)/ansidecl.h ./putenv.$(objext): $(srcdir)/putenv.c config.h $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/putenv.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/putenv.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/putenv.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/putenv.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/putenv.c $(OUTPUT_OPTION)
./random.$(objext): $(srcdir)/random.c $(INCDIR)/ansidecl.h ./random.$(objext): $(srcdir)/random.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/random.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/random.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/random.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/random.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/random.c $(OUTPUT_OPTION)
./regex.$(objext): $(srcdir)/regex.c config.h $(INCDIR)/ansidecl.h \ ./regex.$(objext): $(srcdir)/regex.c config.h $(INCDIR)/ansidecl.h \
...@@ -941,18 +1153,27 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -941,18 +1153,27 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/regex.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/regex.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/regex.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/regex.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/regex.c $(OUTPUT_OPTION)
./rename.$(objext): $(srcdir)/rename.c config.h $(INCDIR)/ansidecl.h ./rename.$(objext): $(srcdir)/rename.c config.h $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/rename.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/rename.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/rename.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/rename.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/rename.c $(OUTPUT_OPTION)
./rindex.$(objext): $(srcdir)/rindex.c ./rindex.$(objext): $(srcdir)/rindex.c
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/rindex.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/rindex.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/rindex.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/rindex.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/rindex.c $(OUTPUT_OPTION)
./safe-ctype.$(objext): $(srcdir)/safe-ctype.c $(INCDIR)/ansidecl.h \ ./safe-ctype.$(objext): $(srcdir)/safe-ctype.c $(INCDIR)/ansidecl.h \
...@@ -960,30 +1181,45 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -960,30 +1181,45 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/safe-ctype.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/safe-ctype.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/safe-ctype.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/safe-ctype.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/safe-ctype.c $(OUTPUT_OPTION)
./setenv.$(objext): $(srcdir)/setenv.c config.h $(INCDIR)/ansidecl.h ./setenv.$(objext): $(srcdir)/setenv.c config.h $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/setenv.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/setenv.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/setenv.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/setenv.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/setenv.c $(OUTPUT_OPTION)
./setproctitle.$(objext): $(srcdir)/setproctitle.c config.h $(INCDIR)/ansidecl.h ./setproctitle.$(objext): $(srcdir)/setproctitle.c config.h $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/setproctitle.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/setproctitle.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/setproctitle.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/setproctitle.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/setproctitle.c $(OUTPUT_OPTION)
./sha1.$(objext): $(srcdir)/sha1.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/sha1.h ./sha1.$(objext): $(srcdir)/sha1.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/sha1.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/sha1.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/sha1.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/sha1.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/sha1.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/sha1.c $(OUTPUT_OPTION)
./sigsetmask.$(objext): $(srcdir)/sigsetmask.c $(INCDIR)/ansidecl.h ./sigsetmask.$(objext): $(srcdir)/sigsetmask.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/sigsetmask.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/sigsetmask.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/sigsetmask.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/sigsetmask.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/sigsetmask.c $(OUTPUT_OPTION)
./simple-object-coff.$(objext): $(srcdir)/simple-object-coff.c config.h \ ./simple-object-coff.$(objext): $(srcdir)/simple-object-coff.c config.h \
...@@ -992,6 +1228,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -992,6 +1228,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/simple-object-coff.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/simple-object-coff.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/simple-object-coff.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/simple-object-coff.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/simple-object-coff.c $(OUTPUT_OPTION)
./simple-object-elf.$(objext): $(srcdir)/simple-object-elf.c config.h \ ./simple-object-elf.$(objext): $(srcdir)/simple-object-elf.c config.h \
...@@ -1000,6 +1239,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1000,6 +1239,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/simple-object-elf.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/simple-object-elf.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/simple-object-elf.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/simple-object-elf.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/simple-object-elf.c $(OUTPUT_OPTION)
./simple-object-mach-o.$(objext): $(srcdir)/simple-object-mach-o.c config.h \ ./simple-object-mach-o.$(objext): $(srcdir)/simple-object-mach-o.c config.h \
...@@ -1008,6 +1250,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1008,6 +1250,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/simple-object-mach-o.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/simple-object-mach-o.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/simple-object-mach-o.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/simple-object-mach-o.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/simple-object-mach-o.c $(OUTPUT_OPTION)
./simple-object-xcoff.$(objext): $(srcdir)/simple-object-xcoff.c config.h \ ./simple-object-xcoff.$(objext): $(srcdir)/simple-object-xcoff.c config.h \
...@@ -1016,6 +1261,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1016,6 +1261,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/simple-object-xcoff.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/simple-object-xcoff.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/simple-object-xcoff.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/simple-object-xcoff.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/simple-object-xcoff.c $(OUTPUT_OPTION)
./simple-object.$(objext): $(srcdir)/simple-object.c config.h \ ./simple-object.$(objext): $(srcdir)/simple-object.c config.h \
...@@ -1024,12 +1272,18 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1024,12 +1272,18 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/simple-object.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/simple-object.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/simple-object.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/simple-object.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/simple-object.c $(OUTPUT_OPTION)
./snprintf.$(objext): $(srcdir)/snprintf.c $(INCDIR)/ansidecl.h ./snprintf.$(objext): $(srcdir)/snprintf.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/snprintf.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/snprintf.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/snprintf.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/snprintf.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/snprintf.c $(OUTPUT_OPTION)
./sort.$(objext): $(srcdir)/sort.c config.h $(INCDIR)/ansidecl.h \ ./sort.$(objext): $(srcdir)/sort.c config.h $(INCDIR)/ansidecl.h \
...@@ -1037,6 +1291,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1037,6 +1291,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/sort.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/sort.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/sort.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/sort.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/sort.c $(OUTPUT_OPTION)
./spaces.$(objext): $(srcdir)/spaces.c config.h $(INCDIR)/ansidecl.h \ ./spaces.$(objext): $(srcdir)/spaces.c config.h $(INCDIR)/ansidecl.h \
...@@ -1044,6 +1301,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1044,6 +1301,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/spaces.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/spaces.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/spaces.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/spaces.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/spaces.c $(OUTPUT_OPTION)
./splay-tree.$(objext): $(srcdir)/splay-tree.c config.h $(INCDIR)/ansidecl.h \ ./splay-tree.$(objext): $(srcdir)/splay-tree.c config.h $(INCDIR)/ansidecl.h \
...@@ -1051,42 +1311,63 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1051,42 +1311,63 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/splay-tree.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/splay-tree.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/splay-tree.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/splay-tree.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/splay-tree.c $(OUTPUT_OPTION)
./stack-limit.$(objext): $(srcdir)/stack-limit.c config.h $(INCDIR)/ansidecl.h ./stack-limit.$(objext): $(srcdir)/stack-limit.c config.h $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/stack-limit.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/stack-limit.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/stack-limit.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/stack-limit.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/stack-limit.c $(OUTPUT_OPTION)
./stpcpy.$(objext): $(srcdir)/stpcpy.c $(INCDIR)/ansidecl.h ./stpcpy.$(objext): $(srcdir)/stpcpy.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/stpcpy.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/stpcpy.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/stpcpy.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/stpcpy.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/stpcpy.c $(OUTPUT_OPTION)
./stpncpy.$(objext): $(srcdir)/stpncpy.c $(INCDIR)/ansidecl.h ./stpncpy.$(objext): $(srcdir)/stpncpy.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/stpncpy.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/stpncpy.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/stpncpy.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/stpncpy.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/stpncpy.c $(OUTPUT_OPTION)
./strcasecmp.$(objext): $(srcdir)/strcasecmp.c $(INCDIR)/ansidecl.h ./strcasecmp.$(objext): $(srcdir)/strcasecmp.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strcasecmp.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/strcasecmp.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strcasecmp.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/strcasecmp.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/strcasecmp.c $(OUTPUT_OPTION)
./strchr.$(objext): $(srcdir)/strchr.c $(INCDIR)/ansidecl.h ./strchr.$(objext): $(srcdir)/strchr.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strchr.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/strchr.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strchr.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/strchr.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/strchr.c $(OUTPUT_OPTION)
./strdup.$(objext): $(srcdir)/strdup.c $(INCDIR)/ansidecl.h ./strdup.$(objext): $(srcdir)/strdup.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strdup.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/strdup.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strdup.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/strdup.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/strdup.c $(OUTPUT_OPTION)
./strerror.$(objext): $(srcdir)/strerror.c config.h $(INCDIR)/ansidecl.h \ ./strerror.$(objext): $(srcdir)/strerror.c config.h $(INCDIR)/ansidecl.h \
...@@ -1094,36 +1375,54 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1094,36 +1375,54 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strerror.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/strerror.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strerror.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/strerror.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/strerror.c $(OUTPUT_OPTION)
./strncasecmp.$(objext): $(srcdir)/strncasecmp.c $(INCDIR)/ansidecl.h ./strncasecmp.$(objext): $(srcdir)/strncasecmp.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strncasecmp.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/strncasecmp.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strncasecmp.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/strncasecmp.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/strncasecmp.c $(OUTPUT_OPTION)
./strncmp.$(objext): $(srcdir)/strncmp.c $(INCDIR)/ansidecl.h ./strncmp.$(objext): $(srcdir)/strncmp.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strncmp.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/strncmp.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strncmp.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/strncmp.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/strncmp.c $(OUTPUT_OPTION)
./strndup.$(objext): $(srcdir)/strndup.c $(INCDIR)/ansidecl.h ./strndup.$(objext): $(srcdir)/strndup.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strndup.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/strndup.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strndup.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/strndup.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/strndup.c $(OUTPUT_OPTION)
./strnlen.$(objext): $(srcdir)/strnlen.c config.h ./strnlen.$(objext): $(srcdir)/strnlen.c config.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strnlen.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/strnlen.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strnlen.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/strnlen.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/strnlen.c $(OUTPUT_OPTION)
./strrchr.$(objext): $(srcdir)/strrchr.c $(INCDIR)/ansidecl.h ./strrchr.$(objext): $(srcdir)/strrchr.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strrchr.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/strrchr.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strrchr.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/strrchr.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/strrchr.c $(OUTPUT_OPTION)
./strsignal.$(objext): $(srcdir)/strsignal.c config.h $(INCDIR)/ansidecl.h \ ./strsignal.$(objext): $(srcdir)/strsignal.c config.h $(INCDIR)/ansidecl.h \
...@@ -1131,12 +1430,18 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1131,12 +1430,18 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strsignal.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/strsignal.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strsignal.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/strsignal.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/strsignal.c $(OUTPUT_OPTION)
./strstr.$(objext): $(srcdir)/strstr.c ./strstr.$(objext): $(srcdir)/strstr.c
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strstr.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/strstr.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strstr.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/strstr.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/strstr.c $(OUTPUT_OPTION)
./strtod.$(objext): $(srcdir)/strtod.c $(INCDIR)/ansidecl.h \ ./strtod.$(objext): $(srcdir)/strtod.c $(INCDIR)/ansidecl.h \
...@@ -1144,12 +1449,18 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1144,12 +1449,18 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strtod.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/strtod.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strtod.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/strtod.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/strtod.c $(OUTPUT_OPTION)
./strtol.$(objext): $(srcdir)/strtol.c config.h $(INCDIR)/safe-ctype.h ./strtol.$(objext): $(srcdir)/strtol.c config.h $(INCDIR)/safe-ctype.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strtol.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/strtol.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strtol.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/strtol.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/strtol.c $(OUTPUT_OPTION)
./strtoul.$(objext): $(srcdir)/strtoul.c config.h $(INCDIR)/ansidecl.h \ ./strtoul.$(objext): $(srcdir)/strtoul.c config.h $(INCDIR)/ansidecl.h \
...@@ -1157,6 +1468,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1157,6 +1468,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strtoul.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/strtoul.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strtoul.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/strtoul.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/strtoul.c $(OUTPUT_OPTION)
./strverscmp.$(objext): $(srcdir)/strverscmp.c $(INCDIR)/ansidecl.h \ ./strverscmp.$(objext): $(srcdir)/strverscmp.c $(INCDIR)/ansidecl.h \
...@@ -1164,6 +1478,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1164,6 +1478,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strverscmp.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/strverscmp.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strverscmp.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/strverscmp.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/strverscmp.c $(OUTPUT_OPTION)
./timeval-utils.$(objext): $(srcdir)/timeval-utils.c config.h \ ./timeval-utils.$(objext): $(srcdir)/timeval-utils.c config.h \
...@@ -1171,12 +1488,18 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1171,12 +1488,18 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/timeval-utils.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/timeval-utils.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/timeval-utils.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/timeval-utils.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/timeval-utils.c $(OUTPUT_OPTION)
./tmpnam.$(objext): $(srcdir)/tmpnam.c ./tmpnam.$(objext): $(srcdir)/tmpnam.c
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/tmpnam.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/tmpnam.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/tmpnam.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/tmpnam.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/tmpnam.c $(OUTPUT_OPTION)
./unlink-if-ordinary.$(objext): $(srcdir)/unlink-if-ordinary.c config.h \ ./unlink-if-ordinary.$(objext): $(srcdir)/unlink-if-ordinary.c config.h \
...@@ -1184,6 +1507,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1184,6 +1507,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/unlink-if-ordinary.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/unlink-if-ordinary.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/unlink-if-ordinary.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/unlink-if-ordinary.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/unlink-if-ordinary.c $(OUTPUT_OPTION)
./vasprintf.$(objext): $(srcdir)/vasprintf.c config.h $(INCDIR)/ansidecl.h \ ./vasprintf.$(objext): $(srcdir)/vasprintf.c config.h $(INCDIR)/ansidecl.h \
...@@ -1191,24 +1517,36 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1191,24 +1517,36 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/vasprintf.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/vasprintf.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/vasprintf.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/vasprintf.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/vasprintf.c $(OUTPUT_OPTION)
./vfork.$(objext): $(srcdir)/vfork.c $(INCDIR)/ansidecl.h ./vfork.$(objext): $(srcdir)/vfork.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/vfork.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/vfork.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/vfork.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/vfork.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/vfork.c $(OUTPUT_OPTION)
./vfprintf.$(objext): $(srcdir)/vfprintf.c $(INCDIR)/ansidecl.h ./vfprintf.$(objext): $(srcdir)/vfprintf.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/vfprintf.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/vfprintf.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/vfprintf.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/vfprintf.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/vfprintf.c $(OUTPUT_OPTION)
./vprintf.$(objext): $(srcdir)/vprintf.c $(INCDIR)/ansidecl.h ./vprintf.$(objext): $(srcdir)/vprintf.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/vprintf.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/vprintf.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/vprintf.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/vprintf.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/vprintf.c $(OUTPUT_OPTION)
./vsnprintf.$(objext): $(srcdir)/vsnprintf.c config.h $(INCDIR)/ansidecl.h \ ./vsnprintf.$(objext): $(srcdir)/vsnprintf.c config.h $(INCDIR)/ansidecl.h \
...@@ -1216,18 +1554,27 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1216,18 +1554,27 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/vsnprintf.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/vsnprintf.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/vsnprintf.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/vsnprintf.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/vsnprintf.c $(OUTPUT_OPTION)
./vsprintf.$(objext): $(srcdir)/vsprintf.c $(INCDIR)/ansidecl.h ./vsprintf.$(objext): $(srcdir)/vsprintf.c $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/vsprintf.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/vsprintf.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/vsprintf.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/vsprintf.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/vsprintf.c $(OUTPUT_OPTION)
./waitpid.$(objext): $(srcdir)/waitpid.c config.h $(INCDIR)/ansidecl.h ./waitpid.$(objext): $(srcdir)/waitpid.c config.h $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/waitpid.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/waitpid.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/waitpid.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/waitpid.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/waitpid.c $(OUTPUT_OPTION)
./xatexit.$(objext): $(srcdir)/xatexit.c config.h $(INCDIR)/ansidecl.h \ ./xatexit.$(objext): $(srcdir)/xatexit.c config.h $(INCDIR)/ansidecl.h \
...@@ -1235,6 +1582,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1235,6 +1582,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/xatexit.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/xatexit.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xatexit.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/xatexit.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/xatexit.c $(OUTPUT_OPTION)
./xexit.$(objext): $(srcdir)/xexit.c config.h $(INCDIR)/ansidecl.h \ ./xexit.$(objext): $(srcdir)/xexit.c config.h $(INCDIR)/ansidecl.h \
...@@ -1242,6 +1592,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1242,6 +1592,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/xexit.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/xexit.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xexit.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/xexit.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/xexit.c $(OUTPUT_OPTION)
./xmalloc.$(objext): $(srcdir)/xmalloc.c config.h $(INCDIR)/ansidecl.h \ ./xmalloc.$(objext): $(srcdir)/xmalloc.c config.h $(INCDIR)/ansidecl.h \
...@@ -1249,6 +1602,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1249,6 +1602,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/xmalloc.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/xmalloc.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xmalloc.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/xmalloc.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/xmalloc.c $(OUTPUT_OPTION)
./xmemdup.$(objext): $(srcdir)/xmemdup.c config.h $(INCDIR)/ansidecl.h \ ./xmemdup.$(objext): $(srcdir)/xmemdup.c config.h $(INCDIR)/ansidecl.h \
...@@ -1256,6 +1612,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1256,6 +1612,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/xmemdup.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/xmemdup.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xmemdup.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/xmemdup.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/xmemdup.c $(OUTPUT_OPTION)
./xstrdup.$(objext): $(srcdir)/xstrdup.c config.h $(INCDIR)/ansidecl.h \ ./xstrdup.$(objext): $(srcdir)/xstrdup.c config.h $(INCDIR)/ansidecl.h \
...@@ -1263,6 +1622,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1263,6 +1622,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/xstrdup.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/xstrdup.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xstrdup.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/xstrdup.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/xstrdup.c $(OUTPUT_OPTION)
./xstrerror.$(objext): $(srcdir)/xstrerror.c config.h $(INCDIR)/ansidecl.h \ ./xstrerror.$(objext): $(srcdir)/xstrerror.c config.h $(INCDIR)/ansidecl.h \
...@@ -1270,6 +1632,9 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1270,6 +1632,9 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/xstrerror.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/xstrerror.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xstrerror.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/xstrerror.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/xstrerror.c $(OUTPUT_OPTION)
./xstrndup.$(objext): $(srcdir)/xstrndup.c config.h $(INCDIR)/ansidecl.h \ ./xstrndup.$(objext): $(srcdir)/xstrndup.c config.h $(INCDIR)/ansidecl.h \
...@@ -1277,5 +1642,8 @@ $(CONFIGURED_OFILES): stamp-picdir ...@@ -1277,5 +1642,8 @@ $(CONFIGURED_OFILES): stamp-picdir
if [ x"$(PICFLAG)" != x ]; then \ if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/xstrndup.c -o pic/$@; \ $(COMPILE.c) $(PICFLAG) $(srcdir)/xstrndup.c -o pic/$@; \
else true; fi else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xstrndup.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/xstrndup.c $(OUTPUT_OPTION) $(COMPILE.c) $(srcdir)/xstrndup.c $(OUTPUT_OPTION)
...@@ -594,6 +594,7 @@ pexecute ...@@ -594,6 +594,7 @@ pexecute
target_header_dir target_header_dir
CHECK CHECK
LIBOBJS LIBOBJS
NOASANFLAG
PICFLAG PICFLAG
INSTALL_DATA INSTALL_DATA
INSTALL_SCRIPT INSTALL_SCRIPT
...@@ -4971,6 +4972,12 @@ if [ "${shared}" != "yes" ]; then ...@@ -4971,6 +4972,12 @@ if [ "${shared}" != "yes" ]; then
fi fi
NOASANFLAG=
case " ${CFLAGS} " in
*\ -fsanitize=address\ *) NOASANFLAG=-fno-sanitize=address ;;
esac
echo "# Warning: this fragment is automatically generated" > temp-frag echo "# Warning: this fragment is automatically generated" > temp-frag
if [ -n "${frag}" ] && [ -f "${frag}" ]; then if [ -n "${frag}" ] && [ -f "${frag}" ]; then
......
...@@ -236,6 +236,12 @@ if [[ "${shared}" != "yes" ]]; then ...@@ -236,6 +236,12 @@ if [[ "${shared}" != "yes" ]]; then
fi fi
AC_SUBST(PICFLAG) AC_SUBST(PICFLAG)
NOASANFLAG=
case " ${CFLAGS} " in
*\ -fsanitize=address\ *) NOASANFLAG=-fno-sanitize=address ;;
esac
AC_SUBST(NOASANFLAG)
echo "# Warning: this fragment is automatically generated" > temp-frag echo "# Warning: this fragment is automatically generated" > temp-frag
if [[ -n "${frag}" ]] && [[ -f "${frag}" ]]; then if [[ -n "${frag}" ]] && [[ -f "${frag}" ]]; then
......
#!/usr/bin/perl #!/usr/bin/perl
# -*- perl -*- # -*- perl -*-
# Copyright (C) 2001, 2007, 2010 # Copyright (C) 2001, 2007, 2010, 2014
# Free Software Foundation # Free Software Foundation
# #
# This file is part of the libiberty library. # This file is part of the libiberty library.
...@@ -215,6 +215,9 @@ sub deps { ...@@ -215,6 +215,9 @@ sub deps {
$crule = "\tif [ x\"\$(PICFLAG)\" != x ]; then \\\n"; $crule = "\tif [ x\"\$(PICFLAG)\" != x ]; then \\\n";
$crule .= "\t \$(COMPILE.c) \$(PICFLAG) \$< -o pic/\$@; \\\n"; $crule .= "\t \$(COMPILE.c) \$(PICFLAG) \$< -o pic/\$@; \\\n";
$crule .= "\telse true; fi\n"; $crule .= "\telse true; fi\n";
$crule .= "\tif [ x\"\$(NOASANFLAG)\" != x ]; then \\\n";
$crule .= "\t \$(COMPILE.c) \$(PICFLAG) \$(NOASANFLAG) \$< -o noasan/\$@; \\\n";
$crule .= "\telse true; fi\n";
$crule .= "\t\$(COMPILE.c) \$< \$(OUTPUT_OPTION)\n"; $crule .= "\t\$(COMPILE.c) \$< \$(OUTPUT_OPTION)\n";
$crule .= "\n"; $crule .= "\n";
......
2014-04-17 Jakub Jelinek <jakub@redhat.com> 2014-04-17 Jakub Jelinek <jakub@redhat.com>
PR sanitizer/56781 PR sanitizer/56781
* Makefile.am (CFLAGS, LDFLAGS): Filter out -fsanitize=address.
(liblto_plugin_la_LIBADD, liblto_plugin_la_LDFLAGS,
liblto_plugin_la_DEPENDENCIES): Prefer ../libiberty/noasan/libiberty.a
over ../libiberty/pic/libiberty.a if the former exists.
* Makefile.in: Regenerated.
PR sanitizer/56781
* Makefile.am (LTLDFLAGS, liblto_plugin_la_LINK): New variables. * Makefile.am (LTLDFLAGS, liblto_plugin_la_LINK): New variables.
* Makefile.in: Regenerated. * Makefile.in: Regenerated.
......
...@@ -11,6 +11,8 @@ AM_CPPFLAGS = -I$(top_srcdir)/../include $(DEFS) ...@@ -11,6 +11,8 @@ AM_CPPFLAGS = -I$(top_srcdir)/../include $(DEFS)
AM_CFLAGS = @ac_lto_plugin_warn_cflags@ AM_CFLAGS = @ac_lto_plugin_warn_cflags@
AM_LDFLAGS = @ac_lto_plugin_ldflags@ AM_LDFLAGS = @ac_lto_plugin_ldflags@
AM_LIBTOOLFLAGS = --tag=disable-static AM_LIBTOOLFLAGS = --tag=disable-static
override CFLAGS := $(filter-out -fsanitize=address,$(CFLAGS))
override LDFLAGS := $(filter-out -fsanitize=address,$(LDFLAGS))
libexecsub_LTLIBRARIES = liblto_plugin.la libexecsub_LTLIBRARIES = liblto_plugin.la
gcc_build_dir = ../$(host_subdir)/gcc gcc_build_dir = ../$(host_subdir)/gcc
...@@ -22,13 +24,16 @@ LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS)) ...@@ -22,13 +24,16 @@ LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
liblto_plugin_la_SOURCES = lto-plugin.c liblto_plugin_la_SOURCES = lto-plugin.c
liblto_plugin_la_LIBADD = \ liblto_plugin_la_LIBADD = \
$(if $(wildcard ../libiberty/pic/libiberty.a),$(Wc)../libiberty/pic/libiberty.a,) $(if $(wildcard ../libiberty/noasan/libiberty.a),$(Wc)../libiberty/noasan/libiberty.a, \
$(if $(wildcard ../libiberty/pic/libiberty.a),$(Wc)../libiberty/pic/libiberty.a,))
# Note that we intentionally override the bindir supplied by ACX_LT_HOST_FLAGS # Note that we intentionally override the bindir supplied by ACX_LT_HOST_FLAGS
liblto_plugin_la_LDFLAGS = $(AM_LDFLAGS) \ liblto_plugin_la_LDFLAGS = $(AM_LDFLAGS) \
$(lt_host_flags) -module -bindir $(libexecsubdir) \ $(lt_host_flags) -module -bindir $(libexecsubdir) \
$(if $(wildcard ../libiberty/pic/libiberty.a),,-Wc,../libiberty/libiberty.a) $(if $(wildcard ../libiberty/noasan/libiberty.a),, \
$(if $(wildcard ../libiberty/pic/libiberty.a),,-Wc,../libiberty/libiberty.a))
liblto_plugin_la_DEPENDENCIES = $(if $(wildcard \ liblto_plugin_la_DEPENDENCIES = $(if $(wildcard \
../libiberty/pic/libiberty.a),../libiberty/pic/libiberty.a,) ../libiberty/noasan/libiberty.a),../libiberty/noasan/libiberty.a, \
$(if $(wildcard ../libiberty/pic/libiberty.a),../libiberty/pic/libiberty.a,))
liblto_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ liblto_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(liblto_plugin_la_LDFLAGS) $(LTLDFLAGS) -o $@ $(liblto_plugin_la_LDFLAGS) $(LTLDFLAGS) -o $@
......
...@@ -239,15 +239,18 @@ Wc = -Wc, ...@@ -239,15 +239,18 @@ Wc = -Wc,
LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS)) LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
liblto_plugin_la_SOURCES = lto-plugin.c liblto_plugin_la_SOURCES = lto-plugin.c
liblto_plugin_la_LIBADD = \ liblto_plugin_la_LIBADD = \
$(if $(wildcard ../libiberty/pic/libiberty.a),$(Wc)../libiberty/pic/libiberty.a,) $(if $(wildcard ../libiberty/noasan/libiberty.a),$(Wc)../libiberty/noasan/libiberty.a, \
$(if $(wildcard ../libiberty/pic/libiberty.a),$(Wc)../libiberty/pic/libiberty.a,))
# Note that we intentionally override the bindir supplied by ACX_LT_HOST_FLAGS # Note that we intentionally override the bindir supplied by ACX_LT_HOST_FLAGS
liblto_plugin_la_LDFLAGS = $(AM_LDFLAGS) \ liblto_plugin_la_LDFLAGS = $(AM_LDFLAGS) \
$(lt_host_flags) -module -bindir $(libexecsubdir) \ $(lt_host_flags) -module -bindir $(libexecsubdir) \
$(if $(wildcard ../libiberty/pic/libiberty.a),,-Wc,../libiberty/libiberty.a) $(if $(wildcard ../libiberty/noasan/libiberty.a),, \
$(if $(wildcard ../libiberty/pic/libiberty.a),,-Wc,../libiberty/libiberty.a))
liblto_plugin_la_DEPENDENCIES = $(if $(wildcard \ liblto_plugin_la_DEPENDENCIES = $(if $(wildcard \
../libiberty/pic/libiberty.a),../libiberty/pic/libiberty.a,) ../libiberty/noasan/libiberty.a),../libiberty/noasan/libiberty.a, \
$(if $(wildcard ../libiberty/pic/libiberty.a),../libiberty/pic/libiberty.a,))
liblto_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ liblto_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
...@@ -539,6 +542,8 @@ uninstall-am: uninstall-libexecsubLTLIBRARIES ...@@ -539,6 +542,8 @@ uninstall-am: uninstall-libexecsubLTLIBRARIES
pdf pdf-am ps ps-am tags uninstall uninstall-am \ pdf pdf-am ps ps-am tags uninstall uninstall-am \
uninstall-libexecsubLTLIBRARIES uninstall-libexecsubLTLIBRARIES
override CFLAGS := $(filter-out -fsanitize=address,$(CFLAGS))
override LDFLAGS := $(filter-out -fsanitize=address,$(LDFLAGS))
all-local: $(in_gcc_libs) all-local: $(in_gcc_libs)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment