lib/Makefile: filter-out -b flag from XFLAGS
to build tcc with bound checking ./configure --cc=tcc --extra-cflags-b
This commit is contained in:
parent
763dd22b35
commit
37e815eee1
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ endif
|
|||
endif
|
||||
endif
|
||||
|
||||
XFLAGS = $(CPPFLAGS) $(CFLAGS) $(PICFLAGS) $(TGT)
|
||||
XFLAGS = $(filter-out -b,$(CPPFLAGS) $(CFLAGS) $(PICFLAGS) $(TGT))
|
||||
|
||||
ifeq ($(TARGETOS),Darwin)
|
||||
XAR = $(DIR)/tiny_libmaker$(EXESUF)
|
||||
|
|
Loading…
Reference in a new issue