Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions build/common.m4
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,15 @@ EOF
if test -n "$LD"; then
echo "LD=\"$LD\"; export LD" >> $1
fi
if test -n "$AR"; then
echo "AR=\"$AR\"; export AR" >> $1
fi
if test -n "$RANLIB"; then
echo "RANLIB=\"$RANLIB\"; export RANLIB" >> $1
fi
if test -n "NM"; then
echo "NM=\"$NM\"; export NM" >> $1
fi
if test -n "$CFLAGS"; then
echo "CFLAGS=\"$CFLAGS\"; export CFLAGS" >> $1
fi
Expand Down
3 changes: 3 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2446,6 +2446,9 @@ AC_MSG_NOTICE([Build option summary:
CXX: $CXX
CPP: $CPP
LD: $LD
AR: $AR
RANLIB: $RANLIB
NM: $NM
CFLAGS: $CFLAGS
CXXFLAGS: $CXXFLAGS
CPPFLAGS: $CPPFLAGS
Expand Down