diff options
author | Benedikt Tutzer <e1225461@student.tuwien.ac.at> | 2019-04-03 15:13:58 +0200 |
---|---|---|
committer | Benedikt Tutzer <e1225461@student.tuwien.ac.at> | 2019-04-03 15:13:58 +0200 |
commit | c5a8dceff85c766c229d331c342e866dcef9af5f (patch) | |
tree | 97a9db51831e58fb6310b86050652463a5cf0d5e | |
parent | 827a96d3a38afe025c9efbd182069a9c9adee267 (diff) | |
download | yosys-c5a8dceff85c766c229d331c342e866dcef9af5f.tar.gz yosys-c5a8dceff85c766c229d331c342e866dcef9af5f.tar.bz2 yosys-c5a8dceff85c766c229d331c342e866dcef9af5f.zip |
Preprocessing does not need all the flags
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 $@) |