2013-01-05 11:13:26 +01:00
2024-03-07 23:09:03 +01:00
CONFIG := none
# CONFIG := clang
2014-07-31 23:14:17 +02:00
# CONFIG := gcc
2019-05-27 20:38:44 +02:00
# CONFIG := afl-gcc
2014-08-22 16:09:13 +02:00
# CONFIG := emcc
2019-11-11 10:23:06 +01:00
# CONFIG := wasi
2014-10-09 10:50:44 +02:00
# CONFIG := mxe
2020-12-27 05:37:46 +01:00
# CONFIG := msys2-32
2018-06-27 22:33:34 +02:00
# CONFIG := msys2-64
2013-01-05 11:13:26 +01:00
2013-11-27 09:08:35 +01:00
# features (the more the better)
2013-03-28 16:50:50 +01:00
ENABLE_TCL := 1
2013-11-27 09:08:35 +01:00
ENABLE_ABC := 1
2019-03-11 09:08:36 +01:00
ENABLE_GLOB := 1
2014-08-22 16:09:13 +02:00
ENABLE_PLUGINS := 1
ENABLE_READLINE := 1
2017-11-08 02:54:24 +01:00
ENABLE_EDITLINE := 0
2020-12-28 02:24:41 +01:00
ENABLE_GHDL := 0
2014-03-09 20:40:04 +01:00
ENABLE_VERIFIC := 0
2022-10-04 09:18:44 +02:00
ENABLE_VERIFIC_EDIF := 0
2022-10-31 10:15:05 +01:00
ENABLE_VERIFIC_LIBERTY := 0
2021-08-20 10:19:04 +02:00
DISABLE_VERIFIC_EXTENSIONS := 0
2021-10-20 10:02:58 +02:00
DISABLE_VERIFIC_VHDL := 0
2014-12-26 19:28:52 +01:00
ENABLE_COVER := 1
2019-04-22 14:59:30 +02:00
ENABLE_LIBYOSYS := 0
2019-07-26 11:23:58 +02:00
ENABLE_ZLIB := 1
2013-11-27 09:08:35 +01:00
2018-06-22 11:15:03 +02:00
# python wrappers
2019-04-22 14:49:17 +02:00
ENABLE_PYOSYS := 0
2018-06-22 11:15:03 +02:00
2013-11-27 09:08:35 +01:00
# other configuration flags
2018-08-27 13:27:05 +02:00
ENABLE_GCOV := 0
2013-03-28 16:50:50 +01:00
ENABLE_GPROF := 0
2018-09-19 10:32:34 +02:00
ENABLE_DEBUG := 0
2015-01-24 12:16:46 +01:00
ENABLE_NDEBUG := 0
2020-07-04 20:59:39 +02:00
ENABLE_CCACHE := 0
2020-11-19 19:23:54 +01:00
# sccache is not always a drop-in replacement for ccache in practice
ENABLE_SCCACHE := 0
2016-11-22 07:11:58 +01:00
LINK_CURSES := 0
2017-07-17 23:21:59 +02:00
LINK_TERMCAP := 0
2017-11-14 11:19:21 +01:00
LINK_ABC := 0
2019-11-11 10:23:06 +01:00
# Needed for environments that can't run executables (i.e. emscripten, wasm)
DISABLE_SPAWN := 0
# Needed for environments that don't have proper thread support (i.e. emscripten, wasm--for now)
2018-05-19 07:42:24 +02:00
DISABLE_ABC_THREADS := 0
2013-03-28 16:50:50 +01:00
2016-01-31 16:08:21 +01:00
# clang sanitizers
SANITIZER =
# SANITIZER = address
# SANITIZER = memory
# SANITIZER = undefined
# SANITIZER = cfi
2020-04-25 01:26:26 +02:00
PROGRAM_PREFIX :=
2016-01-31 16:08:21 +01:00
2018-05-06 15:19:44 +02:00
OS := $( shell uname -s)
2015-10-11 00:56:20 +02:00
PREFIX ?= /usr/local
2013-11-19 23:13:41 +01:00
INSTALL_SUDO :=
2022-10-31 09:10:46 +01:00
i f n e q ( $( filter MINGW %,$ ( OS ) ) , )
OS := MINGW
e n d i f
2013-11-04 11:15:15 +01:00
2019-05-29 18:57:03 +02:00
i f n e q ( $( wildcard Makefile .conf ) , )
i n c l u d e M a k e f i l e . c o n f
e n d i f
2020-03-25 10:02:56 +01:00
i f e q ( $( ENABLE_PYOSYS ) , 1 )
ENABLE_LIBYOSYS := 1
e n d i f
2016-03-24 10:18:21 +01:00
BINDIR := $( PREFIX) /bin
2020-04-10 15:02:48 +02:00
LIBDIR := $( PREFIX) /lib/$( PROGRAM_PREFIX) yosys
2020-04-10 10:38:40 +02:00
DATDIR := $( PREFIX) /share/$( PROGRAM_PREFIX) yosys
2015-02-07 19:04:06 +01:00
2014-10-09 10:50:44 +02:00
EXE =
2013-06-07 10:38:35 +02:00
OBJS =
2013-01-05 11:13:26 +01:00
GENFILES =
2014-10-17 12:11:15 +02:00
EXTRA_OBJS =
2013-03-28 16:53:40 +01:00
EXTRA_TARGETS =
2020-04-10 10:38:40 +02:00
TARGETS = $( PROGRAM_PREFIX) yosys$( EXE) $( PROGRAM_PREFIX) yosys-config
2013-01-05 11:13:26 +01:00
2014-07-24 17:55:55 +02:00
PRETTY = 1
2014-07-24 19:03:57 +02:00
SMALL = 0
2014-07-24 17:55:55 +02:00
2016-12-04 14:28:25 +01:00
# Unit test
UNITESTPATH := tests/unit
2013-01-05 11:13:26 +01:00
all : top -all
2015-08-12 15:04:44 +02:00
YOSYS_SRC := $( dir $( firstword $( MAKEFILE_LIST) ) )
VPATH := $( YOSYS_SRC)
2021-10-28 02:02:33 +02:00
CXXSTD ?= c++11
2020-08-26 18:53:47 +02:00
CXXFLAGS := $( CXXFLAGS) -Wall -Wextra -ggdb -I. -I" $( YOSYS_SRC) " -MD -MP -D_YOSYS_ -fPIC -I$( PREFIX) /include
2024-02-25 17:02:35 +01:00
LIBS := $( LIBS) -lstdc++ -lm
PLUGIN_LINKFLAGS :=
PLUGIN_LIBS :=
EXE_LINKFLAGS :=
2022-10-31 09:10:46 +01:00
i f e q ( $( OS ) , M I N G W )
2024-02-25 17:02:35 +01:00
EXE_LINKFLAGS := -Wl,--export-all-symbols -Wl,--out-implib,libyosys_exe.a
PLUGIN_LINKFLAGS += -L" $( LIBDIR) "
PLUGIN_LIBS := -lyosys_exe
2022-10-31 09:10:46 +01:00
e n d i f
2016-03-24 14:07:05 +01:00
2017-02-07 15:09:15 +01:00
PKG_CONFIG ?= pkg-config
SED ?= sed
BISON ?= bison
2018-01-17 14:14:10 +01:00
STRIP ?= strip
2018-11-19 21:46:18 +01:00
AWK ?= awk
2013-01-05 11:13:26 +01:00
2018-05-13 13:29:18 +02:00
i f e q ( $( OS ) , D a r w i n )
2024-02-25 17:02:35 +01:00
PLUGIN_LINKFLAGS += -undefined dynamic_lookup
2017-08-04 11:24:58 +02:00
2017-02-07 15:12:12 +01:00
# homebrew search paths
2019-09-05 01:30:29 +02:00
ifneq ($(shell : ; command -v brew ), )
2017-02-07 15:12:12 +01:00
BREW_PREFIX := $( shell brew --prefix) /opt
2019-05-22 21:58:12 +02:00
$( info $ $ BREW_PREFIX is [$ {BREW_PREFIX }])
2019-08-22 20:43:52 +02:00
i f e q ( $( ENABLE_PYOSYS ) , 1 )
2019-05-22 21:58:12 +02:00
CXXFLAGS += -I$( BREW_PREFIX) /boost/include/boost
2024-02-25 17:02:35 +01:00
LINKFLAGS += -L$( BREW_PREFIX) /boost/lib
2019-08-22 20:43:52 +02:00
e n d i f
2017-02-07 15:12:12 +01:00
CXXFLAGS += -I$( BREW_PREFIX) /readline/include
2024-02-25 17:02:35 +01:00
LINKFLAGS += -L$( BREW_PREFIX) /readline/lib
2017-02-09 22:53:37 +01:00
PKG_CONFIG_PATH := $( BREW_PREFIX) /libffi/lib/pkgconfig:$( PKG_CONFIG_PATH)
2017-02-10 14:06:54 +01:00
PKG_CONFIG_PATH := $( BREW_PREFIX) /tcl-tk/lib/pkgconfig:$( PKG_CONFIG_PATH)
2017-02-07 15:12:12 +01:00
export PATH := $( BREW_PREFIX) /bison/bin:$( BREW_PREFIX) /gettext/bin:$( BREW_PREFIX) /flex/bin:$( PATH)
# macports search paths
2019-09-05 01:30:29 +02:00
else ifneq ($(shell : ; command -v port ), )
PORT_PREFIX := $( patsubst %/bin/port,%,$( shell :; command -v port) )
2017-02-07 15:12:12 +01:00
CXXFLAGS += -I$( PORT_PREFIX) /include
2024-02-25 17:02:35 +01:00
LINKFLAGS += -L$( PORT_PREFIX) /lib
2017-02-09 22:53:37 +01:00
PKG_CONFIG_PATH := $( PORT_PREFIX) /lib/pkgconfig:$( PKG_CONFIG_PATH)
2017-02-07 15:12:12 +01:00
export PATH := $( PORT_PREFIX) /bin:$( PATH)
e n d i f
2017-08-04 11:24:58 +02:00
2014-03-13 12:48:10 +01:00
e l s e
2024-02-25 17:02:35 +01:00
LINKFLAGS += -rdynamic
2022-07-08 13:39:18 +02:00
i f n e q ( $( OS ) , O p e n B S D )
2024-02-25 17:02:35 +01:00
LIBS += -lrt
2014-03-13 12:48:10 +01:00
e n d i f
2022-07-08 13:39:18 +02:00
e n d i f
2014-03-13 12:48:10 +01:00
2024-05-10 02:16:44 +02:00
YOSYS_VER := 0.41+24
2021-12-30 18:45:15 +01:00
# Note: We arrange for .gitcommit to contain the (short) commit hash in
# tarballs generated with git-archive(1) using .gitattributes. The git repo
# will have this file in its unexpanded form tough, in which case we fall
# back to calling git directly.
TARBALL_GIT_REV := $( shell cat $( YOSYS_SRC) /.gitcommit)
ifeq ($(TARBALL_GIT_REV),$$Format : %h $$)
2023-02-23 02:38:14 +01:00
GIT_REV := $( shell GIT_DIR = $( YOSYS_SRC) /.git git rev-parse --short= 9 HEAD || echo UNKNOWN)
2021-12-30 18:45:15 +01:00
e l s e
GIT_REV := $( TARBALL_GIT_REV)
e n d i f
2013-08-20 09:48:12 +02:00
OBJS = kernel/version_$( GIT_REV) .o
2019-08-27 10:13:23 +02:00
bumpversion :
2024-05-08 09:02:50 +02:00
sed -i " /^YOSYS_VER := / s/+[0-9][0-9]* $$ /+`git log --oneline c1ad377.. | wc -l`/; " Makefile
2019-08-27 10:13:23 +02:00
2022-07-04 16:52:28 +02:00
ABCMKARGS = CC = " $( CXX) " CXX = " $( CXX) " ABC_USE_LIBSTDCXX = 1 ABC_USE_NAMESPACE = abc VERBOSE = $( Q)
2013-10-03 16:03:30 +02:00
2016-03-19 20:02:40 +01:00
# set ABCEXTERNAL = <abc-command> to use an external ABC instance
2016-03-19 16:36:18 +01:00
# Note: The in-tree ABC (yosys-abc) will not be installed when ABCEXTERNAL is set.
2016-10-13 22:51:14 +02:00
ABCEXTERNAL ?=
2016-03-19 16:36:18 +01:00
2014-08-27 12:13:53 +02:00
d e f i n e n e w l i n e
e n d e f
2014-08-26 10:11:46 +02:00
i f n e q ( $( wildcard Makefile .conf ) , )
2020-04-11 11:42:30 +02:00
# don't echo Makefile.conf contents when invoked to print source versions
i f e q ( $( findstring echo -,$ ( MAKECMDGOALS ) ) , )
2014-08-27 12:13:53 +02:00
$( info $ ( subst $ $ --$ $ ,$ ( newline ) ,$ ( shell sed 's ,^,[Makefile .conf ] ,; s ,$ $ ,$ $ --$ $ ,;' < Makefile .conf | tr -d '\n ' | sed 's ,\$ $ --\$ $ $ $ ,,') ) )
2020-04-11 11:42:30 +02:00
e n d i f
2014-08-26 10:11:46 +02:00
i n c l u d e M a k e f i l e . c o n f
e n d i f
2013-01-05 11:13:26 +01:00
2019-10-19 08:04:52 +02:00
PYTHON_EXECUTABLE := $( shell if python3 -c "" ; then echo "python3" ; else echo "python" ; fi )
2019-05-28 14:53:07 +02:00
i f e q ( $( ENABLE_PYOSYS ) , 1 )
PYTHON_VERSION_TESTCODE := "import sys;t='{v[0]}.{v[1]}'.format(v=list(sys.version_info[:2]));print(t)"
PYTHON_VERSION := $( shell $( PYTHON_EXECUTABLE) -c "" $( PYTHON_VERSION_TESTCODE) "" )
PYTHON_MAJOR_VERSION := $( shell echo $( PYTHON_VERSION) | cut -f1 -d.)
2019-11-19 20:46:15 +01:00
ENABLE_PYTHON_CONFIG_EMBED ?= $( shell $( PYTHON_EXECUTABLE) -config --embed --libs > /dev/null && echo 1)
i f e q ( $( ENABLE_PYTHON_CONFIG_EMBED ) , 1 )
PYTHON_CONFIG := $( PYTHON_EXECUTABLE) -config --embed
e l s e
2019-11-19 20:45:59 +01:00
PYTHON_CONFIG := $( PYTHON_EXECUTABLE) -config
2019-11-19 20:46:15 +01:00
e n d i f
2020-09-25 11:21:16 +02:00
PYTHON_DESTDIR := $( shell $( PYTHON_EXECUTABLE) -c "import site; print(site.getsitepackages()[-1]);" )
2019-05-28 14:53:07 +02:00
# Reload Makefile.conf to override python specific variables if defined
i f n e q ( $( wildcard Makefile .conf ) , )
i n c l u d e M a k e f i l e . c o n f
e n d i f
e n d i f
2022-07-27 14:16:46 +02:00
ABC_ARCHFLAGS = ""
i f e q ( $( OS ) , O p e n B S D )
ABC_ARCHFLAGS += "-DABC_NO_RLIMIT"
e n d i f
2014-07-31 23:14:17 +02:00
i f e q ( $( CONFIG ) , c l a n g )
2024-02-23 14:03:12 +01:00
CXX = clang++
2021-10-28 02:02:33 +02:00
CXXFLAGS += -std= $( CXXSTD) -Os
2024-03-11 21:18:38 +01:00
ABCMKARGS += ARCHFLAGS = " -DABC_USE_STDINT_H $( ABC_ARCHFLAGS) "
2013-01-05 11:13:26 +01:00
2016-01-31 16:08:21 +01:00
i f n e q ( $( SANITIZER ) , )
$( info [Clang Sanitizer ] $ ( SANITIZER ) )
CXXFLAGS += -g -O1 -fno-omit-frame-pointer -fno-optimize-sibling-calls -fsanitize= $( SANITIZER)
2024-02-25 17:02:35 +01:00
LINKFLAGS += -g -fsanitize= $( SANITIZER)
2021-03-16 16:41:31 +01:00
i f n e q ( $( findstring address ,$ ( SANITIZER ) ) , )
2016-01-31 16:08:21 +01:00
ENABLE_COVER := 0
e n d i f
2021-03-16 16:41:31 +01:00
i f n e q ( $( findstring memory ,$ ( SANITIZER ) ) , )
2016-04-05 13:25:05 +02:00
CXXFLAGS += -fPIE -fsanitize-memory-track-origins
2024-02-25 17:02:35 +01:00
LINKFLAGS += -fPIE -fsanitize-memory-track-origins
2016-01-31 19:55:48 +01:00
e n d i f
2021-03-16 16:41:31 +01:00
i f n e q ( $( findstring cfi ,$ ( SANITIZER ) ) , )
2016-01-31 16:08:21 +01:00
CXXFLAGS += -flto
2024-02-25 17:02:35 +01:00
LINKFLAGS += -flto
2016-01-31 16:08:21 +01:00
e n d i f
e n d i f
2014-08-25 12:48:20 +02:00
e l s e i f e q ( $( CONFIG ) , g c c )
2024-02-23 14:03:12 +01:00
CXX = g++
2021-10-28 02:02:33 +02:00
CXXFLAGS += -std= $( CXXSTD) -Os
2022-07-27 14:16:46 +02:00
ABCMKARGS += ARCHFLAGS = " -DABC_USE_STDINT_H $( ABC_ARCHFLAGS) "
2013-01-05 11:13:26 +01:00
2018-08-18 14:00:55 +02:00
e l s e i f e q ( $( CONFIG ) , g c c - s t a t i c )
2024-02-25 17:02:35 +01:00
LINKFLAGS := $( filter-out -rdynamic,$( LINKFLAGS) ) -static
LIBS := $( filter-out -lrt,$( LIBS) )
2018-08-18 14:14:17 +02:00
CXXFLAGS := $( filter-out -fPIC,$( CXXFLAGS) )
2021-10-28 02:02:33 +02:00
CXXFLAGS += -std= $( CXXSTD) -Os
2024-02-25 16:43:55 +01:00
ABCMKARGS = CC = " $( CC) " CXX = " $( CXX) " LD = " $( CXX) " ABC_USE_LIBSTDCXX = 1 LIBS = "-lm -lpthread -static" OPTFLAGS = "-O" \
2018-08-18 15:11:58 +02:00
ARCHFLAGS = " -DABC_USE_STDINT_H -DABC_NO_DYNAMIC_LINKING=1 -Wno-unused-but-set-variable $( ARCHFLAGS) " ABC_USE_NO_READLINE = 1
2018-08-18 18:21:28 +02:00
i f e q ( $( DISABLE_ABC_THREADS ) , 1 )
ABCMKARGS += "ABC_USE_NO_PTHREADS=1"
e n d i f
2018-08-18 14:00:55 +02:00
2019-05-27 20:38:44 +02:00
e l s e i f e q ( $( CONFIG ) , a f l - g c c )
CXX = AFL_QUIET = 1 AFL_HARDEN = 1 afl-gcc
2021-10-28 02:02:33 +02:00
CXXFLAGS += -std= $( CXXSTD) -Os
2019-05-27 20:38:44 +02:00
ABCMKARGS += ARCHFLAGS = "-DABC_USE_STDINT_H"
2018-09-19 10:16:53 +02:00
e l s e i f e q ( $( CONFIG ) , c y g w i n )
2024-02-23 14:03:12 +01:00
CXX = g++
2018-09-19 10:16:53 +02:00
CXXFLAGS += -std= gnu++11 -Os
ABCMKARGS += ARCHFLAGS = "-DABC_USE_STDINT_H"
2014-08-25 12:48:20 +02:00
e l s e i f e q ( $( CONFIG ) , e m c c )
2014-08-22 16:09:13 +02:00
CXX = emcc
2021-10-28 02:02:33 +02:00
CXXFLAGS := -std= $( CXXSTD) $( filter-out -fPIC -ggdb,$( CXXFLAGS) )
2024-03-11 21:18:38 +01:00
ABCMKARGS += ARCHFLAGS = "-DABC_USE_STDINT_H -DABC_MEMALIGN=8"
2021-10-20 14:43:30 +02:00
EMCC_CXXFLAGS := -Os -Wno-warn-absolute-paths
2024-03-04 00:28:41 +01:00
EMCC_LINKFLAGS := --embed-file share
2024-02-25 17:02:35 +01:00
EMCC_LINKFLAGS += -s NO_EXIT_RUNTIME = 1
EMCC_LINKFLAGS += -s EXPORTED_FUNCTIONS = "['_main','_run','_prompt','_errmsg','_memset']"
EMCC_LINKFLAGS += -s TOTAL_MEMORY = 134217728
EMCC_LINKFLAGS += -s EXPORTED_RUNTIME_METHODS = '["ccall", "cwrap"]'
2015-02-15 10:30:29 +01:00
# https://github.com/kripken/emscripten/blob/master/src/settings.js
2021-10-20 14:43:30 +02:00
CXXFLAGS += $( EMCC_CXXFLAGS)
2024-02-25 17:02:35 +01:00
LINKFLAGS += $( EMCC_LINKFLAGS)
LIBS =
2015-02-15 12:09:30 +01:00
EXE = .js
2019-11-11 10:23:06 +01:00
DISABLE_SPAWN := 1
2020-04-10 10:38:40 +02:00
TARGETS := $( filter-out $( PROGRAM_PREFIX) yosys-config,$( TARGETS) )
2015-02-16 12:41:48 +01:00
EXTRA_TARGETS += yosysjs-$( YOSYS_VER) .zip
2015-02-15 22:53:41 +01:00
2018-03-31 23:50:21 +02:00
i f e q ( $( ENABLE_ABC ) , 1 )
LINK_ABC := 1
DISABLE_ABC_THREADS := 1
e n d i f
2015-02-15 22:53:41 +01:00
viz.js :
wget -O viz.js.part https://github.com/mdaines/viz.js/releases/download/0.0.3/viz.js
mv viz.js.part viz.js
2015-02-15 17:14:09 +01:00
2021-10-20 14:43:30 +02:00
yosysjs-$(YOSYS_VER).zip : yosys .js viz .js misc /yosysjs /*
2015-02-16 12:41:48 +01:00
rm -rf yosysjs-$( YOSYS_VER) yosysjs-$( YOSYS_VER) .zip
mkdir -p yosysjs-$( YOSYS_VER)
2020-03-12 11:17:15 +01:00
cp viz.js misc/yosysjs/* yosys.js yosys.wasm yosysjs-$( YOSYS_VER) /
2015-02-16 12:41:48 +01:00
zip -r yosysjs-$( YOSYS_VER) .zip yosysjs-$( YOSYS_VER)
2015-02-15 12:09:30 +01:00
yosys.html : misc /yosys .html
$( P) cp misc/yosys.html yosys.html
2014-10-09 10:50:44 +02:00
2019-11-11 10:23:06 +01:00
e l s e i f e q ( $( CONFIG ) , w a s i )
i f e q ( $( WASI_SDK ) , )
2024-02-23 14:03:12 +01:00
CXX = clang++
2019-11-11 10:23:06 +01:00
AR = llvm-ar
RANLIB = llvm-ranlib
WASIFLAGS := -target wasm32-wasi --sysroot $( WASI_SYSROOT) $( WASIFLAGS)
e l s e
2024-02-23 14:03:12 +01:00
CXX = $( WASI_SDK) /bin/clang++
2019-11-11 10:23:06 +01:00
AR = $( WASI_SDK) /bin/ar
RANLIB = $( WASI_SDK) /bin/ranlib
WASIFLAGS := --sysroot $( WASI_SDK) /share/wasi-sysroot $( WASIFLAGS)
e n d i f
2023-11-14 03:03:23 +01:00
CXXFLAGS := $( WASIFLAGS) -std= $( CXXSTD) -Os -D_WASI_EMULATED_PROCESS_CLOCKS $( filter-out -fPIC,$( CXXFLAGS) )
2024-02-25 17:02:35 +01:00
LINKFLAGS := $( WASIFLAGS) -Wl,-z,stack-size= 1048576 $( filter-out -rdynamic,$( LINKFLAGS) )
LIBS := -lwasi-emulated-process-clocks $( filter-out -lrt,$( LIBS) )
2019-11-11 10:23:06 +01:00
ABCMKARGS += AR = " $( AR) " RANLIB = " $( RANLIB) "
2024-03-11 21:18:38 +01:00
ABCMKARGS += ARCHFLAGS = " $( WASIFLAGS) -D_WASI_EMULATED_PROCESS_CLOCKS -DABC_USE_STDINT_H -DABC_NO_DYNAMIC_LINKING -DABC_NO_RLIMIT "
2019-11-11 10:23:06 +01:00
ABCMKARGS += OPTFLAGS = "-Os"
EXE = .wasm
DISABLE_SPAWN := 1
i f e q ( $( ENABLE_ABC ) , 1 )
LINK_ABC := 1
DISABLE_ABC_THREADS := 1
e n d i f
2014-10-09 10:50:44 +02:00
e l s e i f e q ( $( CONFIG ) , m x e )
2017-05-17 20:46:22 +02:00
PKG_CONFIG = /usr/local/src/mxe/usr/bin/i686-w64-mingw32.static-pkg-config
2018-08-15 19:08:45 +02:00
CXX = /usr/local/src/mxe/usr/bin/i686-w64-mingw32.static-g++
2021-10-28 02:02:33 +02:00
CXXFLAGS += -std= $( CXXSTD) -Os -D_POSIX_SOURCE -DYOSYS_MXE_HACKS -Wno-attributes
2014-10-09 10:50:44 +02:00
CXXFLAGS := $( filter-out -fPIC,$( CXXFLAGS) )
2024-02-25 17:02:35 +01:00
LINKFLAGS := $( filter-out -rdynamic,$( LINKFLAGS) ) -s
LIBS := $( filter-out -lrt,$( LIBS) )
2018-08-15 19:08:45 +02:00
ABCMKARGS += ARCHFLAGS = "-DWIN32_NO_DLL -DHAVE_STRUCT_TIMESPEC -fpermissive -w"
2019-07-31 18:02:27 +02:00
# TODO: Try to solve pthread linking issue in more appropriate way
2024-02-25 17:02:35 +01:00
ABCMKARGS += LIBS = "lib/x86/pthreadVC2.lib -s" LINKFLAGS = "-Wl,--allow-multiple-definition" ABC_USE_NO_READLINE = 1 CC = "/usr/local/src/mxe/usr/bin/i686-w64-mingw32.static-gcc"
2014-10-09 10:50:44 +02:00
EXE = .exe
2014-08-25 12:48:20 +02:00
2020-12-27 05:37:46 +01:00
e l s e i f e q ( $( CONFIG ) , m s y s 2 - 3 2 )
2018-02-19 18:43:44 +01:00
CXX = i686-w64-mingw32-g++
2021-10-28 02:02:33 +02:00
CXXFLAGS += -std= $( CXXSTD) -Os -D_POSIX_SOURCE -DYOSYS_WIN32_UNIX_DIR
2016-08-16 20:41:37 +02:00
CXXFLAGS := $( filter-out -fPIC,$( CXXFLAGS) )
2024-02-25 17:02:35 +01:00
LINKFLAGS := $( filter-out -rdynamic,$( LINKFLAGS) ) -s
LIBS := $( filter-out -lrt,$( LIBS) )
2018-05-19 07:01:25 +02:00
ABCMKARGS += ARCHFLAGS = "-DABC_USE_STDINT_H -DWIN32_NO_DLL -DHAVE_STRUCT_TIMESPEC -fpermissive -w"
2023-10-05 09:55:53 +02:00
ABCMKARGS += LIBS = "-lpthread -lshlwapi -s" ABC_USE_NO_READLINE = 0 CC = "i686-w64-mingw32-gcc" CXX = " $( CXX) "
2016-08-16 20:41:37 +02:00
EXE = .exe
2018-06-27 22:33:34 +02:00
e l s e i f e q ( $( CONFIG ) , m s y s 2 - 6 4 )
CXX = x86_64-w64-mingw32-g++
2021-10-28 02:02:33 +02:00
CXXFLAGS += -std= $( CXXSTD) -Os -D_POSIX_SOURCE -DYOSYS_WIN32_UNIX_DIR
2018-06-27 22:33:34 +02:00
CXXFLAGS := $( filter-out -fPIC,$( CXXFLAGS) )
2024-02-25 17:02:35 +01:00
LINKFLAGS := $( filter-out -rdynamic,$( LINKFLAGS) ) -s
LIBS := $( filter-out -lrt,$( LIBS) )
2018-06-27 22:33:34 +02:00
ABCMKARGS += ARCHFLAGS = "-DABC_USE_STDINT_H -DWIN32_NO_DLL -DHAVE_STRUCT_TIMESPEC -fpermissive -w"
2023-10-05 09:55:53 +02:00
ABCMKARGS += LIBS = "-lpthread -lshlwapi -s" ABC_USE_NO_READLINE = 0 CC = "x86_64-w64-mingw32-gcc" CXX = " $( CXX) "
2016-08-16 20:41:37 +02:00
EXE = .exe
2024-03-11 21:39:25 +01:00
e l s e i f e q ( $( CONFIG ) , n o n e )
2024-03-07 23:09:03 +01:00
CXXFLAGS += -std= $( CXXSTD) -Os
ABCMKARGS += ARCHFLAGS = " -DABC_USE_STDINT_H $( ABC_ARCHFLAGS) "
2024-03-11 21:39:25 +01:00
e l s e
$(error Invalid CONFIG setting '$(CONFIG)'. Valid values : clang , gcc , emcc , mxe , msys 2-32, msys 2-64, none )
2014-08-22 16:09:13 +02:00
e n d i f
2015-08-04 20:25:26 +02:00
i f e q ( $( ENABLE_LIBYOSYS ) , 1 )
2020-04-10 15:02:48 +02:00
TARGETS += libyosys.so
2015-08-04 13:22:49 +02:00
e n d i f
2018-12-21 14:08:23 +01:00
i f e q ( $( ENABLE_PYOSYS ) , 1 )
2021-06-14 08:55:22 +02:00
# Detect name of boost_python library. Some distros use boost_python-py<version>, other boost_python<version>, some only use the major version number, some a concatenation of major and minor version numbers
CHECK_BOOST_PYTHON = ( echo "int main(int argc, char ** argv) {return 0;}" | $( CXX) -xc -o /dev/null $( shell $( PYTHON_CONFIG) --ldflags) -l$( 1) - > /dev/null 2>& 1 && echo " -l $( 1) " )
2019-05-22 21:58:12 +02:00
BOOST_PYTHON_LIB ?= $( shell \
2021-06-14 08:55:22 +02:00
$( call CHECK_BOOST_PYTHON,boost_python-py$( subst .,,$( PYTHON_VERSION) ) ) || \
$( call CHECK_BOOST_PYTHON,boost_python-py$( PYTHON_MAJOR_VERSION) ) || \
$( call CHECK_BOOST_PYTHON,boost_python$( subst .,,$( PYTHON_VERSION) ) ) || \
$( call CHECK_BOOST_PYTHON,boost_python$( PYTHON_MAJOR_VERSION) ) \
)
2019-04-05 11:56:01 +02:00
i f e q ( $( BOOST_PYTHON_LIB ) , )
2020-05-07 19:28:18 +02:00
$( error BOOST_PYTHON_LIB could not be detected . Please define manually )
2019-04-05 11:56:01 +02:00
e n d i f
2024-02-25 17:02:35 +01:00
LIBS += $( shell $( PYTHON_CONFIG) --libs) $( BOOST_PYTHON_LIB) -lboost_system -lboost_filesystem
# python-config --ldflags includes LIBS for some reason
LINKFLAGS += $( filter-out -l%,$( shell $( PYTHON_CONFIG) --ldflags) )
2019-11-19 20:45:59 +01:00
CXXFLAGS += $( shell $( PYTHON_CONFIG) --includes) -DWITH_PYTHON
2019-04-05 11:56:01 +02:00
2018-09-19 10:32:34 +02:00
PY_WRAPPER_FILE = kernel/python_wrappers
OBJS += $( PY_WRAPPER_FILE) .o
PY_GEN_SCRIPT = py_wrap_generator
2019-04-30 13:19:04 +02:00
PY_WRAP_INCLUDES := $( shell python$( PYTHON_VERSION) -c " from misc import $( PY_GEN_SCRIPT) ; $( PY_GEN_SCRIPT) .print_includes() " )
2021-06-14 08:55:22 +02:00
e n d i f # ENABLE_PYOSYS
2018-06-22 11:15:03 +02:00
2014-08-22 16:09:13 +02:00
i f e q ( $( ENABLE_READLINE ) , 1 )
CXXFLAGS += -DYOSYS_ENABLE_READLINE
2022-07-08 13:39:18 +02:00
i f e q ( $( OS ) , $( filter $ ( OS ) ,FreeBSD OpenBSD NetBSD ) )
2018-05-06 15:19:44 +02:00
CXXFLAGS += -I/usr/local/include
e n d i f
2024-02-25 17:02:35 +01:00
LIBS += -lreadline
2016-11-22 07:11:58 +01:00
i f e q ( $( LINK_CURSES ) , 1 )
2024-02-25 17:02:35 +01:00
LIBS += -lcurses
2016-11-22 07:11:58 +01:00
ABCMKARGS += "ABC_READLINE_LIBRARIES=-lcurses -lreadline"
e n d i f
2017-07-17 23:21:59 +02:00
i f e q ( $( LINK_TERMCAP ) , 1 )
2024-02-25 17:02:35 +01:00
LIBS += -ltermcap
2017-07-17 23:21:59 +02:00
ABCMKARGS += "ABC_READLINE_LIBRARIES=-lreadline -ltermcap"
e n d i f
2014-10-11 10:59:11 +02:00
i f e q ( $( CONFIG ) , m x e )
2024-02-25 17:02:35 +01:00
LIBS += -ltermcap
2014-10-11 10:59:11 +02:00
e n d i f
2017-11-08 02:54:24 +01:00
e l s e
i f e q ( $( ENABLE_EDITLINE ) , 1 )
CXXFLAGS += -DYOSYS_ENABLE_EDITLINE
2024-02-25 17:02:35 +01:00
LIBS += -ledit -ltinfo -lbsd
2018-05-19 07:42:24 +02:00
e l s e
ABCMKARGS += "ABC_USE_NO_READLINE=1"
e n d i f
2017-11-08 02:54:24 +01:00
e n d i f
2018-05-19 07:42:24 +02:00
i f e q ( $( DISABLE_ABC_THREADS ) , 1 )
ABCMKARGS += "ABC_USE_NO_PTHREADS=1"
2014-08-22 16:09:13 +02:00
e n d i f
2019-11-11 10:23:06 +01:00
i f e q ( $( DISABLE_SPAWN ) , 1 )
CXXFLAGS += -DYOSYS_DISABLE_SPAWN
e n d i f
2014-08-22 16:09:13 +02:00
i f e q ( $( ENABLE_PLUGINS ) , 1 )
2017-02-10 14:06:54 +01:00
CXXFLAGS += $( shell PKG_CONFIG_PATH = $( PKG_CONFIG_PATH) $( PKG_CONFIG) --silence-errors --cflags libffi) -DYOSYS_ENABLE_PLUGINS
2022-10-31 09:10:46 +01:00
i f e q ( $( OS ) , M I N G W )
CXXFLAGS += -Ilibs/dlfcn-win32
e n d i f
2024-02-25 17:02:35 +01:00
LIBS += $( shell PKG_CONFIG_PATH = $( PKG_CONFIG_PATH) $( PKG_CONFIG) --silence-errors --libs libffi || echo -lffi)
2022-10-31 09:10:46 +01:00
i f n e q ( $( OS ) , $( filter $ ( OS ) ,FreeBSD OpenBSD NetBSD MINGW ) )
2024-02-25 17:02:35 +01:00
LIBS += -ldl
2018-05-06 15:19:44 +02:00
e n d i f
2014-08-22 16:09:13 +02:00
e n d i f
2019-03-11 09:08:36 +01:00
i f e q ( $( ENABLE_GLOB ) , 1 )
CXXFLAGS += -DYOSYS_ENABLE_GLOB
e n d i f
2019-07-26 11:23:58 +02:00
i f e q ( $( ENABLE_ZLIB ) , 1 )
CXXFLAGS += -DYOSYS_ENABLE_ZLIB
2024-02-25 17:02:35 +01:00
LIBS += -lz
2019-07-26 11:23:58 +02:00
e n d i f
2013-03-28 16:50:50 +01:00
i f e q ( $( ENABLE_TCL ) , 1 )
2016-04-29 10:26:22 +02:00
TCL_VERSION ?= tcl$( shell bash -c "tclsh <(echo 'puts [info tclversion]')" )
2022-07-08 13:39:18 +02:00
i f e q ( $( OS ) , $( filter $ ( OS ) ,FreeBSD OpenBSD NetBSD ) )
2022-07-16 00:47:00 +02:00
# BSDs usually use tcl8.6, but the lib is named "libtcl86"
2018-05-06 15:19:44 +02:00
TCL_INCLUDE ?= /usr/local/include/$( TCL_VERSION)
2022-07-16 00:47:00 +02:00
TCL_LIBS ?= -l$( subst .,,$( TCL_VERSION) )
2018-05-06 15:19:44 +02:00
e l s e
2014-03-09 20:40:04 +01:00
TCL_INCLUDE ?= /usr/include/$( TCL_VERSION)
2022-07-16 00:47:00 +02:00
TCL_LIBS ?= -l$( TCL_VERSION)
2018-05-06 15:19:44 +02:00
e n d i f
2017-02-10 14:06:54 +01:00
2017-05-17 20:46:22 +02:00
i f e q ( $( CONFIG ) , m x e )
CXXFLAGS += -DYOSYS_ENABLE_TCL
2024-02-25 17:02:35 +01:00
LIBS += -ltcl86 -lwsock32 -lws2_32 -lnetapi32 -lz -luserenv
2017-05-17 20:46:22 +02:00
e l s e
2017-02-10 14:06:54 +01:00
CXXFLAGS += $( shell PKG_CONFIG_PATH = $( PKG_CONFIG_PATH) $( PKG_CONFIG) --silence-errors --cflags tcl || echo -I$( TCL_INCLUDE) ) -DYOSYS_ENABLE_TCL
2024-02-25 17:02:35 +01:00
LIBS += $( shell PKG_CONFIG_PATH = $( PKG_CONFIG_PATH) $( PKG_CONFIG) --silence-errors --libs tcl || echo $( TCL_LIBS) )
2017-05-17 20:46:22 +02:00
e n d i f
2018-05-06 15:19:44 +02:00
e n d i f
2013-03-28 16:50:50 +01:00
2018-08-27 13:27:05 +02:00
i f e q ( $( ENABLE_GCOV ) , 1 )
CXXFLAGS += --coverage
2024-02-25 17:02:35 +01:00
LINKFLAGS += --coverage
2018-08-27 13:27:05 +02:00
e n d i f
2013-03-28 16:50:50 +01:00
i f e q ( $( ENABLE_GPROF ) , 1 )
2014-08-17 02:24:53 +02:00
CXXFLAGS += -pg
2024-02-25 17:02:35 +01:00
LINKFLAGS += -pg
2013-03-28 16:50:50 +01:00
e n d i f
2015-01-24 12:16:46 +01:00
i f e q ( $( ENABLE_NDEBUG ) , 1 )
2017-10-25 14:57:16 +02:00
CXXFLAGS := -O3 -DNDEBUG $( filter-out -Os -ggdb,$( CXXFLAGS) )
e n d i f
i f e q ( $( ENABLE_DEBUG ) , 1 )
i f e q ( $( CONFIG ) , c l a n g )
2018-02-03 15:04:39 +01:00
CXXFLAGS := -O0 -DDEBUG $( filter-out -Os,$( CXXFLAGS) )
2017-10-25 14:57:16 +02:00
e l s e
2018-02-03 15:04:39 +01:00
CXXFLAGS := -Og -DDEBUG $( filter-out -Os,$( CXXFLAGS) )
2017-10-25 14:57:16 +02:00
e n d i f
2015-01-24 12:16:46 +01:00
e n d i f
2013-03-28 16:50:50 +01:00
2013-11-27 09:08:35 +01:00
i f e q ( $( ENABLE_ABC ) , 1 )
2014-09-14 16:09:06 +02:00
CXXFLAGS += -DYOSYS_ENABLE_ABC
2017-11-14 11:19:21 +01:00
i f e q ( $( LINK_ABC ) , 1 )
CXXFLAGS += -DYOSYS_LINK_ABC
2018-05-19 07:42:24 +02:00
i f e q ( $( DISABLE_ABC_THREADS ) , 0 )
2024-02-25 17:02:35 +01:00
LIBS += -lpthread
2018-05-19 07:42:24 +02:00
e n d i f
2017-11-14 11:19:21 +01:00
e l s e
2016-03-19 16:36:18 +01:00
i f e q ( $( ABCEXTERNAL ) , )
2024-05-10 15:02:06 +02:00
TARGETS := $( PROGRAM_PREFIX) yosys-abc$( EXE) $( TARGETS)
2016-03-19 16:36:18 +01:00
e n d i f
2013-11-27 09:08:35 +01:00
e n d i f
2017-11-14 11:19:21 +01:00
e n d i f
2013-11-27 09:08:35 +01:00
2020-12-28 02:24:41 +01:00
i f e q ( $( ENABLE_GHDL ) , 1 )
GHDL_PREFIX ?= $( PREFIX)
2020-12-30 07:06:52 +01:00
GHDL_INCLUDE_DIR ?= $( GHDL_PREFIX) /include
GHDL_LIB_DIR ?= $( GHDL_PREFIX) /lib
2020-12-28 02:24:41 +01:00
CXXFLAGS += -I$( GHDL_INCLUDE_DIR) -DYOSYS_ENABLE_GHDL
2024-02-25 17:02:35 +01:00
LIBS += $( GHDL_LIB_DIR) /libghdl.a $( file <$( GHDL_LIB_DIR) /libghdl.link)
2020-12-28 02:24:41 +01:00
e n d i f
2024-02-25 17:02:35 +01:00
LIBS_VERIFIC =
2014-03-09 20:40:04 +01:00
i f e q ( $( ENABLE_VERIFIC ) , 1 )
2019-01-04 14:44:35 +01:00
VERIFIC_DIR ?= /usr/local/src/verific_lib
2021-10-20 12:37:22 +02:00
VERIFIC_COMPONENTS ?= verilog database util containers hier_tree
2021-10-20 10:02:58 +02:00
i f n e q ( $( DISABLE_VERIFIC_VHDL ) , 1 )
VERIFIC_COMPONENTS += vhdl
CXXFLAGS += -DVERIFIC_VHDL_SUPPORT
2021-10-20 13:08:08 +02:00
e l s e
i f n e q ( $( wildcard $ ( VERIFIC_DIR ) /vhdl ) , )
VERIFIC_COMPONENTS += vhdl
e n d i f
2021-10-20 10:02:58 +02:00
e n d i f
2022-10-04 09:18:44 +02:00
i f e q ( $( ENABLE_VERIFIC_EDIF ) , 1 )
VERIFIC_COMPONENTS += edif
CXXFLAGS += -DVERIFIC_EDIF_SUPPORT
e n d i f
2022-10-31 10:15:05 +01:00
i f e q ( $( ENABLE_VERIFIC_LIBERTY ) , 1 )
VERIFIC_COMPONENTS += synlib
CXXFLAGS += -DVERIFIC_LIBERTY_SUPPORT
e n d i f
2021-08-20 10:19:04 +02:00
i f n e q ( $( DISABLE_VERIFIC_EXTENSIONS ) , 1 )
VERIFIC_COMPONENTS += extensions
CXXFLAGS += -DYOSYSHQ_VERIFIC_EXTENSIONS
e n d i f
2014-03-13 17:34:31 +01:00
CXXFLAGS += $( patsubst %,-I$( VERIFIC_DIR) /%,$( VERIFIC_COMPONENTS) ) -DYOSYS_ENABLE_VERIFIC
2018-11-08 08:18:47 +01:00
i f e q ( $( OS ) , D a r w i n )
2024-02-25 17:02:35 +01:00
LIBS_VERIFIC += $( foreach comp,$( patsubst %,$( VERIFIC_DIR) /%/*-mac.a,$( VERIFIC_COMPONENTS) ) ,-Wl,-force_load $( comp) ) -lz
2018-11-08 08:18:47 +01:00
e l s e
2024-02-25 17:02:35 +01:00
LIBS_VERIFIC += -Wl,--whole-archive $( patsubst %,$( VERIFIC_DIR) /%/*-linux.a,$( VERIFIC_COMPONENTS) ) -Wl,--no-whole-archive -lz
2018-06-19 14:34:56 +02:00
e n d i f
2018-11-08 08:18:47 +01:00
e n d i f
2018-06-19 14:34:56 +02:00
2014-03-09 20:40:04 +01:00
2014-11-06 09:39:55 +01:00
i f e q ( $( ENABLE_COVER ) , 1 )
CXXFLAGS += -DYOSYS_ENABLE_COVER
e n d i f
2020-07-04 20:59:39 +02:00
i f e q ( $( ENABLE_CCACHE ) , 1 )
CXX := ccache $( CXX)
2020-11-19 19:23:54 +01:00
e l s e
i f e q ( $( ENABLE_SCCACHE ) , 1 )
CXX := sccache $( CXX)
e n d i f
2020-07-04 20:59:39 +02:00
e n d i f
2015-01-08 00:23:18 +01:00
d e f i n e a d d _ s h a r e _ f i l e
2015-02-08 00:01:31 +01:00
EXTRA_TARGETS += $( subst //,/,$( 1) /$( notdir $( 2) ) )
$(subst //,/,$(1)/$(notdir $(2))) : $( 2)
2015-01-08 00:23:18 +01:00
$$ ( P) mkdir -p $( 1)
2015-08-12 15:04:44 +02:00
$$ ( Q) cp " $( YOSYS_SRC) " /$( 2) $( subst //,/,$( 1) /$( notdir $( 2) ) )
2015-01-08 00:23:18 +01:00
e n d e f
2015-08-16 21:15:07 +02:00
d e f i n e a d d _ g e n _ s h a r e _ f i l e
EXTRA_TARGETS += $( subst //,/,$( 1) /$( notdir $( 2) ) )
$(subst //,/,$(1)/$(notdir $(2))) : $( 2)
$$ ( P) mkdir -p $( 1)
$$ ( Q) cp $( 2) $( subst //,/,$( 1) /$( notdir $( 2) ) )
e n d e f
2015-02-07 19:04:06 +01:00
d e f i n e a d d _ i n c l u d e _ f i l e
$( eval $ ( call add_share_file ,$ ( dir share /include /$ ( 1) ) ,$ ( 1) ) )
e n d e f
2019-08-15 18:34:36 +02:00
d e f i n e a d d _ e x t r a _ o b j s
EXTRA_OBJS += $( 1)
.SECONDARY : $( 1)
e n d e f
2014-07-24 17:15:01 +02:00
i f e q ( $( PRETTY ) , 1 )
2014-07-25 03:12:14 +02:00
P_STATUS = 0
P_OFFSET = 0
2020-04-10 10:38:40 +02:00
P_UPDATE = $( eval P_STATUS = $( shell echo $( OBJS) $( PROGRAM_PREFIX) yosys$( EXE) | $( AWK) 'BEGIN { RS = " "; I = $(P_STATUS)+0; } $$1 == "$@" && NR > I { I = NR; } END { print I; }' ) )
P_SHOW = [ $( shell $( AWK) " BEGIN { N= $( words $( OBJS) $( PROGRAM_PREFIX) yosys$( EXE) ) ; printf \"%3d\", $( P_OFFSET) +90* $( P_STATUS) /N; exit; } " ) %]
2014-07-25 03:12:14 +02:00
P = @echo " $( if $( findstring $@ ,$( TARGETS) $( EXTRA_TARGETS) ) ,$( eval P_OFFSET = 10) ) $( call P_UPDATE) $( call P_SHOW) Building $@ " ;
2014-07-24 17:15:01 +02:00
Q = @
S = -s
2014-07-24 17:55:55 +02:00
e l s e
2014-07-25 03:12:14 +02:00
P_SHOW = ->
2014-07-24 17:55:55 +02:00
P =
Q =
S =
2014-07-24 17:15:01 +02:00
e n d i f
2020-04-20 17:06:53 +02:00
$( eval $ ( call add_include_file ,kernel /binding .h ) )
2023-07-04 00:50:38 +02:00
$( eval $ ( call add_include_file ,kernel /cellaigs .h ) )
2016-09-07 13:43:57 +02:00
$( eval $ ( call add_include_file ,kernel /celledges .h ) )
2023-09-15 20:24:45 +02:00
$( eval $ ( call add_include_file ,kernel /celltypes .h ) )
2015-02-07 19:04:06 +01:00
$( eval $ ( call add_include_file ,kernel /consteval .h ) )
2020-04-08 15:25:16 +02:00
$( eval $ ( call add_include_file ,kernel /constids .inc ) )
2023-09-15 20:24:45 +02:00
$( eval $ ( call add_include_file ,kernel /cost .h ) )
2020-07-19 03:51:05 +02:00
$( eval $ ( call add_include_file ,kernel /ff .h ) )
2020-07-19 01:59:47 +02:00
$( eval $ ( call add_include_file ,kernel /ffinit .h ) )
2023-09-15 20:24:45 +02:00
$( eval $ ( call add_include_file ,kernel /ffmerge .h ) )
$( eval $ ( call add_include_file ,kernel /fmt .h ) )
2022-04-08 03:07:44 +02:00
i f e q ( $( ENABLE_ZLIB ) , 1 )
2022-01-26 10:23:38 +01:00
$( eval $ ( call add_include_file ,kernel /fstdata .h ) )
2022-04-08 03:07:44 +02:00
e n d i f
2023-09-15 20:24:45 +02:00
$( eval $ ( call add_include_file ,kernel /hashlib .h ) )
$( eval $ ( call add_include_file ,kernel /json .h ) )
$( eval $ ( call add_include_file ,kernel /log .h ) )
$( eval $ ( call add_include_file ,kernel /macc .h ) )
$( eval $ ( call add_include_file ,kernel /modtools .h ) )
2020-10-17 22:19:34 +02:00
$( eval $ ( call add_include_file ,kernel /mem .h ) )
2023-09-15 20:24:45 +02:00
$( eval $ ( call add_include_file ,kernel /qcsat .h ) )
$( eval $ ( call add_include_file ,kernel /register .h ) )
$( eval $ ( call add_include_file ,kernel /rtlil .h ) )
$( eval $ ( call add_include_file ,kernel /satgen .h ) )
2024-01-29 14:46:39 +01:00
$( eval $ ( call add_include_file ,kernel /scopeinfo .h ) )
2023-09-15 20:24:45 +02:00
$( eval $ ( call add_include_file ,kernel /sigtools .h ) )
$( eval $ ( call add_include_file ,kernel /timinginfo .h ) )
$( eval $ ( call add_include_file ,kernel /utils .h ) )
$( eval $ ( call add_include_file ,kernel /yosys .h ) )
2024-04-02 15:58:06 +02:00
$( eval $ ( call add_include_file ,kernel /yosys_common .h ) )
2023-07-24 16:40:43 +02:00
$( eval $ ( call add_include_file ,kernel /yw .h ) )
2015-02-07 19:04:06 +01:00
$( eval $ ( call add_include_file ,libs /ezsat /ezsat .h ) )
$( eval $ ( call add_include_file ,libs /ezsat /ezminisat .h ) )
2022-04-08 03:07:44 +02:00
i f e q ( $( ENABLE_ZLIB ) , 1 )
2022-01-26 10:23:38 +01:00
$( eval $ ( call add_include_file ,libs /fst /fstapi .h ) )
2022-04-08 03:07:44 +02:00
e n d i f
2015-02-07 19:04:06 +01:00
$( eval $ ( call add_include_file ,libs /sha 1/sha 1.h ) )
2019-09-26 04:11:22 +02:00
$( eval $ ( call add_include_file ,libs /json 11/json 11.hpp ) )
2015-02-07 19:04:06 +01:00
$( eval $ ( call add_include_file ,passes /fsm /fsmdata .h ) )
2016-03-22 14:46:10 +01:00
$( eval $ ( call add_include_file ,frontends /ast /ast .h ) )
2020-04-20 17:06:53 +02:00
$( eval $ ( call add_include_file ,frontends /ast /ast_binding .h ) )
2021-06-16 21:47:47 +02:00
$( eval $ ( call add_include_file ,frontends /blif /blifparse .h ) )
2020-08-26 19:29:32 +02:00
$( eval $ ( call add_include_file ,backends /rtlil /rtlil_backend .h ) )
2015-02-07 19:04:06 +01:00
2016-07-24 13:59:57 +02:00
OBJS += kernel/driver.o kernel/register.o kernel/rtlil.o kernel/log.o kernel/calc.o kernel/yosys.o
2020-04-20 17:06:53 +02:00
OBJS += kernel/binding.o
2024-01-29 14:46:39 +01:00
OBJS += kernel/cellaigs.o kernel/celledges.o kernel/satgen.o kernel/scopeinfo.o kernel/qcsat.o kernel/mem.o kernel/ffmerge.o kernel/ff.o kernel/yw.o kernel/json.o kernel/fmt.o
2022-04-08 03:07:44 +02:00
i f e q ( $( ENABLE_ZLIB ) , 1 )
OBJS += kernel/fstdata.o
e n d i f
2022-10-31 09:10:46 +01:00
i f e q ( $( ENABLE_PLUGINS ) , 1 )
i f e q ( $( OS ) , M I N G W )
OBJS += libs/dlfcn-win32/dlfcn.o
e n d i f
e n d i f
2016-07-24 13:59:57 +02:00
2015-02-07 19:04:06 +01:00
kernel/log.o : CXXFLAGS += -DYOSYS_SRC ='"$( YOSYS_SRC ) "'
2020-04-10 10:38:40 +02:00
kernel/yosys.o : CXXFLAGS += -DYOSYS_DATDIR ='"$( DATDIR ) "' -DYOSYS_PROGRAM_PREFIX ='"$( PROGRAM_PREFIX ) "'
2020-11-29 09:16:43 +01:00
i f e q ( $( ENABLE_ABC ) , 1 )
i f n e q ( $( ABCEXTERNAL ) , )
kernel/yosys.o : CXXFLAGS += -DABCEXTERNAL ='"$( ABCEXTERNAL ) "'
e n d i f
e n d i f
2013-06-07 10:38:35 +02:00
OBJS += libs/bigint/BigIntegerAlgorithms.o libs/bigint/BigInteger.o libs/bigint/BigIntegerUtils.o
OBJS += libs/bigint/BigUnsigned.o libs/bigint/BigUnsignedInABase.o
OBJS += libs/sha1/sha1.o
2014-07-24 19:03:57 +02:00
2019-09-26 04:11:22 +02:00
OBJS += libs/json11/json11.o
2014-03-13 12:48:10 +01:00
OBJS += libs/ezsat/ezsat.o
2013-06-07 10:38:35 +02:00
OBJS += libs/ezsat/ezminisat.o
2014-03-13 12:48:10 +01:00
2014-03-12 10:17:51 +01:00
OBJS += libs/minisat/Options.o
OBJS += libs/minisat/SimpSolver.o
OBJS += libs/minisat/Solver.o
OBJS += libs/minisat/System.o
2013-06-07 10:38:35 +02:00
2022-04-08 03:07:44 +02:00
i f e q ( $( ENABLE_ZLIB ) , 1 )
2022-01-25 09:53:41 +01:00
OBJS += libs/fst/fstapi.o
OBJS += libs/fst/fastlz.o
OBJS += libs/fst/lz4.o
2022-04-08 03:07:44 +02:00
e n d i f
2022-01-25 09:53:41 +01:00
2024-01-19 16:30:35 +01:00
i f n e q ( $( SMALL ) , 1 )
OBJS += libs/subcircuit/subcircuit.o
2015-08-12 15:04:44 +02:00
i n c l u d e $( YOSYS_SRC ) / f r o n t e n d s / * / M a k e f i l e . i n c
i n c l u d e $( YOSYS_SRC ) / p a s s e s / * / M a k e f i l e . i n c
i n c l u d e $( YOSYS_SRC ) / b a c k e n d s / * / M a k e f i l e . i n c
i n c l u d e $( YOSYS_SRC ) / t e c h l i b s / * / M a k e f i l e . i n c
2013-01-05 11:13:26 +01:00
2014-07-24 19:03:57 +02:00
e l s e
2020-04-25 01:26:26 +02:00
i n c l u d e $( YOSYS_SRC ) / f r o n t e n d s / v e r i l o g / M a k e f i l e . i n c
2024-01-19 16:30:35 +01:00
i f e q ( $( ENABLE_VERIFIC ) , 1 )
i n c l u d e $( YOSYS_SRC ) / f r o n t e n d s / v e r i f i c / M a k e f i l e . i n c
e n d i f
2020-08-26 19:29:32 +02:00
i n c l u d e $( YOSYS_SRC ) / f r o n t e n d s / r t l i l / M a k e f i l e . i n c
2020-04-25 01:26:26 +02:00
i n c l u d e $( YOSYS_SRC ) / f r o n t e n d s / a s t / M a k e f i l e . i n c
i n c l u d e $( YOSYS_SRC ) / f r o n t e n d s / b l i f / M a k e f i l e . i n c
2014-07-24 19:03:57 +02:00
OBJS += passes/hierarchy/hierarchy.o
OBJS += passes/cmds/select.o
OBJS += passes/cmds/show.o
OBJS += passes/cmds/stat.o
OBJS += passes/cmds/cover.o
2014-08-17 02:24:53 +02:00
OBJS += passes/cmds/design.o
2014-08-22 13:58:36 +02:00
OBJS += passes/cmds/plugin.o
2014-07-24 19:03:57 +02:00
2020-04-25 01:26:26 +02:00
i n c l u d e $( YOSYS_SRC ) / p a s s e s / p r o c / M a k e f i l e . i n c
i n c l u d e $( YOSYS_SRC ) / p a s s e s / o p t / M a k e f i l e . i n c
i n c l u d e $( YOSYS_SRC ) / p a s s e s / t e c h m a p / M a k e f i l e . i n c
2014-07-24 19:03:57 +02:00
2020-04-25 01:26:26 +02:00
i n c l u d e $( YOSYS_SRC ) / b a c k e n d s / v e r i l o g / M a k e f i l e . i n c
2020-08-26 19:29:32 +02:00
i n c l u d e $( YOSYS_SRC ) / b a c k e n d s / r t l i l / M a k e f i l e . i n c
2014-07-24 19:03:57 +02:00
2020-04-25 01:26:26 +02:00
i n c l u d e $( YOSYS_SRC ) / t e c h l i b s / c o m m o n / M a k e f i l e . i n c
2014-08-17 02:24:53 +02:00
2014-07-24 19:03:57 +02:00
e n d i f
2017-11-14 11:19:21 +01:00
i f e q ( $( LINK_ABC ) , 1 )
2020-04-10 10:38:40 +02:00
OBJS += $( PROGRAM_PREFIX) yosys-libabc.a
2017-11-14 11:19:21 +01:00
e n d i f
2020-10-27 14:04:28 +01:00
# prevent the CXXFLAGS set by this Makefile from reaching abc/Makefile,
# especially the -MD flag which will break the build when CXX is clang
u n export CXXFLAGS
2013-03-28 16:53:40 +01:00
top-all : $( TARGETS ) $( EXTRA_TARGETS )
2014-07-25 03:12:14 +02:00
@echo ""
2014-07-26 21:34:19 +02:00
@echo " Build successful."
2014-07-25 03:12:14 +02:00
@echo ""
2013-01-05 11:13:26 +01:00
2015-06-11 15:48:40 +02:00
i f e q ( $( CONFIG ) , e m c c )
yosys.js : $( filter -out yosysjs -$ ( YOSYS_VER ) .zip ,$ ( EXTRA_TARGETS ) )
e n d i f
2020-04-10 10:38:40 +02:00
$(PROGRAM_PREFIX)yosys$(EXE) : $( OBJS )
2024-02-25 17:02:35 +01:00
$( P) $( CXX) -o $( PROGRAM_PREFIX) yosys$( EXE) $( EXE_LINKFLAGS) $( LINKFLAGS) $( OBJS) $( LIBS) $( LIBS_VERIFIC)
2015-08-04 13:22:49 +02:00
2020-04-10 15:02:48 +02:00
libyosys.so : $( filter -out kernel /driver .o ,$ ( OBJS ) )
2019-05-22 21:58:12 +02:00
i f e q ( $( OS ) , D a r w i n )
2024-02-25 17:02:35 +01:00
$( P) $( CXX) -o libyosys.so -shared -Wl,-install_name,$( LIBDIR) /libyosys.so $( LINKFLAGS) $^ $( LIBS) $( LIBS_VERIFIC)
2019-05-22 21:58:12 +02:00
e l s e
2024-02-25 17:02:35 +01:00
$( P) $( CXX) -o libyosys.so -shared -Wl,-soname,$( LIBDIR) /libyosys.so $( LINKFLAGS) $^ $( LIBS) $( LIBS_VERIFIC)
2019-05-22 21:58:12 +02:00
e n d i f
2014-07-24 17:15:01 +02:00
%.o : %.cc
2015-08-12 15:04:44 +02:00
$( Q) mkdir -p $( dir $@ )
2015-10-11 00:47:37 +02:00
$( P) $( CXX) -o $@ -c $( CPPFLAGS) $( CXXFLAGS) $<
2014-07-24 17:15:01 +02:00
2018-09-19 10:32:34 +02:00
%.pyh : %.h
$( Q) mkdir -p $( dir $@ )
2024-02-25 16:43:55 +01:00
$( P) cat $< | grep -E -v "#[ ]*(include|error)" | $( CXX) $( CXXFLAGS) -x c++ -o $@ -E -P -
2018-09-19 10:32:34 +02:00
2019-05-27 10:31:50 +02:00
i f e q ( $( ENABLE_PYOSYS ) , 1 )
2019-04-30 13:19:04 +02:00
$(PY_WRAPPER_FILE).cc : misc /$( PY_GEN_SCRIPT ) .py $( PY_WRAP_INCLUDES )
2018-09-19 10:32:34 +02:00
$( Q) mkdir -p $( dir $@ )
2019-04-30 13:19:04 +02:00
$( P) python$( PYTHON_VERSION) -c " from misc import $( PY_GEN_SCRIPT) ; $( PY_GEN_SCRIPT) .gen_wrappers(\" $( PY_WRAPPER_FILE) .cc\") "
2019-05-27 10:31:50 +02:00
e n d i f
2018-09-19 10:32:34 +02:00
2014-07-24 17:15:01 +02:00
%.o : %.cpp
2015-08-12 15:04:44 +02:00
$( Q) mkdir -p $( dir $@ )
2015-10-11 00:47:37 +02:00
$( P) $( CXX) -o $@ -c $( CPPFLAGS) $( CXXFLAGS) $<
2013-01-05 11:13:26 +01:00
2016-10-14 09:35:18 +02:00
YOSYS_VER_STR := Yosys $( YOSYS_VER) ( git sha1 $( GIT_REV) , $( notdir $( CXX) ) $( shell \
$( CXX) --version | tr ' ()' '\n' | grep '^[0-9]' | head -n1) $( filter -f% -m% -O% -DNDEBUG,$( CXXFLAGS) ) )
2015-08-12 15:04:44 +02:00
kernel/version_$(GIT_REV).cc : $( YOSYS_SRC ) /Makefile
2014-07-24 17:15:01 +02:00
$( P) rm -f kernel/version_*.o kernel/version_*.d kernel/version_*.cc
2016-10-14 09:35:18 +02:00
$( Q) mkdir -p kernel && echo " namespace Yosys { extern const char *yosys_version_str; const char *yosys_version_str=\" $( YOSYS_VER_STR) \"; } " > kernel/version_$( GIT_REV) .cc
2013-08-20 09:48:12 +02:00
2018-02-13 15:22:50 +01:00
i f e q ( $( ENABLE_VERIFIC ) , 1 )
CXXFLAGS_NOVERIFIC = $( foreach v,$( CXXFLAGS) ,$( if $( findstring $( VERIFIC_DIR) ,$( v) ) ,,$( v) ) )
2024-02-25 17:02:35 +01:00
LIBS_NOVERIFIC = $( foreach v,$( LIBS) ,$( if $( findstring $( VERIFIC_DIR) ,$( v) ) ,,$( v) ) )
2018-02-13 15:22:50 +01:00
e l s e
CXXFLAGS_NOVERIFIC = $( CXXFLAGS)
2024-02-25 17:02:35 +01:00
LIBS_NOVERIFIC = $( LIBS)
2018-02-13 15:22:50 +01:00
e n d i f
2020-04-10 10:38:40 +02:00
$(PROGRAM_PREFIX)yosys-config : misc /yosys -config .in
2022-10-31 09:10:46 +01:00
$( P) $( SED) -e 's#@CXXFLAGS@#$(subst -Ilibs/dlfcn-win32,,$(subst -I. -I"$(YOSYS_SRC)",-I"$(DATDIR)/include",$(strip $(CXXFLAGS_NOVERIFIC))))#;' \
2024-02-25 17:02:35 +01:00
-e 's#@CXX@#$(strip $(CXX))#;' -e 's#@LINKFLAGS@#$(strip $(LINKFLAGS) $(PLUGIN_LINKFLAGS))#;' -e 's#@LIBS@#$(strip $(LIBS_NOVERIFIC) $(PLUGIN_LIBS))#;' \
2020-04-10 10:38:40 +02:00
-e 's#@BINDIR@#$(strip $(BINDIR))#;' -e 's#@DATDIR@#$(strip $(DATDIR))#;' < $< > $( PROGRAM_PREFIX) yosys-config
$( Q) chmod +x $( PROGRAM_PREFIX) yosys-config
2013-03-06 11:58:07 +01:00
2024-04-12 14:29:05 +02:00
.PHONY : check -git -abc
check-git-abc :
2024-04-14 19:56:07 +02:00
@if [ ! -d " $( YOSYS_SRC) /abc " ] ; then \
2024-05-09 09:22:48 +02:00
echo "Error: The 'abc' directory does not exist." ; \
echo "Initialize the submodule: Run 'git submodule update --init' to set up 'abc' as a submodule." ; \
exit 1; \
2024-04-14 19:56:07 +02:00
elif git -C " $( YOSYS_SRC) " submodule status abc 2>/dev/null | grep -q '^ ' ; then \
2024-05-09 09:22:48 +02:00
exit 0; \
elif [ -f " $( YOSYS_SRC) /abc/.gitcommit " ] && ! grep -q '\$$Format:%h\$$' " $( YOSYS_SRC) /abc/.gitcommit " ; then \
echo "'abc' comes from a tarball. Continuing." ; \
exit 0; \
2024-04-14 19:56:07 +02:00
elif [ -f " $( YOSYS_SRC) /abc/.gitcommit " ] && grep -q '\$$Format:%h\$$' " $( YOSYS_SRC) /abc/.gitcommit " ; then \
2024-05-09 09:22:48 +02:00
echo "Error: 'abc' is not configured as a git submodule." ; \
echo "To resolve this:" ; \
echo "1. Back up your changes: Save any modifications from the 'abc' directory to another location." ; \
echo "2. Remove the existing 'abc' directory: Delete the 'abc' directory and all its contents." ; \
echo "3. Initialize the submodule: Run 'git submodule update --init' to set up 'abc' as a submodule." ; \
echo "4. Reapply your changes: Move your saved changes back to the 'abc' directory, if necessary." ; \
exit 1; \
2024-04-14 19:56:07 +02:00
else \
2024-05-09 09:22:48 +02:00
echo "Initialize the submodule: Run 'git submodule update --init' to set up 'abc' as a submodule." ; \
exit 1; \
2024-04-12 14:29:05 +02:00
fi
2024-05-10 15:01:39 +02:00
abc/abc$(EXE) abc/libabc.a : check -git -abc
2014-07-24 17:15:01 +02:00
$( P)
2024-04-12 07:08:18 +02:00
$( Q) mkdir -p abc && $( MAKE) -C $( PROGRAM_PREFIX) abc -f " $( realpath $( YOSYS_SRC) /abc/Makefile) " ABCSRC = " $( realpath $( YOSYS_SRC) /abc/) " $( S) $( ABCMKARGS) $( if $( filter %.a,$@ ) ,PROG= "abc" ,PROG= " abc $( EXE) " ) MSG_PREFIX = " $( eval P_OFFSET = 5) $( call P_SHOW) $( eval P_OFFSET = 10) ABC: " $( if $( filter %.a,$@ ) ,libabc.a)
$(PROGRAM_PREFIX)yosys-abc$(EXE) : abc /abc $( EXE )
2024-04-12 07:24:45 +02:00
$( P) cp $< $( PROGRAM_PREFIX) yosys-abc$( EXE)
2024-04-12 07:08:18 +02:00
$(PROGRAM_PREFIX)yosys-libabc.a : abc /libabc .a
2024-04-12 07:24:45 +02:00
$( P) cp $< $( PROGRAM_PREFIX) yosys-libabc.a
2017-11-14 11:19:21 +01:00
2016-09-15 10:00:29 +02:00
i f n e q ( $( SEED ) , )
SEEDOPT = " -S $( SEED) "
e l s e
SEEDOPT = ""
e n d i f
2019-06-28 04:54:09 +02:00
i f n e q ( $( ABCEXTERNAL ) , )
ABCOPT = " -A $( ABCEXTERNAL) "
e l s e
ABCOPT = ""
e n d i f
2024-02-14 12:07:47 +01:00
# When YOSYS_NOVERIFIC is set as a make variable, also export it to the
# enviornment, so that `YOSYS_NOVERIFIC=1 make test` _and_
# `make test YOSYS_NOVERIFIC=1` will run with verific disabled.
i f e q ( $( YOSYS_NOVERIFIC ) , 1 )
export YOSYS_NOVERIFIC
e n d i f
2014-03-12 10:46:27 +01:00
test : $( TARGETS ) $( EXTRA_TARGETS )
2023-02-27 09:27:04 +01:00
i f e q ( $( ENABLE_VERIFIC ) , 1 )
2024-02-14 12:07:47 +01:00
i f e q ( $( YOSYS_NOVERIFIC ) , 1 )
@echo
@echo "Running tests without verific support due to YOSYS_NOVERIFIC=1"
@echo
e l s e
2023-02-27 09:27:04 +01:00
+cd tests/verific && bash run-test.sh $( SEEDOPT)
2024-02-14 12:07:47 +01:00
e n d i f
2023-02-27 09:27:04 +01:00
e n d i f
2016-09-15 10:00:29 +02:00
+cd tests/simple && bash run-test.sh $( SEEDOPT)
2019-08-17 14:37:07 +02:00
+cd tests/simple_abc9 && bash run-test.sh $( SEEDOPT)
2016-09-15 10:00:29 +02:00
+cd tests/hana && bash run-test.sh $( SEEDOPT)
+cd tests/asicworld && bash run-test.sh $( SEEDOPT)
2019-03-15 00:48:23 +01:00
# +cd tests/realmath && bash run-test.sh $(SEEDOPT)
2016-09-15 10:00:29 +02:00
+cd tests/share && bash run-test.sh $( SEEDOPT)
2019-08-04 19:06:38 +02:00
+cd tests/opt_share && bash run-test.sh $( SEEDOPT)
2016-09-15 10:00:29 +02:00
+cd tests/fsm && bash run-test.sh $( SEEDOPT)
2014-07-30 19:21:52 +02:00
+cd tests/techmap && bash run-test.sh
2019-06-28 04:54:09 +02:00
+cd tests/memories && bash run-test.sh $( ABCOPT) $( SEEDOPT)
2022-05-06 16:30:56 +02:00
+cd tests/memlib && bash run-test.sh $( SEEDOPT)
2016-09-15 10:00:29 +02:00
+cd tests/bram && bash run-test.sh $( SEEDOPT)
2014-07-30 19:21:52 +02:00
+cd tests/various && bash run-test.sh
2020-03-23 07:13:48 +01:00
+cd tests/select && bash run-test.sh
2014-07-30 19:21:52 +02:00
+cd tests/sat && bash run-test.sh
2022-02-15 09:35:53 +01:00
+cd tests/sim && bash run-test.sh
2018-10-18 21:27:04 +02:00
+cd tests/svinterfaces && bash run-test.sh $( SEEDOPT)
2019-09-20 14:00:26 +02:00
+cd tests/svtypes && bash run-test.sh $( SEEDOPT)
2019-08-19 18:44:23 +02:00
+cd tests/proc && bash run-test.sh
2021-05-05 20:31:27 +02:00
+cd tests/blif && bash run-test.sh
2018-12-05 01:23:22 +01:00
+cd tests/opt && bash run-test.sh
2019-06-28 04:54:09 +02:00
+cd tests/aiger && bash run-test.sh $( ABCOPT)
2019-06-26 19:17:52 +02:00
+cd tests/arch && bash run-test.sh
2019-10-18 11:06:12 +02:00
+cd tests/arch/ice40 && bash run-test.sh $( SEEDOPT)
+cd tests/arch/xilinx && bash run-test.sh $( SEEDOPT)
+cd tests/arch/ecp5 && bash run-test.sh $( SEEDOPT)
2020-11-17 19:01:57 +01:00
+cd tests/arch/machxo2 && bash run-test.sh $( SEEDOPT)
2019-10-18 11:06:12 +02:00
+cd tests/arch/efinix && bash run-test.sh $( SEEDOPT)
+cd tests/arch/anlogic && bash run-test.sh $( SEEDOPT)
2019-10-28 14:28:03 +01:00
+cd tests/arch/gowin && bash run-test.sh $( SEEDOPT)
2019-11-19 11:19:00 +01:00
+cd tests/arch/intel_alm && bash run-test.sh $( SEEDOPT)
2020-10-01 12:15:54 +02:00
+cd tests/arch/nexus && bash run-test.sh $( SEEDOPT)
2023-10-09 13:13:42 +02:00
+cd tests/arch/quicklogic/pp3 && bash run-test.sh $( SEEDOPT)
2023-11-27 12:14:48 +01:00
+cd tests/arch/quicklogic/qlf_k6n10f && bash run-test.sh $( SEEDOPT)
2021-09-24 16:00:59 +02:00
+cd tests/arch/gatemate && bash run-test.sh $( SEEDOPT)
2019-09-26 05:57:16 +02:00
+cd tests/rpc && bash run-test.sh
2020-02-02 02:44:06 +01:00
+cd tests/memfile && bash run-test.sh
2020-05-11 19:30:20 +02:00
+cd tests/verilog && bash run-test.sh
2022-11-25 17:48:15 +01:00
+cd tests/xprop && bash run-test.sh $( SEEDOPT)
2020-12-05 23:26:25 +01:00
+cd tests/fmt && bash run-test.sh
2023-12-13 13:02:30 +01:00
+cd tests/cxxrtl && bash run-test.sh
2014-07-26 14:08:20 +02:00
@echo ""
@echo " Passed \"make test\"."
@echo ""
2013-01-05 11:13:26 +01:00
2014-07-25 13:15:46 +02:00
VALGRIND ?= valgrind --error-exitcode= 1 --leak-check= full --show-reachable= yes --errors-for-leak-kinds= all
vgtest : $( TARGETS ) $( EXTRA_TARGETS )
2015-02-08 15:13:51 +01:00
$( VALGRIND) ./yosys -p 'setattr -mod -unset top; synth' $$ ( ls tests/simple/*.v | grep -v repwhile.v )
2014-07-26 14:08:20 +02:00
@echo ""
@echo " Passed \"make vgtest\"."
@echo ""
2014-07-25 13:15:46 +02:00
2014-07-24 02:11:12 +02:00
vloghtb : $( TARGETS ) $( EXTRA_TARGETS )
2014-07-30 19:21:52 +02:00
+cd tests/vloghtb && bash run-test.sh
2014-07-26 14:08:20 +02:00
@echo ""
@echo " Passed \"make vloghtb\"."
@echo ""
2014-07-24 02:11:12 +02:00
2018-08-30 12:26:26 +02:00
ystests : $( TARGETS ) $( EXTRA_TARGETS )
rm -rf tests/ystests
git clone https://github.com/YosysHQ/yosys-tests.git tests/ystests
2018-11-08 09:58:47 +01:00
+$( MAKE) PATH = " $$ PWD: $$ PATH " -C tests/ystests
2018-08-30 12:26:26 +02:00
@echo ""
@echo " Finished \"make ystests\"."
@echo ""
2016-12-04 14:28:25 +01:00
# Unit test
2020-04-10 15:02:48 +02:00
unit-test : libyosys .so
2016-12-04 14:28:25 +01:00
@$( MAKE) -C $( UNITESTPATH) CXX = " $( CXX) " CPPFLAGS = " $( CPPFLAGS) " \
2024-02-25 17:02:35 +01:00
CXXFLAGS = " $( CXXFLAGS) " LIBS = " $( LIBS) " ROOTPATH = " $( CURDIR) "
2016-12-04 14:28:25 +01:00
clean-unit-test :
@$( MAKE) -C $( UNITESTPATH) clean
2013-11-24 05:05:50 +01:00
install : $( TARGETS ) $( EXTRA_TARGETS )
2020-03-12 18:26:19 +01:00
$( INSTALL_SUDO) mkdir -p $( DESTDIR) $( BINDIR)
2020-04-10 15:02:48 +02:00
$( INSTALL_SUDO) cp $( filter-out libyosys.so,$( TARGETS) ) $( DESTDIR) $( BINDIR)
2020-04-10 10:38:40 +02:00
i f n e q ( $( filter $ ( PROGRAM_PREFIX ) yosys ,$ ( TARGETS ) ) , )
$( INSTALL_SUDO) $( STRIP) -S $( DESTDIR) $( BINDIR) /$( PROGRAM_PREFIX) yosys
2018-01-17 14:14:10 +01:00
e n d i f
2020-04-10 10:38:40 +02:00
i f n e q ( $( filter $ ( PROGRAM_PREFIX ) yosys -abc ,$ ( TARGETS ) ) , )
$( INSTALL_SUDO) $( STRIP) $( DESTDIR) $( BINDIR) /$( PROGRAM_PREFIX) yosys-abc
2018-01-17 14:14:10 +01:00
e n d i f
2020-04-10 10:38:40 +02:00
i f n e q ( $( filter $ ( PROGRAM_PREFIX ) yosys -filterlib ,$ ( TARGETS ) ) , )
$( INSTALL_SUDO) $( STRIP) $( DESTDIR) $( BINDIR) /$( PROGRAM_PREFIX) yosys-filterlib
2018-01-17 14:14:10 +01:00
e n d i f
2016-03-24 10:18:21 +01:00
$( INSTALL_SUDO) mkdir -p $( DESTDIR) $( DATDIR)
$( INSTALL_SUDO) cp -r share/. $( DESTDIR) $( DATDIR) /.
2015-08-04 20:25:26 +02:00
i f e q ( $( ENABLE_LIBYOSYS ) , 1 )
2020-03-12 18:26:19 +01:00
$( INSTALL_SUDO) mkdir -p $( DESTDIR) $( LIBDIR)
2020-04-10 15:02:48 +02:00
$( INSTALL_SUDO) cp libyosys.so $( DESTDIR) $( LIBDIR) /
$( INSTALL_SUDO) $( STRIP) -S $( DESTDIR) $( LIBDIR) /libyosys.so
2018-12-21 14:08:23 +01:00
i f e q ( $( ENABLE_PYOSYS ) , 1 )
2020-09-30 07:47:36 +02:00
$( INSTALL_SUDO) mkdir -p $( DESTDIR) $( PYTHON_DESTDIR) /$( subst -,_,$( PROGRAM_PREFIX) ) pyosys
$( INSTALL_SUDO) cp libyosys.so $( DESTDIR) $( PYTHON_DESTDIR) /$( subst -,_,$( PROGRAM_PREFIX) ) pyosys/libyosys.so
$( INSTALL_SUDO) cp misc/__init__.py $( DESTDIR) $( PYTHON_DESTDIR) /$( subst -,_,$( PROGRAM_PREFIX) ) pyosys/
2018-12-11 08:42:57 +01:00
e n d i f
2015-08-04 13:22:49 +02:00
e n d i f
2022-10-31 09:10:46 +01:00
i f e q ( $( ENABLE_PLUGINS ) , 1 )
i f e q ( $( OS ) , M I N G W )
$( INSTALL_SUDO) mkdir -p $( DESTDIR) $( LIBDIR)
$( INSTALL_SUDO) cp libyosys_exe.a $( DESTDIR) $( LIBDIR) /
e n d i f
e n d i f
2013-01-05 11:13:26 +01:00
2015-02-07 17:46:46 +01:00
uninstall :
2017-02-24 02:21:03 +01:00
$( INSTALL_SUDO) rm -vf $( addprefix $( DESTDIR) $( BINDIR) /,$( notdir $( TARGETS) ) )
2016-03-24 10:18:21 +01:00
$( INSTALL_SUDO) rm -rvf $( DESTDIR) $( DATDIR)
2015-08-04 20:25:26 +02:00
i f e q ( $( ENABLE_LIBYOSYS ) , 1 )
2020-04-10 15:02:48 +02:00
$( INSTALL_SUDO) rm -vf $( DESTDIR) $( LIBDIR) /libyosys.so
2018-12-21 14:08:23 +01:00
i f e q ( $( ENABLE_PYOSYS ) , 1 )
2020-09-30 07:47:36 +02:00
$( INSTALL_SUDO) rm -vf $( DESTDIR) $( PYTHON_DESTDIR) /$( subst -,_,$( PROGRAM_PREFIX) ) pyosys/libyosys.so
$( INSTALL_SUDO) rm -vf $( DESTDIR) $( PYTHON_DESTDIR) /$( subst -,_,$( PROGRAM_PREFIX) ) pyosys/__init__.py
$( INSTALL_SUDO) rmdir $( DESTDIR) $( PYTHON_DESTDIR) /$( subst -,_,$( PROGRAM_PREFIX) ) pyosys
2018-12-11 08:42:57 +01:00
e n d i f
2015-08-04 13:22:49 +02:00
e n d i f
2015-02-07 17:46:46 +01:00
2022-11-15 12:55:22 +01:00
# also others, but so long as it doesn't fail this is enough to know we tried
docs/source/cmd/abc.rst : $( TARGETS ) $( EXTRA_TARGETS )
mkdir -p docs/source/cmd
./$( PROGRAM_PREFIX) yosys -p 'help -write-rst-command-reference-manual'
2024-03-18 18:05:03 +01:00
PHONY : docs /gen_examples docs /gen_images docs /guidelines docs /usage docs /reqs
2024-01-25 00:35:03 +01:00
docs/gen_examples :
$( Q) $( MAKE) -C docs examples
2022-11-15 12:55:22 +01:00
docs/gen_images :
2024-01-25 00:35:03 +01:00
$( Q) $( MAKE) -C docs images
2022-11-15 12:55:22 +01:00
2022-11-24 15:56:44 +01:00
DOCS_GUIDELINE_FILES := GettingStarted CodingStyle
2024-04-15 00:13:22 +02:00
docs/guidelines docs/source/generated :
$( Q) mkdir -p docs/source/generated
$( Q) cp -f $( addprefix guidelines/,$( DOCS_GUIDELINE_FILES) ) docs/source/generated
2022-11-24 15:56:44 +01:00
2024-04-13 01:20:36 +02:00
# some commands return an error and print the usage text to stderr
d e f i n e D O C _ U S A G E _ S T D E R R
2024-04-15 00:13:22 +02:00
docs/source/generated/$(1) : $( PROGRAM_PREFIX ) $( 1) docs /source /generated
2024-04-13 01:20:36 +02:00
-$( Q) ./$$ < --help 2> $$ @
e n d e f
DOCS_USAGE_STDERR := yosys-config yosys-filterlib yosys-abc
$( foreach usage ,$ ( DOCS_USAGE_STDERR ) ,$ ( eval $ ( call DOC_USAGE_STDERR ,$ ( usage ) ) ) )
# others print to stdout
d e f i n e D O C _ U S A G E _ S T D O U T
2024-04-15 00:13:22 +02:00
docs/source/generated/$(1) : $( PROGRAM_PREFIX ) $( 1) docs /source /generated
2024-04-13 01:20:36 +02:00
$( Q) ./$$ < --help > $$ @
e n d e f
DOCS_USAGE_STDOUT := yosys yosys-smtbmc yosys-witness
$( foreach usage ,$ ( DOCS_USAGE_STDOUT ) ,$ ( eval $ ( call DOC_USAGE_STDOUT ,$ ( usage ) ) ) )
2024-04-15 00:13:22 +02:00
docs/usage : $( addprefix docs /source /generated /,$ ( DOCS_USAGE_STDOUT ) $ ( DOCS_USAGE_STDERR ) )
2023-10-31 22:13:28 +01:00
2024-03-18 18:05:03 +01:00
docs/reqs :
$( Q) $( MAKE) -C docs reqs
2022-11-15 12:55:22 +01:00
DOC_TARGET ?= html
2024-03-18 18:05:03 +01:00
docs : docs /source /cmd /abc .rst docs /gen_examples docs /gen_images docs /guidelines docs /usage docs /reqs
2024-05-07 15:35:25 +02:00
$( Q) $( MAKE) -C docs $( DOC_TARGET)
2022-11-15 12:55:22 +01:00
2013-01-05 11:13:26 +01:00
clean :
2014-04-05 00:39:03 +02:00
rm -rf share
2018-09-19 10:32:34 +02:00
rm -rf kernel/*.pyh
rm -f $( OBJS) $( GENFILES) $( TARGETS) $( EXTRA_TARGETS) $( EXTRA_OBJS) $( PY_WRAP_INCLUDES) $( PY_WRAPPER_FILE) .cc
2019-08-07 20:10:18 +02:00
rm -f kernel/version_*.o kernel/version_*.cc
2014-04-05 00:39:03 +02:00
rm -f libs/*/*.d frontends/*/*.d passes/*/*.d backends/*/*.d kernel/*.d techlibs/*/*.d
2017-07-03 18:33:11 +02:00
rm -rf tests/asicworld/*.out tests/asicworld/*.log
rm -rf tests/hana/*.out tests/hana/*.log
rm -rf tests/simple/*.out tests/simple/*.log
rm -rf tests/memories/*.out tests/memories/*.log tests/memories/*.dmp
rm -rf tests/sat/*.log tests/techmap/*.log tests/various/*.log
2022-02-18 17:13:09 +01:00
rm -rf tests/bram/temp tests/fsm/temp tests/realmath/temp tests/share/temp tests/smv/temp tests/various/temp
2017-07-03 18:33:11 +02:00
rm -rf vloghtb/Makefile vloghtb/refdat vloghtb/rtl vloghtb/scripts vloghtb/spec vloghtb/check_yosys vloghtb/vloghammer_tb.tar.bz2 vloghtb/temp vloghtb/log_test_*
2018-10-18 21:27:04 +02:00
rm -f tests/svinterfaces/*.log_stdout tests/svinterfaces/*.log_stderr tests/svinterfaces/dut_result.txt tests/svinterfaces/reference_result.txt tests/svinterfaces/a.out tests/svinterfaces/*_syn.v tests/svinterfaces/*.diff
2017-07-03 18:33:11 +02:00
rm -f tests/tools/cmp_tbdata
2022-11-15 12:55:22 +01:00
$( MAKE) -C docs clean
2013-01-05 11:13:26 +01:00
2014-07-25 03:17:06 +02:00
clean-abc :
2015-01-21 00:17:53 +01:00
$( MAKE) -C abc DEP = clean
2020-04-10 10:38:40 +02:00
rm -f $( PROGRAM_PREFIX) yosys-abc$( EXE) $( PROGRAM_PREFIX) yosys-libabc.a abc/abc-[ 0-9a-f] * abc/libabc-[ 0-9a-f] *.a
2014-07-25 03:17:06 +02:00
2013-01-05 11:13:26 +01:00
mrproper : clean
2013-01-05 11:44:29 +01:00
git clean -xdf
2013-01-05 11:13:26 +01:00
2018-08-27 14:22:21 +02:00
coverage :
2020-04-10 10:38:40 +02:00
./$( PROGRAM_PREFIX) yosys -qp 'help; help -all'
2018-08-27 14:22:21 +02:00
rm -rf coverage.info coverage_html
lcov --capture -d . --no-external -o coverage.info
genhtml coverage.info --output-directory coverage_html
2013-01-05 11:13:26 +01:00
qtcreator :
{ for file in $( basename $( OBJS) ) ; do \
for prefix in cc y l; do if [ -f $$ { file} .$$ { prefix} ] ; then echo $$ file.$$ { prefix} ; fi ; done \
2013-03-01 01:08:16 +01:00
done ; find backends frontends kernel libs passes -type f \( -name '*.h' -o -name '*.hh' \) ; } > qtcreator.files
{ echo .; find backends frontends kernel libs passes -type f \( -name '*.h' -o -name '*.hh' \) -printf '%h\n' | sort -u; } > qtcreator.includes
2013-01-05 11:13:26 +01:00
touch qtcreator.config qtcreator.creator
2014-11-12 00:26:47 +01:00
vcxsrc : $( GENFILES ) $( EXTRA_TARGETS )
rm -rf yosys-win32-vcxsrc-$( YOSYS_VER) { ,.zip}
2015-02-09 12:48:15 +01:00
set -e; for f in ` ls $( filter %.cc %.cpp,$( GENFILES) ) $( addsuffix .cc,$( basename $( OBJS) ) ) $( addsuffix .cpp,$( basename $( OBJS) ) ) 2> /dev/null` ; do \
2016-05-11 09:31:53 +02:00
echo " Analyse: $$ f " >& 2; cpp -std= c++11 -MM -I. -D_YOSYS_ $$ f; done | sed 's,.*:,,; s,//*,/,g; s,/[^/]*/\.\./,/,g; y, \\,\n\n,;' | grep '^[^/]' | sort -u | grep -v kernel/version_ > srcfiles.txt
2014-11-12 00:26:47 +01:00
bash misc/create_vcxsrc.sh yosys-win32-vcxsrc $( YOSYS_VER) $( GIT_REV)
echo "namespace Yosys { extern const char *yosys_version_str; const char *yosys_version_str=\"Yosys (Version Information Unavailable)\"; }" > kernel/version.cc
zip yosys-win32-vcxsrc-$( YOSYS_VER) /genfiles.zip $( GENFILES) kernel/version.cc
zip -r yosys-win32-vcxsrc-$( YOSYS_VER) .zip yosys-win32-vcxsrc-$( YOSYS_VER) /
rm -f srcfiles.txt kernel/version.cc
2014-10-11 11:53:36 +02:00
i f e q ( $( CONFIG ) , m x e )
2014-11-12 00:26:47 +01:00
mxebin : $( TARGETS ) $( EXTRA_TARGETS )
rm -rf yosys-win32-mxebin-$( YOSYS_VER) { ,.zip}
2014-10-18 15:17:33 +02:00
mkdir -p yosys-win32-mxebin-$( YOSYS_VER)
2020-04-10 10:38:40 +02:00
cp -r $( PROGRAM_PREFIX) yosys.exe share/ yosys-win32-mxebin-$( YOSYS_VER) /
2014-10-12 14:48:19 +02:00
i f e q ( $( ENABLE_ABC ) , 1 )
2020-04-10 10:38:40 +02:00
cp -r $( PROGRAM_PREFIX) yosys-abc.exe abc/lib/x86/pthreadVC2.dll yosys-win32-mxebin-$( YOSYS_VER) /
2014-10-12 14:48:19 +02:00
e n d i f
2014-10-18 15:17:33 +02:00
echo -en 'This is Yosys $(YOSYS_VER) for Win32.\r\n' > yosys-win32-mxebin-$( YOSYS_VER) /readme.txt
2021-06-09 12:16:56 +02:00
echo -en 'Documentation at https://yosyshq.net/yosys/.\r\n' >> yosys-win32-mxebin-$( YOSYS_VER) /readme.txt
2014-10-18 15:17:33 +02:00
zip -r yosys-win32-mxebin-$( YOSYS_VER) .zip yosys-win32-mxebin-$( YOSYS_VER) /
2014-10-11 11:53:36 +02:00
e n d i f
2013-03-07 17:34:40 +01:00
config-clean : clean
rm -f Makefile.conf
2014-07-31 23:14:17 +02:00
config-clang : clean
echo 'CONFIG := clang' > Makefile.conf
2013-03-07 17:34:40 +01:00
2014-07-31 23:14:17 +02:00
config-gcc : clean
echo 'CONFIG := gcc' > Makefile.conf
2013-03-07 17:34:40 +01:00
2018-08-18 14:00:55 +02:00
config-gcc-static : clean
echo 'CONFIG := gcc-static' > Makefile.conf
echo 'ENABLE_PLUGINS := 0' >> Makefile.conf
echo 'ENABLE_READLINE := 0' >> Makefile.conf
echo 'ENABLE_TCL := 0' >> Makefile.conf
2019-05-27 20:43:10 +02:00
config-afl-gcc : clean
echo 'CONFIG := afl-gcc' > Makefile.conf
2014-08-22 16:09:13 +02:00
config-emcc : clean
echo 'CONFIG := emcc' > Makefile.conf
echo 'ENABLE_TCL := 0' >> Makefile.conf
echo 'ENABLE_ABC := 0' >> Makefile.conf
echo 'ENABLE_PLUGINS := 0' >> Makefile.conf
echo 'ENABLE_READLINE := 0' >> Makefile.conf
2020-03-11 15:08:02 +01:00
echo 'ENABLE_ZLIB := 0' >> Makefile.conf
2014-08-22 16:09:13 +02:00
2019-11-11 10:23:06 +01:00
config-wasi : clean
echo 'CONFIG := wasi' > Makefile.conf
echo 'ENABLE_TCL := 0' >> Makefile.conf
echo 'ENABLE_ABC := 0' >> Makefile.conf
echo 'ENABLE_PLUGINS := 0' >> Makefile.conf
echo 'ENABLE_READLINE := 0' >> Makefile.conf
echo 'ENABLE_ZLIB := 0' >> Makefile.conf
2014-10-09 10:50:44 +02:00
config-mxe : clean
echo 'CONFIG := mxe' > Makefile.conf
echo 'ENABLE_PLUGINS := 0' >> Makefile.conf
2020-12-27 05:37:46 +01:00
config-msys2-32 : clean
echo 'CONFIG := msys2-32' > Makefile.conf
echo " PREFIX := $( MINGW_PREFIX) " >> Makefile.conf
2016-08-16 20:41:37 +02:00
2018-06-27 22:33:34 +02:00
config-msys2-64 : clean
echo 'CONFIG := msys2-64' > Makefile.conf
2020-12-27 05:37:46 +01:00
echo " PREFIX := $( MINGW_PREFIX) " >> Makefile.conf
2018-06-27 22:33:34 +02:00
2018-09-19 10:16:53 +02:00
config-cygwin : clean
echo 'CONFIG := cygwin' > Makefile.conf
2018-08-27 13:27:05 +02:00
config-gcov : clean
echo 'CONFIG := gcc' > Makefile.conf
echo 'ENABLE_GCOV := 1' >> Makefile.conf
echo 'ENABLE_DEBUG := 1' >> Makefile.conf
2013-03-28 16:50:50 +01:00
config-gprof : clean
2014-07-31 23:14:17 +02:00
echo 'CONFIG := gcc' > Makefile.conf
2013-03-28 16:50:50 +01:00
echo 'ENABLE_GPROF := 1' >> Makefile.conf
2013-11-19 23:13:41 +01:00
config-sudo :
echo "INSTALL_SUDO := sudo" >> Makefile.conf
2015-01-18 16:09:42 +01:00
echo-yosys-ver :
@echo " $( YOSYS_VER) "
echo-git-rev :
@echo " $( GIT_REV) "
2024-03-08 06:08:19 +01:00
echo-cxx :
@echo " $( CXX) "
2013-03-07 17:34:40 +01:00
- i n c l u d e l i b s / * / * . d
2013-01-05 11:13:26 +01:00
- i n c l u d e f r o n t e n d s / * / * . d
- i n c l u d e p a s s e s / * / * . d
- i n c l u d e b a c k e n d s / * / * . d
- i n c l u d e k e r n e l / * . d
2014-02-11 12:58:08 +01:00
- i n c l u d e t e c h l i b s / * / * . d
2013-01-05 11:13:26 +01:00
2022-12-18 22:08:40 +01:00
.PHONY : all top -all abc test install install -abc docs clean mrproper qtcreator coverage vcxsrc mxebin
2023-01-11 09:54:19 +01:00
.PHONY : config -clean config -clang config -gcc config -gcc -static config -afl -gcc config -gprof config -sudo