summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xBuild/source/Build5
-rw-r--r--Build/source/ChangeLog6
-rwxr-xr-xBuild/source/configure15
-rw-r--r--Build/source/configure.ac11
4 files changed, 34 insertions, 3 deletions
diff --git a/Build/source/Build b/Build/source/Build
index ec26c40a7ca..efe904dd660 100755
--- a/Build/source/Build
+++ b/Build/source/Build
@@ -64,8 +64,7 @@ if test "x$1" = x--debug || test "x$1" = x-g; then
: ${TL_COMPILER_GFLAGS=-g}
c="CFLAGS='$TL_COMPILER_GFLAGS'"
cxx="CXXFLAGS='$TL_COMPILER_GFLAGS'"
- objcxx="OBJCXXFLAGS='$TL_COMPILER_GFLAGS'"
- TL_BUILD_ENV="$c $cxx $objcxx $TL_BUILD_ENV"
+ TL_BUILD_ENV="$c $cxx $TL_BUILD_ENV"
fi
# allow override of configure location.
@@ -105,7 +104,7 @@ cd $TL_WORKDIR || exit 1
# configure && make. Keep the tee outside, so that we can detect
# failure at either step.
{
- echo "starting `date`"
+ echo "starting TeX Live build at `date`"
echo "on `uname -a`"
echo "in `pwd`"
echo "$0 $*"
diff --git a/Build/source/ChangeLog b/Build/source/ChangeLog
index 60852a61ebb..a3a1768bd2c 100644
--- a/Build/source/ChangeLog
+++ b/Build/source/ChangeLog
@@ -1,3 +1,9 @@
+2014-10-21 Karl Berry <karl@tug.org>
+
+ * configure.ac: report CC/CXX values, with --version output
+ if available.
+ * Build: no need for objc any more.
+
2014-08-22 Peter Breitenlohner <peb@mppmu.mpg.de>
* tardate.ac: Switch to 2014-08-22.
diff --git a/Build/source/configure b/Build/source/configure
index 393472977cd..998173e46ed 100755
--- a/Build/source/configure
+++ b/Build/source/configure
@@ -24121,7 +24121,18 @@ $as_echo "
case $kpse_src$kpse_bld in
*' '*) as_fn_error $? "Absolute source and/or build path with embedded spaces" "$LINENO" 5;;
esac
+
+cc_version=`$CC --version 2>/dev/null | sed 1q`
+test -n "$cc_version" && cc_version=" ($cc_version)"
+#
+cxx_version=`$CXX --version 2>/dev/null | sed 1q`
+test -n "$cxx_version" && cxx_version=" ($cxx_version)"
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: result:
+ C compiler (CC): $CC$cc_version
+ C++ compiler (CXX): $CXX$cxx_version
+ PATH: $PATH
+
enable_native_texlive_build: $enable_native_texlive_build
enable_largefile: $enable_largefile
enable_shared: $enable_shared
@@ -24142,6 +24153,10 @@ esac
** Next run \`make' to configure and build each library and program.
" >&5
$as_echo "
+ C compiler (CC): $CC$cc_version
+ C++ compiler (CXX): $CXX$cxx_version
+ PATH: $PATH
+
enable_native_texlive_build: $enable_native_texlive_build
enable_largefile: $enable_largefile
enable_shared: $enable_shared
diff --git a/Build/source/configure.ac b/Build/source/configure.ac
index 7791d9a5e90..3144b054e3d 100644
--- a/Build/source/configure.ac
+++ b/Build/source/configure.ac
@@ -168,7 +168,18 @@ AC_MSG_RESULT([
case $kpse_src$kpse_bld in
*' '*) AC_MSG_ERROR([Absolute source and/or build path with embedded spaces]);;
esac
+
+cc_version=`$CC --version 2>/dev/null | sed 1q`
+test -n "$cc_version" && cc_version=" ($cc_version)"
+#
+cxx_version=`$CXX --version 2>/dev/null | sed 1q`
+test -n "$cxx_version" && cxx_version=" ($cxx_version)"
+
AC_MSG_RESULT([
+ C compiler (CC): $CC$cc_version
+ C++ compiler (CXX): $CXX$cxx_version
+ PATH: $PATH
+
enable_native_texlive_build: $enable_native_texlive_build
enable_largefile: $enable_largefile
enable_shared: $enable_shared