aboutsummaryrefslogtreecommitdiff
path: root/boehm-gc
diff options
context:
space:
mode:
authorAlexandre Oliva <oliva@dcc.unicamp.br>1999-07-19 19:17:22 +0000
committerTom Tromey <tromey@gcc.gnu.org>1999-07-19 19:17:22 +0000
commit14eee79459be0f2117f8f4b6a8885af0d17b50c2 (patch)
tree7c3c20e21ef54d39d5b13b9a51b5b72e4dd02ec5 /boehm-gc
parent44ebe2d0ac7f3a0b7fd6433321b3bfee71eea389 (diff)
downloadgcc-14eee79459be0f2117f8f4b6a8885af0d17b50c2.zip
gcc-14eee79459be0f2117f8f4b6a8885af0d17b50c2.tar.gz
gcc-14eee79459be0f2117f8f4b6a8885af0d17b50c2.tar.bz2
Makefile.am (.s.lo): Avoid `#line' directives.
1999-07-19 Alexandre Oliva <oliva@dcc.unicamp.br> * Makefile.am (.s.lo): Avoid `#line' directives. * Makefile.in: Rebuilt. From-SVN: r28175
Diffstat (limited to 'boehm-gc')
-rw-r--r--boehm-gc/ChangeLog5
-rw-r--r--boehm-gc/Makefile.am4
-rw-r--r--boehm-gc/Makefile.in2
3 files changed, 9 insertions, 2 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog
index c157b9e..40db8f3 100644
--- a/boehm-gc/ChangeLog
+++ b/boehm-gc/ChangeLog
@@ -1,5 +1,10 @@
1999-07-19 Alexandre Oliva <oliva@dcc.unicamp.br>
+ * Makefile.am (.s.lo): Avoid `#line' directives.
+ * Makefile.in: Rebuilt.
+
+1999-07-19 Alexandre Oliva <oliva@dcc.unicamp.br>
+
* Makefile.am (*-recursive, *-am, *-multi): Automake does not
generate *-recursive for this Makefile, use *-am instead.
* Makefile.in: Rebuilt.
diff --git a/boehm-gc/Makefile.am b/boehm-gc/Makefile.am
index 4f214f6..cb383d5 100644
--- a/boehm-gc/Makefile.am
+++ b/boehm-gc/Makefile.am
@@ -55,7 +55,9 @@ $(all_objs) : config.h gc_priv.h gc_hdrs.h gc.h gc_mark.h
## FIXME: we shouldn't have to do this, but automake forces us to.
.s.lo:
- $(LTCOMPILE) -x assembler-with-cpp -c $<
+## We use -Wp,-P to strip #line directives. Irix `as' chokes on
+## these.
+ $(LTCOMPILE) -Wp,-P -x assembler-with-cpp -c $<
## We have our own definition of LTCOMPILE because we want to use our
## CFLAGS, not those passed in from the top level make.
diff --git a/boehm-gc/Makefile.in b/boehm-gc/Makefile.in
index 83ede9c..70ecbc4 100644
--- a/boehm-gc/Makefile.in
+++ b/boehm-gc/Makefile.in
@@ -487,7 +487,7 @@ maintainer-clean-generic clean mostlyclean distclean maintainer-clean
$(all_objs) : config.h gc_priv.h gc_hdrs.h gc.h gc_mark.h
.s.lo:
- $(LTCOMPILE) -x assembler-with-cpp -c $<
+ $(LTCOMPILE) -Wp,-P -x assembler-with-cpp -c $<
# Multilib support.
.PHONY: all-multi mostlyclean-multi clean-multi distclean-multi \