mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-23 21:40:12 +00:00
75eff3fe90
This patch moves the AArch64 port to the main sysdeps hierarchy. The move is essentially: git mv ports/sysdeps/aarch64 sysdeps/aarch64 git mv ports/sysdeps/unix/sysv/linux/aarch64 sysdeps/unix/sysv/linux/aarch64 The README is updated and I've updated ChangeLog.aarch64 along the lines of the ARM move. The AArch64 build has been tested to confirm that there were no changes in objdump -dr output or the shared objects.
40 lines
962 B
Makefile
40 lines
962 B
Makefile
ifeq ($(subdir),csu)
|
|
sysdep_routines += __read_tp libc-__read_tp
|
|
static-only-routines += __read_tp
|
|
shared-only-routines += libc-__read_tp
|
|
endif
|
|
|
|
ifeq ($(subdir),elf)
|
|
sysdep_routines += dl-vdso
|
|
sysdep-rtld-routines += __read_tp
|
|
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
|
|
|
|
ifeq ($(subdir),misc)
|
|
sysdep_headers += sys/elf.h
|
|
endif
|
|
|
|
ifeq ($(subdir),stdlib)
|
|
gen-as-const-headers += ucontext_i.sym
|
|
endif
|
|
|
|
abi-variants := lp64
|
|
abi-variants += lp64_be
|
|
|
|
ifeq (,$(filter $(default-abi),$(abi-variants)))
|
|
Unknown ABI, must be one of $(abi-variants)
|
|
endif
|
|
|
|
abi-lp64-options := -U__AARCH64EB__
|
|
abi-lp64-condition := !defined __AARCH64EB__
|
|
abi-lp64-ld-soname := ld-linux-aarch64.so.1
|
|
|
|
abi-lp64_be-options := -D__AARCH64EB__
|
|
abi-lp64_be-condition := defined __AARCH64EB__
|
|
abi-lp64_be-ld-soname := ld-linux-aarch64_be.so.1
|