1997-07-12 23:32:57 +00:00
|
|
|
ifeq ($(subdir),signal)
|
|
|
|
#sysdep_routines += sigsuspend
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(subdir),misc)
|
2000-07-28 13:37:26 +00:00
|
|
|
sysdep_routines += cachectl cacheflush sysmips _test_and_set
|
1997-07-12 23:32:57 +00:00
|
|
|
|
2000-09-06 08:21:55 +00:00
|
|
|
sysdep_headers += sys/cachectl.h sys/sysmips.h sys/tas.h
|
2012-05-30 23:44:17 +00:00
|
|
|
endif
|
2003-03-17 15:50:05 +00:00
|
|
|
|
2012-10-29 18:42:39 +00:00
|
|
|
# Get value of default-abi.
|
|
|
|
include $(common-objpfx)default-abi.make
|
|
|
|
|
|
|
|
abi-variants := o32_soft o32_hard n32_soft n32_hard n64_soft n64_hard
|
|
|
|
|
|
|
|
ifeq (,$(filter $(default-abi),$(abi-variants)))
|
|
|
|
Unknown ABI, must be one of $(abi-variants)
|
|
|
|
endif
|
|
|
|
|
2012-05-30 15:58:45 +00:00
|
|
|
abi-includes := sgidefs.h
|
2012-10-29 18:42:39 +00:00
|
|
|
|
|
|
|
# _MIPS_SIM_ABI32 == 1, _MIPS_SIM_NABI32 == 2, _MIPS_SIM_ABI64 == 3
|
|
|
|
abi-o32_soft-options := -U_MIPS_SIM -D_MIPS_SIM=1 \
|
|
|
|
-D__mips_soft_float -U__mips_hard_float
|
|
|
|
abi-o32_soft-condition := defined(__mips_soft_float) \
|
|
|
|
&& (_MIPS_SIM == _MIPS_SIM_ABI32)
|
|
|
|
abi-o32_hard-options := -U_MIPS_SIM -D_MIPS_SIM=1 \
|
|
|
|
-D__mips_hard_float -U__mips_soft_float
|
|
|
|
abi-o32_hard-condition := defined(__mips_hard_float) \
|
|
|
|
&& (_MIPS_SIM == _MIPS_SIM_ABI32)
|
|
|
|
abi-n32_soft-options := -U_MIPS_SIM -D_MIPS_SIM=2 \
|
|
|
|
-D__mips_soft_float -U__mips_hard_float
|
|
|
|
abi-n32_soft-condition := defined(__mips_soft_float) \
|
|
|
|
&& (_MIPS_SIM == _MIPS_SIM_NABI32)
|
|
|
|
abi-n32_hard-options := -U_MIPS_SIM -D_MIPS_SIM=2 \
|
|
|
|
-D__mips_hard_float -U__mips_soft_float
|
|
|
|
abi-n32_hard-condition := defined(__mips_hard_float) \
|
|
|
|
&& (_MIPS_SIM == _MIPS_SIM_NABI32)
|
|
|
|
abi-n64_soft-options := -U_MIPS_SIM -D_MIPS_SIM=3 \
|
|
|
|
-D__mips_soft_float -U__mips_hard_float
|
|
|
|
abi-n64_soft-condition := defined(__mips_soft_float) \
|
|
|
|
&& (_MIPS_SIM == _MIPS_SIM_ABI64)
|
|
|
|
abi-n64_hard-options := -U_MIPS_SIM -D_MIPS_SIM=3 \
|
|
|
|
-D__mips_hard_float -U__mips_soft_float
|
|
|
|
abi-n64_hard-condition := defined(__mips_hard_float) \
|
|
|
|
&& (_MIPS_SIM == _MIPS_SIM_ABI64)
|
2009-01-27 15:32:55 +00:00
|
|
|
|
|
|
|
ifeq ($(subdir),elf)
|
|
|
|
ifeq ($(build-shared),yes)
|
|
|
|
# This is needed for DSO loading from static binaries.
|
|
|
|
sysdep-dl-routines += dl-static
|
|
|
|
sysdep_routines += dl-static
|
|
|
|
sysdep-rtld-routines += dl-static
|
|
|
|
endif
|
|
|
|
endif
|
2009-04-18 17:32:04 +00:00
|
|
|
|
|
|
|
ifeq ($(subdir),stdlib)
|
|
|
|
gen-as-const-headers += ucontext_i.sym
|
|
|
|
endif
|