Silence libtool during link
The switch to linking with libtool now shows a very long link line even when V=0. This patch arranges to silence libtool in this situation. Approved-By: Simon Marchi <simon.marchi@efficios.com>
This commit is contained in:
parent
412cf590e5
commit
027fb74964
2 changed files with 3 additions and 1 deletions
|
@ -148,7 +148,7 @@ LIBTOOL = @LIBTOOL@
|
|||
# Set this up with gcc if you have gnu ld and the loader will print out
|
||||
# line numbers for undefined references.
|
||||
#CC_LD = g++ -static
|
||||
CC_LD = $(LIBTOOL) --mode=link $(CXX) $(CXX_DIALECT)
|
||||
CC_LD = $(LIBTOOL) $(SILENT_FLAG) --mode=link $(CXX) $(CXX_DIALECT)
|
||||
|
||||
# Where is our "include" directory? Typically $(srcdir)/../include.
|
||||
# This is essentially the header file directory for the library
|
||||
|
|
|
@ -18,4 +18,6 @@ ECHO_LEX = @echo " LEX $@";
|
|||
ECHO_AR = @echo " AR $@";
|
||||
ECHO_RANLIB = @echo " RANLIB $@";
|
||||
SILENCE = @
|
||||
# Silence libtool.
|
||||
SILENT_FLAG = --silent
|
||||
endif
|
||||
|
|
Loading…
Add table
Reference in a new issue