mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 23:30:07 +00:00
c59f721c73
* sysdeps/sparc/nptl/pthread_barrier_init.c: Include futex-intenal.h * sysdeps/sparc/sparc32/sparcv9/Makefile (nscd): Add cpu_relax. * sysdeps/sparc/sparc64/Makefile: Likewise. * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h (atomic_spin_nop): Remove space from macro define. * sysdeps/sparc/sparc64/bits/atomic.h (atomic_spin_nop): Likewise.
25 lines
506 B
Makefile
25 lines
506 B
Makefile
sysdep-CFLAGS += -mcpu=ultrasparc -Wa,-Av9a
|
|
|
|
ifeq ($(have-as-vis3),yes)
|
|
ASFLAGS-.o += -Wa,-Av9d
|
|
ASFLAGS-.os += -Wa,-Av9d
|
|
ASFLAGS-.op += -Wa,-Av9d
|
|
ASFLAGS-.og += -Wa,-Av9d
|
|
ASFLAGS-.oS += -Wa,-Av9d
|
|
else
|
|
ASFLAGS-.o += -Wa,-Av9a
|
|
ASFLAGS-.os += -Wa,-Av9a
|
|
ASFLAGS-.op += -Wa,-Av9a
|
|
ASFLAGS-.og += -Wa,-Av9a
|
|
ASFLAGS-.oS += -Wa,-Av9a
|
|
endif
|
|
|
|
# nscd uses atomic_spin_nop which in turn requires cpu_relax
|
|
ifeq ($(subdir),nscd)
|
|
routines += cpu_relax
|
|
endif
|
|
|
|
ifeq ($(subdir), nptl)
|
|
libpthread-routines += cpu_relax
|
|
endif
|