print some debug information
This commit is contained in:
parent
c5f1204f94
commit
ee45399045
|
|
@ -34,8 +34,12 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
|||
|
||||
ext_CFLAGS="${CFLAGS+yes}"
|
||||
|
||||
echo "!!!!!!!!! before A_C_PROG_CC CFLAGS=\"${CFLAGS-<unset>}\" GCC=\"${GCC-<unset>}\" ext_CFLAGS=\"${ext_CFLAGS-<unset>}\""
|
||||
|
||||
AC_PROG_CC
|
||||
|
||||
echo "!!!!!!!!! after A_C_PROG_CC CFLAGS=\"${CFLAGS-<unset>}\" GCC=\"${GCC-<unset>}\" ext_CFLAGS=\"${ext_CFLAGS-<unset>}\""
|
||||
|
||||
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
|
||||
|
||||
AC_SUBST([AM_CPPFLAGS], ['-I. -I$(srcdir) -I$(top_builddir)/src/include'])
|
||||
|
|
@ -273,6 +277,8 @@ AM_MAINTAINER_MODE
|
|||
# Set default CFLAGS - only use -Wall if we have gcc
|
||||
|
||||
# the above AC_PROG_CC may set CFLAGS to "-O2 -g"
|
||||
echo "!!!!!!!!! before ngspice CFLAGS massage, CFLAGS=\"${CFLAGS-<unset>}\" GCC=\"${GCC-<unset>}\" ext_CFLAGS=\"${ext_CFLAGS-<unset>}\""
|
||||
|
||||
if test "x$ext_CFLAGS" != xyes; then
|
||||
|
||||
if test "x$enable_debug" = xno; then
|
||||
|
|
@ -297,6 +303,8 @@ if test "x$ext_CFLAGS" != xyes; then
|
|||
|
||||
fi
|
||||
|
||||
echo "!!!!!!!!! after ngspice CFLAGS massage, CFLAGS=\"${CFLAGS-<unset>}\" GCC=\"${GCC-<unset>}\" ext_CFLAGS=\"${ext_CFLAGS-<unset>}\""
|
||||
|
||||
# the profiling option
|
||||
if test "x$enable_gprof" = xyes; then
|
||||
# Probably other compilers support -pg or something similar;
|
||||
|
|
|
|||
Loading…
Reference in New Issue