summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorRichard Sandiford <rdsandiford@googlemail.com>2004-12-02 11:09:36 +0000
committerRichard Sandiford <rdsandiford@googlemail.com>2004-12-02 11:09:36 +0000
commitafdaeaab51dd74b8c2029b7f7cdfd1738ae35e5f (patch)
tree61167298c04e0475c3062d593321018383802029 /config
parentf77390bbdb5b43a34436e604c1ac19a7ef621c2d (diff)
downloadcygnal-afdaeaab51dd74b8c2029b7f7cdfd1738ae35e5f.tar.gz
cygnal-afdaeaab51dd74b8c2029b7f7cdfd1738ae35e5f.tar.bz2
cygnal-afdaeaab51dd74b8c2029b7f7cdfd1738ae35e5f.zip
Introduce and use config/gcc-version.m4.
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 5e417bdd2..dd64c4548 100644
--- a/config/ChangeLog
+++ b/config/ChangeLog
@@ -1,3 +1,7 @@
+2004-12-02 Richard Sandiford <rsandifo@redhat.com>
+
+ * 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 000000000..8de74bb2a
--- /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