blob: 59cf3aa75f470b477637e9e502485e38a76511a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
CUSTOM_CRTSTUFF = yes
# Assemble startup files.
# FIXME: -I$(gcc_objdir) is necessary to find auto-host.h. Really?
crtbegin.o: $(srcdir)/config/ia64/crtbegin.S
$(CC) $(compile_deps) -I. -I$(gcc_objdir) -c -x assembler-with-cpp $<
crtend.o: $(srcdir)/config/ia64/crtend.S
$(CC) $(compile_deps) -I. -I$(gcc_objdir) -c -x assembler-with-cpp $<
crtbeginS.o: $(srcdir)/config/ia64/crtbegin.S
$(CC) $(compile_deps) -I. -I$(gcc_objdir) -c -x assembler-with-cpp \ -o $@ -DSHARED $<
crtendS.o: $(srcdir)/config/ia64/crtend.S
$(CC) $(compile_deps) -I. -I$(gcc_objdir) -c -x assembler-with-cpp \
-o $@ -DSHARED $<
SHLIB_MAPFILES += $(srcdir)/config/ia64/libgcc-ia64.ver
|