Synchronize the shared object build rules in Makefile.port with Makefile.shlib

somewhat by adding CFLAGS where the compiler is used and Makefile.shlib
already used CFLAGS.
This commit is contained in:
Peter Eisentraut 2008-09-01 08:50:10 +00:00
parent b8f5ea7685
commit 86ec73b909
9 changed files with 16 additions and 13 deletions

View File

@ -6,7 +6,7 @@
# Copyright (c) 1998, Regents of the University of California
#
# IDENTIFICATION
# $PostgreSQL: pgsql/src/Makefile.shlib,v 1.116 2008/04/08 09:50:29 petere Exp $
# $PostgreSQL: pgsql/src/Makefile.shlib,v 1.117 2008/09/01 08:50:09 petere Exp $
#
#-------------------------------------------------------------------------
@ -256,10 +256,9 @@ endif
ifeq ($(PORTNAME), solaris)
ifeq ($(GCC), yes)
LINK.shared = $(COMPILER) -shared # $(COMPILER) needed for -m64
LINK.shared = $(COMPILER) -shared
else
# CFLAGS added for X86_64
LINK.shared = $(CC) -G $(CFLAGS)
LINK.shared = $(COMPILER) -G
endif
ifdef soname
ifeq ($(with_gnu_ld), yes)

View File

@ -38,6 +38,6 @@ MKLDEXPORT=$(top_srcdir)/src/backend/port/aix/mkldexport.sh
$(MKLDEXPORT) $^ >$@
%$(DLSUFFIX): %.o %.exp
$(CC) $(LDFLAGS) $(LDFLAGS_SL) -o $@ $*.o -Wl,-bE:$*.exp $(SHLIB_LINK)
$(CC) $(CFLAGS) $(LDFLAGS) $(LDFLAGS_SL) -o $@ $*.o -Wl,-bE:$*.exp $(SHLIB_LINK)
sqlmansect = 7

View File

@ -21,6 +21,6 @@ CFLAGS_SL =
endif
%.so: %.o
$(CC) -shared -o $@ $<
$(CC) $(CFLAGS) -shared -o $@ $<
sqlmansect = 7

View File

@ -16,7 +16,7 @@ endif
%.so: %.o
ifdef ELF_SYSTEM
$(LD) -x -shared -o $@ $<
$(CC) $(CFLAGS) -shared -o $@ $<
else
$(LD) $(LDREL) $(LDOUT) $<.obj -x $<
@echo building shared object $@

View File

@ -6,7 +6,7 @@ DLSUFFIX = .so
CFLAGS_SL =
%.so: %.o
$(LD) -G -Bdynamic -shared -o $@ $<
$(CC) $(CFLAGS) -shared -o $@ $<
override CPPFLAGS += -U_NO_XOPEN4

View File

@ -11,6 +11,6 @@ CFLAGS_SL = -fpic
endif
%.so: %.o
$(CC) -shared -o $@ $<
$(CC) $(CFLAGS) -shared -o $@ $<
sqlmansect = 7

View File

@ -18,7 +18,7 @@ endif
%.so: %.o
ifdef ELF_SYSTEM
$(LD) -x -Bshareable -o $@ $<
$(CC) $(CFLAGS) -shared -o $@ $<
else
$(LD) $(LDREL) $(LDOUT) $<.obj -x $<
@echo building shared object $@

View File

@ -16,7 +16,7 @@ endif
%.so: %.o
ifdef ELF_SYSTEM
$(CC) -shared -o $@ $<
$(CC) $(CFLAGS) -shared -o $@ $<
else
$(LD) $(LDREL) $(LDOUT) $<.obj -x $<
@echo building shared object $@

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/src/makefiles/Makefile.solaris,v 1.13 2005/12/09 21:19:36 petere Exp $
# $PostgreSQL: pgsql/src/makefiles/Makefile.solaris,v 1.14 2008/09/01 08:50:10 petere Exp $
AROPT = crs
@ -17,6 +17,10 @@ CFLAGS_SL = -KPIC
endif
%.so: %.o
$(LD) -G -Bdynamic -o $@ $<
ifeq ($(GCC), yes)
$(CC) $(CFLAGS) -shared -o $@ $<
else
$(CC) $(CFLAGS) -G -o $@ $<
endif
sqlmansect = 5sql