aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNix <nix@esperi.demon.co.uk>2000-08-21 18:10:29 +0000
committerJeff Law <law@gcc.gnu.org>2000-08-21 12:10:29 -0600
commitb7ba649aeb3278ed73ef65b0ab1d3ee13c07be85 (patch)
tree98fe0f5d01f781e7931d7d4bceaf4857cad172e0
parent4f3e904e93617c3d7b6cd565dcca4fdc897f0e14 (diff)
downloadgcc-b7ba649aeb3278ed73ef65b0ab1d3ee13c07be85.zip
gcc-b7ba649aeb3278ed73ef65b0ab1d3ee13c07be85.tar.gz
gcc-b7ba649aeb3278ed73ef65b0ab1d3ee13c07be85.tar.bz2
lang-specs.h: Do not process -o or run the assembler if -fsyntax-only.
* lang-specs.h: Do not process -o or run the assembler if -fsyntax-only. From-SVN: r35852
-rw-r--r--gcc/ch/ChangeLog5
-rw-r--r--gcc/ch/lang-specs.h5
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ch/ChangeLog b/gcc/ch/ChangeLog
index 5bbd150..5c53aa7 100644
--- a/gcc/ch/ChangeLog
+++ b/gcc/ch/ChangeLog
@@ -1,3 +1,8 @@
+2000-08-21 Nix <nix@esperi.demon.co.uk>
+
+ * lang-specs.h: Do not process -o or run the assembler if
+ -fsyntax-only.
+
2000-08-07 Kazu Hirata <kazu@hxi.com>
* decl.c: Fix a comment typo.
diff --git a/gcc/ch/lang-specs.h b/gcc/ch/lang-specs.h
index 5b0b6b2..adedbff 100644
--- a/gcc/ch/lang-specs.h
+++ b/gcc/ch/lang-specs.h
@@ -26,5 +26,6 @@ Boston, MA 02111-1307, USA. */
{"@chill",
"tradcpp0 -lang-chill %{!no-gcc:-D__GNUCHILL__=%v1} %(cpp_options)\
%{!M:%{!MM:%{!E:%{!pipe:%g.i} |\n\
- cc1chill %{!pipe:%g.i} %(cc1_options) %{!S:-o %{|!pipe:%g.s} |\n\
- as %(asm_options) %{!pipe:%g.s} %A }}}}\n"},
+ cc1chill %{!pipe:%g.i} %(cc1_options)\
+ %{!fsyntax-only:%{!S:-o %{|!pipe:%g.s} |\n\
+ as %(asm_options) %{!pipe:%g.s} %A }}}}}\n"},