diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-08-28 17:14:52 -0400 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-08-28 17:14:52 -0400 |
| commit | 2c5d6f1fb570db1a287532d3291d284710e756bf (patch) | |
| tree | f91f0325bd809c632139987d72ebd1dfe781c4d8 /configure.in | |
| parent | 94db6664e2238c4f3879be67bcded085d5a1b872 (diff) | |
| download | postgresql-2c5d6f1fb570db1a287532d3291d284710e756bf.tar.gz | |
Include $cc_string in the info reported by a configure run.
Without this, it's not very easy to tell which compiler version a buildfarm
animal is actually using at the moment.
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/configure.in b/configure.in index a844afc67f..7ef9548a49 100644 --- a/configure.in +++ b/configure.in @@ -1860,13 +1860,6 @@ else PGAC_PROG_CC_LDFLAGS_OPT([-Wl,--as-needed], $link_test_func) fi - -# Begin output steps - -AC_MSG_NOTICE([using CFLAGS=$CFLAGS]) -AC_MSG_NOTICE([using CPPFLAGS=$CPPFLAGS]) -AC_MSG_NOTICE([using LDFLAGS=$LDFLAGS]) - # Create compiler version string if test x"$GCC" = x"yes" ; then cc_string=`${CC} --version | sed q` @@ -1889,6 +1882,13 @@ $AWK '{printf "%d%02d%02d", $1, $2, (NF >= 3) ? $3 : 0}'`"] AC_DEFINE_UNQUOTED(PG_VERSION_NUM, $PG_VERSION_NUM, [PostgreSQL version as a number]) +# Begin output steps + +AC_MSG_NOTICE([using compiler=$cc_string]) +AC_MSG_NOTICE([using CFLAGS=$CFLAGS]) +AC_MSG_NOTICE([using CPPFLAGS=$CPPFLAGS]) +AC_MSG_NOTICE([using LDFLAGS=$LDFLAGS]) + # prepare build tree if outside source tree # Note 1: test -ef might not exist, but it's more reliable than `pwd`. # Note 2: /bin/pwd might be better than shell's built-in at getting |
