mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-19 21:01:18 +01:00
5904152eeb
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@37371 a95241bf-73f2-0310-859d-f6bbb57e9c96
15 lines
581 B
Plaintext
15 lines
581 B
Plaintext
# Disable missing prototype and type limit warnings. The prototypes
|
|
# for the functions in the soft-fp files have not been brought across
|
|
# from glibc.
|
|
|
|
# cfr. srcdirify in gcc/Makefile.in
|
|
soft-fp-files = $(filter $(gcc_srcdir)/config/soft-fp/%, $(LIB2ADD)) \
|
|
$(filter $(gcc_objdir)/config/soft-fp/%, $(LIB2ADD))
|
|
|
|
soft-fp-objects-base = $(basename $(notdir $(soft-fp-files)))
|
|
|
|
soft-fp-objects = $(addsuffix $(objext), $(soft-fp-objects-base)) \
|
|
$(addsuffix _s$(objext), $(soft-fp-objects-base))
|
|
|
|
$(soft-fp-objects) : INTERNAL_CFLAGS += -Wno-missing-prototypes -Wno-type-limits
|