Skip to content

Commit b057514

Browse files
build: List *CPPFLAGS before *CFLAGS like on the compiler command line
1 parent 0120b33 commit b057514

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

configure.ac

+8-8
Original file line numberDiff line numberDiff line change
@@ -366,8 +366,8 @@ if test x"$use_ecmult_static_precomputation" != x"no"; then
366366
fi
367367
# If we're not cross-compiling, simply use the same compiler for building the static precompation code.
368368
CC_FOR_BUILD="$CC"
369-
SECP_CFLAGS_FOR_BUILD="$SECP_CFLAGS"
370369
CPPFLAGS_FOR_BUILD="$CPPFLAGS"
370+
SECP_CFLAGS_FOR_BUILD="$SECP_CFLAGS"
371371
CFLAGS_FOR_BUILD="$CFLAGS"
372372
LDFLAGS_FOR_BUILD="$LDFLAGS"
373373
else
@@ -378,10 +378,10 @@ if test x"$use_ecmult_static_precomputation" != x"no"; then
378378
cross_compiling=no
379379
SAVE_CC="$CC"
380380
CC="$CC_FOR_BUILD"
381-
SAVE_CFLAGS="$CFLAGS"
382-
CFLAGS="$CFLAGS_FOR_BUILD"
383381
SAVE_CPPFLAGS="$CPPFLAGS"
384382
CPPFLAGS="$CPPFLAGS_FOR_BUILD"
383+
SAVE_CFLAGS="$CFLAGS"
384+
CFLAGS="$CFLAGS_FOR_BUILD"
385385
SAVE_LDFLAGS="$LDFLAGS"
386386
LDFLAGS="$LDFLAGS_FOR_BUILD"
387387

@@ -396,14 +396,14 @@ if test x"$use_ecmult_static_precomputation" != x"no"; then
396396
# Restore the environment
397397
cross_compiling=$save_cross_compiling
398398
CC="$SAVE_CC"
399-
CFLAGS="$SAVE_CFLAGS"
400399
CPPFLAGS="$SAVE_CPPFLAGS"
400+
CFLAGS="$SAVE_CFLAGS"
401401
LDFLAGS="$SAVE_LDFLAGS"
402402

403403
if test x"$working_native_cc" = x"no"; then
404404
AC_MSG_RESULT([no])
405405
set_precomp=no
406-
m4_define([please_set_for_build], [Please set CC_FOR_BUILD, CFLAGS_FOR_BUILD, CPPFLAGS_FOR_BUILD, and/or LDFLAGS_FOR_BUILD.])
406+
m4_define([please_set_for_build], [Please set CC_FOR_BUILD, CPPFLAGS_FOR_BUILD, CFLAGS_FOR_BUILD, and/or LDFLAGS_FOR_BUILD.])
407407
if test x"$use_ecmult_static_precomputation" = x"yes"; then
408408
AC_MSG_ERROR([native compiler ${CC_FOR_BUILD} does not produce working binaries. please_set_for_build])
409409
else
@@ -416,9 +416,9 @@ if test x"$use_ecmult_static_precomputation" != x"no"; then
416416
fi
417417

418418
AC_SUBST(CC_FOR_BUILD)
419+
AC_SUBST(CPPFLAGS_FOR_BUILD)
419420
AC_SUBST(SECP_CFLAGS_FOR_BUILD)
420421
AC_SUBST(CFLAGS_FOR_BUILD)
421-
AC_SUBST(CPPFLAGS_FOR_BUILD)
422422
AC_SUBST(LDFLAGS_FOR_BUILD)
423423
else
424424
set_precomp=no
@@ -531,15 +531,15 @@ fi
531531
echo
532532
echo " valgrind = $enable_valgrind"
533533
echo " CC = $CC"
534+
echo " CPPFLAGS = $CPPFLAGS"
534535
echo " SECP_CFLAGS = $SECP_CFLAGS"
535536
echo " CFLAGS = $CFLAGS"
536-
echo " CPPFLAGS = $CPPFLAGS"
537537
echo " LDFLAGS = $LDFLAGS"
538538
echo
539539
if test x"$set_precomp" = x"yes"; then
540540
echo " CC_FOR_BUILD = $CC_FOR_BUILD"
541+
echo " CPPFLAGS_FOR_BUILD = $CPPFLAGS_FOR_BUILD"
541542
echo " SECP_CFLAGS_FOR_BUILD = $SECP_CFLAGS_FOR_BUILD"
542543
echo " CFLAGS_FOR_BUILD = $CFLAGS_FOR_BUILD"
543-
echo " CPPFLAGS_FOR_BUILD = $CPPFLAGS_FOR_BUILD"
544544
echo " LDFLAGS_FOR_BUILD = $LDFLAGS_FOR_BUILD"
545545
fi

0 commit comments

Comments
 (0)