summaryrefslogtreecommitdiff
path: root/gnu/egcs/gcc/f
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>1999-05-31 15:31:50 +0000
committerMarc Espie <espie@cvs.openbsd.org>1999-05-31 15:31:50 +0000
commitb0a2690cfda4e0a28e4a1b7b7b005432200c8eb1 (patch)
treedeecd33645ee9c6c6f916c92a31bbbf86013287e /gnu/egcs/gcc/f
parentf86ad3f2f34ad7607d124835b78fe90ed681ad09 (diff)
Work-around for i386 linker bug
Diffstat (limited to 'gnu/egcs/gcc/f')
-rw-r--r--gnu/egcs/gcc/f/lang-options.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/egcs/gcc/f/lang-options.h b/gnu/egcs/gcc/f/lang-options.h
index 417159cd4b4..1da8cc1b615 100644
--- a/gnu/egcs/gcc/f/lang-options.h
+++ b/gnu/egcs/gcc/f/lang-options.h
@@ -31,7 +31,10 @@ DEFINE_LANG_NAME ("Fortran")
/* Use of FTNOPT makes tracking changes between FSF-g77 and egcs-g77
easier, since FSF-gcc doesn't support doc strings. */
-#define FTNOPT(opt,doc) { opt, doc },
+/* XXX OpenBSD i386 linker has a bug. Currently, we trim down Fortran
+ options size to avoid triggering that bug. */
+/* #define FTNOPT(opt,doc) { opt, doc }, */
+#define FTNOPT(opt,doc) { opt, "" },
FTNOPT( "-fversion", "Print g77-specific compiler version info, run internal tests" )
FTNOPT( "-fnull-version", "" )