blob: 3b012a2f0f816b2c387c7d321f878b31b2e77aee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
abi-list-variants := 32 64
abi-list-32-options := -U__powerpc64__
abi-list-32-condition := __WORDSIZE == 32
abi-list-64-options := -D__powerpc64__
abi-list-64-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
|