mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-23 13:30:06 +00:00
49e182c737
Only the placeholder compatibility symbols are left now. The __errno_location symbol was removed (moved) using scripts/move-symbol-to-libc.py. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
17 lines
317 B
Makefile
17 lines
317 B
Makefile
abi-variants := 32 64
|
|
abi-32-condition := __WORDSIZE == 32
|
|
abi-64-condition := __WORDSIZE == 64
|
|
|
|
ifeq ($(subdir),rt)
|
|
librt-routines += rt-sysdep
|
|
librt-shared-only-routines += rt-sysdep
|
|
endif
|
|
|
|
ifeq ($(subdir),sysvipc)
|
|
sysdep_routines += getshmlba
|
|
endif
|
|
|
|
ifeq ($(subdir),signal)
|
|
sysdep_routines += sigreturn_stub
|
|
endif
|