blob: 7ea433f21fbccbd8ec38a78abebcdd910230ef7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# See Makeconfig regarding the use of default-abi.
default-abi := 64
sysdep-CFLAGS += -fcall-used-g6
LD += -melf64_sparc
ifeq ($(subdir),stdlib)
sysdep_routines += __start_context
endif
ifeq ($(subdir),nptl)
CFLAGS-pause.c += -fexceptions
CFLAGS-sigsuspend.c += -fexceptions
endif
|