8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 21:23:04 +01:00

Fixed CORE-3606: Linker commands that use c or c++ compiler should apply CFLAGS and CXXFLAGS respectively

This commit is contained in:
alexpeshkoff 2011-10-12 11:55:18 +00:00
parent 0109520964
commit ef11481552

View File

@ -155,10 +155,10 @@ LD = @CXX@
# LINKER COMMANDS
LIB_LINK:= @CXX@ $(GLOB_OPTIONS)
STATICLIB_LINK:= ar cruvs
EXE_LINK:= @CXX@ $(GLOB_OPTIONS)
STATICEXE_LINK:= @CXX@ $(GLOB_OPTIONS)
LIB_LINK = $(CXX) $(GLOB_OPTIONS) $(CXXFLAGS)
STATICLIB_LINK = ar cruvs
EXE_LINK = $(CXX) $(GLOB_OPTIONS) $(CXXFLAGS)
STATICEXE_LINK = $(CXX) $(GLOB_OPTIONS) $(CXXFLAGS)
LINK_LIBS = @LIBS@
STATICLINK_LIBS = @LIBS@