mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-06 12:00:24 +08:00
9cd4d4abdc
Since x32 returns 32-bit long int and 64-bit long long int in the same 64-bit register, we make the 32b-bit lround an alias of the 64-bit llround. Add -Wno-error for x32 build to silence the compiler.
7 lines
255 B
Makefile
7 lines
255 B
Makefile
ifeq ($(subdir),math)
|
|
# Since x32 returns 32-bit long int and 64-bit long long int in the
|
|
# same 64-bit register, we make the 32b-bit lround an alias of the
|
|
# 64-bit llround. Add -Wno-error to silence the compiler.
|
|
CFLAGS-s_llround.c += -Wno-error
|
|
endif
|