1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
ifeq ($(subdir),socket)
CFLAGS-recv.c += -fexceptions
CFLAGS-send.c += -fexceptions
endif
ifeq ($(subdir),nptl)
CFLAGS-recv.c += -fexceptions
CFLAGS-send.c += -fexceptions
endif
ifeq ($(subdir),signal)
# sigaction.c defines static functions in asms and refers to them from
# C code, resulting in "'restore_rt' used but never defined" (which
# has no corresponding warning option to allow it to be disabled with
# diagnostic pragmas).
CFLAGS-sigaction.c += -Wno-error
endif
ifeq ($(subdir),nptl)
CFLAGS-sigaction.c += -Wno-error
endif
|