mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-10 11:20:10 +00:00
ee17d4e99a
These options are no longer needed since commit
2dba5ce7b8
(<bits/syscall.h>: Use an
arch-independent system call list on Linux).
34 lines
756 B
Makefile
34 lines
756 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),stdlib)
|
|
gen-as-const-headers += ucontext_i.sym
|
|
endif
|
|
|
|
ifeq ($(subdir),elf)
|
|
sysdep_routines += dl-vdso
|
|
endif
|
|
|
|
ifeq ($(subdir),nptl)
|
|
ifeq ($(enable-lock-elision),yes)
|
|
libpthread-sysdep_routines += elision-lock elision-unlock elision-timed \
|
|
elision-trylock
|
|
|
|
elision-CFLAGS = -mhtm -msoft-float
|
|
CFLAGS-elision-lock.c = $(elision-CFLAGS)
|
|
CFLAGS-elision-timed.c = $(elision-CFLAGS)
|
|
CFLAGS-elision-trylock.c = $(elision-CFLAGS)
|
|
CFLAGS-elision-unlock.c = $(elision-CFLAGS)
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(subdir),misc)
|
|
tests += tst-ptrace-singleblock
|
|
endif
|