aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2001-06-10 19:31:56 -0700
committerRichard Henderson <rth@gcc.gnu.org>2001-06-10 19:31:56 -0700
commitad5ef673cabd1498912ef20b645cd12d2d4f66f2 (patch)
tree5796ec33d9051eb4655b9f538198cb8074498490 /gcc
parentc474f76bebc338714561ea36b7ae9395dc62e981 (diff)
downloadgcc-ad5ef673cabd1498912ef20b645cd12d2d4f66f2.zip
gcc-ad5ef673cabd1498912ef20b645cd12d2d4f66f2.tar.gz
gcc-ad5ef673cabd1498912ef20b645cd12d2d4f66f2.tar.bz2
* config/alpha/osf5.h (ASM_OLDAS_SPEC): Add -c.
From-SVN: r43166
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/alpha/osf5.h8
2 files changed, 10 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index adf2a20..c7f94da 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2001-06-10 Richard Henderson <rth@redhat.com>
+
+ * config/alpha/osf5.h (ASM_OLDAS_SPEC): Add -c.
+
2001-06-10 Alexandre Oliva <aoliva@redhat.com>
* doc/invoke.texi (MN10300 Options): Document -mno-crt0.
diff --git a/gcc/config/alpha/osf5.h b/gcc/config/alpha/osf5.h
index eb4c039..d9b70f8 100644
--- a/gcc/config/alpha/osf5.h
+++ b/gcc/config/alpha/osf5.h
@@ -38,7 +38,11 @@
It is clearly not desirable to depend on this undocumented flag, and
Compaq wants -oldas to go away soon, but until they have released a
- new adu that works with mips-tfile, this is the only option. */
+ new adu that works with mips-tfile, this is the only option.
+
+ In some versions of the DTK, the assembler driver invokes ld after
+ assembly. This has been fixed in current versions, but adding -c
+ works as expected for all versions. */
#undef ASM_OLDAS_SPEC
-#define ASM_OLDAS_SPEC "-oldas"
+#define ASM_OLDAS_SPEC "-oldas -c"