mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-12 14:20:13 +00:00
60e8270d6c
* sysdeps/unix/sysv/linux/sparc/sparc64/__start_context.S: New file. * sysdeps/unix/sysv/linux/sparc/sparc64/makecontext.c (__start_context): Declare. (__makecontext_ret): Delete. (__makecontext): Hook up __start_context instead of __makecontext_ret. * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile (sysdep_routines): Add __start_context when in stdlib.
10 lines
188 B
Makefile
10 lines
188 B
Makefile
# 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
|