From: Tom Lane Date: Wed, 20 Oct 2010 04:55:15 +0000 (-0400) Subject: Fix ecpg test building process to not generate *.dSYM junk on Macs. X-Git-Tag: REL8_2_19~23 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2f4b1498bcd025ce96f460416ccb68b2b992c485;p=thirdparty%2Fpostgresql.git Fix ecpg test building process to not generate *.dSYM junk on Macs. The trick is to not try to build executables directly from .c files, but to always build the intermediate .o files. For obscure reasons, Darwin's version of gcc will leave debug cruft behind in the first case but not the second. Per complaint from Robert Haas. --- diff --git a/src/interfaces/ecpg/test/Makefile.regress b/src/interfaces/ecpg/test/Makefile.regress index c5e017e74a9..a130482d29e 100644 --- a/src/interfaces/ecpg/test/Makefile.regress +++ b/src/interfaces/ecpg/test/Makefile.regress @@ -8,11 +8,11 @@ override LIBS := -lecpg -lpgtypes $(libpq) $(LIBS) $(PTHREAD_LIBS) ECPG = ../../preproc/ecpg -I$(srcdir)/../../include %: %.c - $(CC) $(CPPFLAGS) $(CFLAGS) $^ $(LDFLAGS) $(LIBS) -o $@ + $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $*.o + $(CC) $(CPPFLAGS) $(CFLAGS) $*.o $(LDFLAGS) $(LIBS) -o $@ %.c: %.pgc ../regression.h $(ECPG) -o $@ -I$(srcdir) $< clean: rm -f $(TESTS) $(TESTS:%=%.o) $(TESTS:%=%.c) -