summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2003-08-26 02:19:12 +0000
committertedu <tedu@openbsd.org>2003-08-26 02:19:12 +0000
commitfbaff49e6a564775f155cec243ee745e5575ae95 (patch)
tree6bfba281dad30fa114b96b9ca14101d4f3bb3f37
parentfix sys_clock_settime. hint from nordin@ ok deraadt@ (diff)
downloadwireguard-openbsd-fbaff49e6a564775f155cec243ee745e5575ae95.tar.xz
wireguard-openbsd-fbaff49e6a564775f155cec243ee745e5575ae95.zip
stop dumping "GCC: (GNU) 2.95.3 20010125 (prerelease, propolice)" into
every object by default. ok avsm@ henning@ marc@
-rw-r--r--gnu/egcs/gcc/gcc-local.17
-rw-r--r--gnu/egcs/gcc/toplev.c2
2 files changed, 7 insertions, 2 deletions
diff --git a/gnu/egcs/gcc/gcc-local.1 b/gnu/egcs/gcc/gcc-local.1
index 941f8897608..93bc664c857 100644
--- a/gnu/egcs/gcc/gcc-local.1
+++ b/gnu/egcs/gcc/gcc-local.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: gcc-local.1,v 1.14 2003/07/25 06:18:44 jmc Exp $
+.\" $OpenBSD: gcc-local.1,v 1.15 2003/08/26 02:19:13 tedu Exp $
.\"
.\" Copyright (c) 2002 Marc Espie
.\" Copyright (c) 2003 Anil Madhavapeddy
@@ -164,6 +164,11 @@ and
used in the
.Ox
kernel.
+.It
+.Nm gcc
+does not store its version string in objects.
+This behavior can be restored with
+.Fl fident .
.El
.Sh ATTRIBUTES
The
diff --git a/gnu/egcs/gcc/toplev.c b/gnu/egcs/gcc/toplev.c
index 77abd5f6f3a..eb33a233902 100644
--- a/gnu/egcs/gcc/toplev.c
+++ b/gnu/egcs/gcc/toplev.c
@@ -770,7 +770,7 @@ int flag_instrument_function_entry_exit = 0;
On SVR4 targets, it also controls whether or not to emit a
string identifying the compiler. */
-int flag_no_ident = 0;
+int flag_no_ident = 1;
#if defined(STACK_PROTECTOR) && defined(STACK_GROWS_DOWNWARD)
/* Nonzero means use propolice as a stack protection method */