mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
366bba0227
This is a follow-up commit to "Increase default warning level", which overrides Genode's new default warning level for targets contained in higher-level repositories. By explicitly whitelisting all those targets, we can selectively adjust them to the new strictness over time - by looking out for 'CC_CXX_WARN_STRICT' in the target description files. Issue #465
26 lines
631 B
Makefile
26 lines
631 B
Makefile
#
|
|
# Cannot be compiled for ARM because this file relies on the 'xbits'
|
|
# member of union 'IEEEl2bits', which is not present in the ARM version.
|
|
#
|
|
FILTER_OUT = e_acosl.c e_asinl.c e_atan2l.c e_hypotl.c \
|
|
s_atanl.c
|
|
|
|
#
|
|
# Cannot be compiled for ARM because "Unsupported long double format"
|
|
#
|
|
FILTER_OUT += s_cosl.c s_frexpl.c s_nextafterl.c s_nexttoward.c \
|
|
s_rintl.c s_scalbnl.c s_sinl.c s_tanl.c
|
|
|
|
#
|
|
# Cannot be compiled for ARM because 'split' is undeclared
|
|
#
|
|
FILTER_OUT += s_fmal.c
|
|
|
|
include $(REP_DIR)/lib/mk/libm.mk
|
|
|
|
SRC_C += msun/arm/fenv.c
|
|
|
|
vpath msun/arm/fenv.c $(LIBC_DIR)/lib
|
|
|
|
CC_CXX_WARN_STRICT =
|