From: Benedikt Tutzer Date: Wed, 3 Apr 2019 13:13:58 +0000 (+0200) Subject: Preprocessing does not need all the flags X-Git-Tag: yosys-0.9~179^2~7 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c5a8dceff85c766c229d331c342e866dcef9af5f;p=yosys.git Preprocessing does not need all the flags --- diff --git a/Makefile b/Makefile index 618e4b603..7f37fe6aa 100644 --- a/Makefile +++ b/Makefile @@ -532,7 +532,7 @@ libyosys.so: $(filter-out kernel/driver.o,$(OBJS)) %.pyh: %.h $(Q) mkdir -p $(dir $@) - $(P) cat $< | grep -E -v "#[ ]*(include|error)" | $(LD) -x c++ -o $@ -E -P $(CPPFLAGS) $(CXXFLAGS) -Qunused-arguments - + $(P) cat $< | grep -E -v "#[ ]*(include|error)" | $(LD) -x c++ -o $@ -E -P -Qunused-arguments - $(PY_WRAPPER_FILE).cc: $(PY_GEN_SCRIPT).py $(PY_WRAP_INCLUDES) $(Q) mkdir -p $(dir $@)