diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-28 02:54:05 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-28 02:54:05 +0000 |
commit | 6f635997ec70db84edc184ad559e4e026f9a3287 (patch) | |
tree | 5b2dd089bedbe06704ac59494411ee39cfd5b8db /gcc/config/i386/t-dgux | |
parent | cf068af56f8894e400ee7bf3f8ca51be2ae3a103 (diff) | |
download | gcc-6f635997ec70db84edc184ad559e4e026f9a3287.tar.gz |
* i386/t-dgux (EXTRA_PARTS): Add crti.o
(crti.o): Add build rule and dependencies.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@27218 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/t-dgux')
-rw-r--r-- | gcc/config/i386/t-dgux | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/config/i386/t-dgux b/gcc/config/i386/t-dgux index 292331f22a9..1bf024a4c19 100644 --- a/gcc/config/i386/t-dgux +++ b/gcc/config/i386/t-dgux @@ -1,4 +1,8 @@ # # target makefile for dgux # -EXTRA_PARTS=crtbegin.o crtend.o +EXTRA_PARTS=crti.o crtbegin.o crtend.o + +crti.o: $(srcdir)/config/i386/sol2-ci.asm $(GCC_PASSES) + sed -e '/^!/d' <$(srcdir)/config/i386/sol2-ci.asm >crti.s + $(GCC_FOR_TARGET) -c -o crti.o crti.s |