diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-07-19 19:17:22 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-07-19 19:17:22 +0000 |
commit | 9a094c7f65feb6b02fde8d337eb2d34ba91d0394 (patch) | |
tree | 7c3c20e21ef54d39d5b13b9a51b5b72e4dd02ec5 /boehm-gc/Makefile.am | |
parent | 83fd3344542ce5dd02b5fca0a2a8691610805c8e (diff) | |
download | gcc-9a094c7f65feb6b02fde8d337eb2d34ba91d0394.tar.gz |
1999-07-19 Alexandre Oliva <oliva@dcc.unicamp.br>
* Makefile.am (.s.lo): Avoid `#line' directives.
* Makefile.in: Rebuilt.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@28175 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc/Makefile.am')
-rw-r--r-- | boehm-gc/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/boehm-gc/Makefile.am b/boehm-gc/Makefile.am index 4f214f6daf0..cb383d55913 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. |