diff options
author | Benedikt Tutzer <e1225461@student.tuwien.ac.at> | 2018-08-01 08:04:08 +0200 |
---|---|---|
committer | Benedikt Tutzer <benedikt_tutzer@yahoo.de> | 2018-08-01 10:57:33 +0200 |
commit | b57dafce6819516d529cc0077b95cb3293a5dc06 (patch) | |
tree | f9b3d16e26b5fc79f071dafa8351e6d2f2844e31 /Makefile | |
parent | 0371519c3977fcf4ffc71315cb9e0aae3ee967a2 (diff) | |
download | yosys-b57dafce6819516d529cc0077b95cb3293a5dc06.tar.gz yosys-b57dafce6819516d529cc0077b95cb3293a5dc06.tar.bz2 yosys-b57dafce6819516d529cc0077b95cb3293a5dc06.zip |
removed unused library and already present compiler flag
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -19,7 +19,7 @@ ENABLE_PROTOBUF := 0 # python wrappers ENABLE_PYTHON := 1 -PYTHON_VERSION := 3.5 +PYTHON_VERSION := 3.6 # other configuration flags ENABLE_GPROF := 0 @@ -233,8 +233,8 @@ TARGETS += libyosys.so endif ifeq ($(ENABLE_PYTHON),1) -LDLIBS += -lpython$(PYTHON_VERSION)m -lboost_python-py$(subst .,,$(PYTHON_VERSION)) -lboost_system -CXXFLAGS += -I/usr/include/python$(PYTHON_VERSION) -fPIC -D WITH_PYTHON +LDLIBS += -lpython$(PYTHON_VERSION)m -lboost_python-py$(subst .,,$(PYTHON_VERSION)) +CXXFLAGS += -I/usr/include/python$(PYTHON_VERSION) -D WITH_PYTHON OBJS += kernel/python_wrappers.o endif |