We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e767e61 commit da7e6d4Copy full SHA for da7e6d4
build/common.m4
@@ -40,6 +40,15 @@ EOF
40
if test -n "$LD"; then
41
echo "LD=\"$LD\"; export LD" >> $1
42
fi
43
+ if test -n "$AR"; then
44
+ echo "AR=\"$AR\"; export AR" >> $1
45
+ fi
46
+ if test -n "$RANLIB"; then
47
+ echo "RANLIB=\"$RANLIB\"; export RANLIB" >> $1
48
49
+ if test -n "NM"; then
50
+ echo "NM=\"$NM\"; export NM" >> $1
51
52
if test -n "$CFLAGS"; then
53
echo "CFLAGS=\"$CFLAGS\"; export CFLAGS" >> $1
54
configure.ac
@@ -2446,6 +2446,9 @@ AC_MSG_NOTICE([Build option summary:
2446
CXX: $CXX
2447
CPP: $CPP
2448
LD: $LD
2449
+ AR: $AR
2450
+ RANLIB: $RANLIB
2451
+ NM: $NM
2452
CFLAGS: $CFLAGS
2453
CXXFLAGS: $CXXFLAGS
2454
CPPFLAGS: $CPPFLAGS
0 commit comments