mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-02 01:40:07 +00:00
18 lines
407 B
Makefile
18 lines
407 B
Makefile
syscall-list-variants := 32bit 64bit
|
|
syscall-list-32bit-options := -U__powerpc64__
|
|
syscall-list-32bit-condition := __WORDSIZE == 32
|
|
syscall-list-64bit-options := -D__powerpc64__
|
|
syscall-list-64bit-condition := __WORDSIZE == 64
|
|
|
|
ifeq ($(subdir),rt)
|
|
librt-routines += rt-sysdep
|
|
endif
|
|
|
|
ifeq ($(subdir),stdlib)
|
|
gen-as-const-headers += ucontext_i.sym
|
|
endif
|
|
|
|
ifeq ($(subdir),elf)
|
|
sysdep_routines += dl-vdso
|
|
endif
|