mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 07:31:32 +00:00
8 lines
407 B
Plaintext
8 lines
407 B
Plaintext
# Filter out the following TImode functions and provide backward binary
|
|
# compatibility.
|
|
# Replace __dvxf3 _fixtfdi _fixunstfdi _floatditf
|
|
libgcc1-tf-functions = __divxf3 _fixtfdi _fixunstfdi _floatditf
|
|
LIB1ASMFUNCS := $(filter-out $(libgcc1-tf-functions), $(LIB1ASMFUNCS))
|
|
libgcc1-tf-compats = $(addsuffix .S, $(libgcc1-tf-functions))
|
|
LIB2ADD += $(addprefix $(srcdir)/config/ia64/, $(libgcc1-tf-compats))
|