1ab3568bd5
2012-01-06 Tristan Gingold <gingold@adacore.com> * config/ia64/t-ia64 (LIB1ASMFUNCS): Move backward compatibility thunks... (CUSTOM_CRTSTUFF, crtbegin.o, crtend.o) (crtbeginS.o, crtendS.o): ... and these to ... * config/ia64/t-ia64-elf: ... this new file. * config.host (ia64*-*-elf*, ia64*-*-freebsd*, ia64*-*-linux*) (ia64*-*-hpux*): Add ia64/t-ia64-elf in tmake_file. From-SVN: r182952
21 lines
740 B
Plaintext
21 lines
740 B
Plaintext
LIB1ASMFUNCS += _fixtfdi _fixunstfdi _floatditf
|
|
|
|
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 \
|
|
-o $@ $<
|
|
crtend.o: $(srcdir)/config/ia64/crtend.S
|
|
$(CC) $(compile_deps) -I. -I$(gcc_objdir) -c -x assembler-with-cpp \
|
|
-o $@ $<
|
|
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
|