aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorRichard Sandiford <rsandifo@redhat.com>2004-12-02 11:05:13 +0000
committerRichard Sandiford <rsandifo@gcc.gnu.org>2004-12-02 11:05:13 +0000
commitafabd8e62cdcf6935dbe819278aa0b62c0a8c291 (patch)
tree474f34608ab902f9ddc5b7629c88676c03a26731 /config
parent5191f2ba91f987277423dec3c58ac37bd76a814b (diff)
downloadgcc-afabd8e62cdcf6935dbe819278aa0b62c0a8c291.zip
gcc-afabd8e62cdcf6935dbe819278aa0b62c0a8c291.tar.gz
gcc-afabd8e62cdcf6935dbe819278aa0b62c0a8c291.tar.bz2
Introduce and use config/gcc-version.m4.
From-SVN: r91625
Diffstat (limited to 'config')
-rw-r--r--config/ChangeLog4
-rw-r--r--config/gcc-version.m428
2 files changed, 32 insertions, 0 deletions
diff --git a/config/ChangeLog b/config/ChangeLog
index 5e417bd..f560a9f 100644
--- a/config/ChangeLog
+++ b/config/ChangeLog
@@ -1,3 +1,7 @@
+2004-12-02 Richard Sandiford <rsandifo@redhat.com>
+
+ * config/gcc-version.m4: New file.
+
2004-09-24 Zack Weinberg <zack@codesourcery.com>
* warnings.m4: New file.
diff --git a/config/gcc-version.m4 b/config/gcc-version.m4
new file mode 100644
index 0000000..8de74bb
--- /dev/null
+++ b/config/gcc-version.m4
@@ -0,0 +1,28 @@
+dnl Usage: TL_AC_GCC_VERSION(TOPSRCDIR)
+dnl
+dnl Set up the variables:
+dnl
+dnl gcc_version_trigger: pathname of gcc's version.c, if available
+dnl gcc_version_full: full gcc version string
+dnl gcc_version: the first "word" in $gcc_version_full
+dnl
+dnl TOPSRCDIR is the top-level source directory.
+AC_DEFUN([TL_AC_GCC_VERSION],
+[
+changequote(,)dnl
+if test "${with_gcc_version_trigger+set}" = set; then
+ gcc_version_trigger=$with_gcc_version_trigger
+else
+ gcc_version_trigger=$1/gcc/version.c
+fi
+if test -f "${gcc_version_trigger}"; then
+ gcc_version_full=`grep version_string "${gcc_version_trigger}" | sed -e 's/.*"\([^"]*\)".*/\1/'`
+else
+ gcc_version_full=`$CC -v 2>&1 | sed -n 's/^gcc version //p'`
+fi
+gcc_version=`echo ${gcc_version_full} | sed -e 's/\([^ ]*\) .*/\1/'`
+changequote([,])dnl
+AC_SUBST(gcc_version_trigger)
+AC_SUBST(gcc_version_full)
+AC_SUBST(gcc_version)
+])dnl