aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2019-04-22 14:49:17 +0200
committerClifford Wolf <clifford@clifford.at>2019-04-22 14:49:17 +0200
commit93f32b5dec8fdb116971ca0ddb17cdc993e7036c (patch)
tree3d3c35d84762e126b6907860e3ef7b035ef68482 /Makefile
parent99d5435650c38fb96dc364c0fd4ac6250a4871ea (diff)
downloadyosys-93f32b5dec8fdb116971ca0ddb17cdc993e7036c.tar.gz
yosys-93f32b5dec8fdb116971ca0ddb17cdc993e7036c.tar.bz2
yosys-93f32b5dec8fdb116971ca0ddb17cdc993e7036c.zip
Set ENABLE_PYOSYS=0 by default
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ff64a2541..adf996c0d 100644
--- a/Makefile
+++ b/Makefile
@@ -20,7 +20,7 @@ ENABLE_LIBYOSYS := 1
ENABLE_PROTOBUF := 0
# python wrappers
-ENABLE_PYOSYS := 1
+ENABLE_PYOSYS := 0
PYTHON_VERSION_TESTCODE := "import sys;t='{v[0]}.{v[1]}'.format(v=list(sys.version_info[:2]));print(t)"
PYTHON_EXECUTABLE := $(shell if python3 -c ""; then echo "python3"; else echo "python"; fi)
PYTHON_VERSION := $(shell $(PYTHON_EXECUTABLE) -c ""$(PYTHON_VERSION_TESTCODE)"")