diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-04-07 16:31:05 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-04-07 16:31:05 +0000 |
commit | 7f9a8b5f55cc1409cc93277bbe8449a898bac835 (patch) | |
tree | 8d51e709a8586318fbad65a0c0f2e0ad660cd517 /glibcbug.in | |
parent | 27a5bb33ac41b838dd3c4ebdc3a75a6ad666dfc7 (diff) | |
download | glibc-7f9a8b5f55cc1409cc93277bbe8449a898bac835.tar.gz |
Update.
1998-04-07 19:03 Zack Weinberg <zack@rabi.phys.columbia.edu>
* glibcbug.in: On linux, report version of kernel headers seen
by compiler.
Diffstat (limited to 'glibcbug.in')
-rw-r--r-- | glibcbug.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/glibcbug.in b/glibcbug.in index dd953c5c2d..cc570408f2 100644 --- a/glibcbug.in +++ b/glibcbug.in @@ -107,6 +107,12 @@ ARCH=`[ -f /bin/arch ] && /bin/arch` MACHINE=`[ -f /bin/machine ] && /bin/machine` CCVERSION=`$CC -v 2>&1 | sed -n 's/gcc version //p'` +case $HOST in *linux*) + KHDRS=`(echo '#include <linux/version.h> + echo '! UTS_RELEASE' ) | + $CC -E - | sed -n '/!/s/[! "]//gp'`;; +esac + ORGANIZATION_C='<organization of PR author (multiple lines)>' SYNOPSIS_C='<synopsis of the problem (one line)>' SEVERITY_C='<[ non-critical | serious | critical ] (one line)>' @@ -149,6 +155,7 @@ ${ORGANIZATION- $ORGANIZATION_C} `[ -n "$CFLAGS" ] && echo Build CFLAGS: $CFLAGS` `[ -n "$CC" ] && echo Build CC: $CC` `[ -n "$CCVERSION" ] && echo Compiler version: $CCVERSION` +`[ -n "$KHDRS" ] && echo Kernel headers: $KHDRS` `[ -n "$VERSIONING" ] && echo Symbol versioning: $VERSIONING` `[ -n "$BUILD_STATIC" ] && echo Build static: $BUILD_STATIC` `[ -n "$BUILD_SHARED" ] && echo Build shared: $BUILD_SHARED` |