2018-11-30 22:14:43 -06:00
2019-05-23 18:55:49 -05:00
# CONFIG := clang
CONFIG := gcc
2018-11-30 22:14:43 -06:00
# CONFIG := gcc-4.8
# CONFIG := emcc
# CONFIG := mxe
# CONFIG := msys2
2019-05-23 17:03:08 -05:00
# CONFIG := msys2-64
2018-11-30 22:14:43 -06:00
# features (the more the better)
ENABLE_TCL := 1
ENABLE_ABC := 1
2019-05-23 18:55:49 -05:00
ENABLE_GLOB := 1
2018-11-30 22:14:43 -06:00
ENABLE_PLUGINS := 1
ENABLE_READLINE := 1
2019-05-23 17:03:08 -05:00
ENABLE_EDITLINE := 0
2018-11-30 22:14:43 -06:00
ENABLE_VERIFIC := 0
ENABLE_COVER := 1
ENABLE_LIBYOSYS := 0
2019-05-23 17:03:08 -05:00
ENABLE_PROTOBUF := 0
2018-11-30 22:14:43 -06:00
2019-05-23 18:55:49 -05:00
# python wrappers
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) "" )
PYTHON_MAJOR_VERSION := $( shell echo $( PYTHON_VERSION) | cut -f1 -d.)
PYTHON_PREFIX := ` $( PYTHON_EXECUTABLE) -config --prefix`
PYTHON_DESTDIR := $( PYTHON_PREFIX) /lib/python$( PYTHON_VERSION) /site-packages
2018-11-30 22:14:43 -06:00
# other configuration flags
2019-05-23 17:03:08 -05:00
ENABLE_GCOV := 0
2018-11-30 22:14:43 -06:00
ENABLE_GPROF := 0
2019-05-23 17:03:08 -05:00
ENABLE_DEBUG := 0
2018-11-30 22:14:43 -06:00
ENABLE_NDEBUG := 0
2019-05-23 17:03:08 -05:00
LINK_CURSES := 0
LINK_TERMCAP := 0
LINK_ABC := 0
# Needed for environments that don't have proper thread support (i.e. emscripten)
DISABLE_ABC_THREADS := 0
2018-11-30 22:14:43 -06:00
# clang sanitizers
SANITIZER =
# SANITIZER = address
# SANITIZER = memory
# SANITIZER = undefined
# SANITIZER = cfi
2019-05-23 17:03:08 -05:00
OS := $( shell uname -s)
2018-11-30 22:14:43 -06:00
PREFIX ?= /usr/local
INSTALL_SUDO :=
BINDIR := $( PREFIX) /bin
LIBDIR := $( PREFIX) /lib
DATDIR := $( PREFIX) /share/yosys
EXE =
OBJS =
GENFILES =
EXTRA_OBJS =
EXTRA_TARGETS =
TARGETS = yosys$( EXE) yosys-config
PRETTY = 1
SMALL = 0
2019-05-23 17:03:08 -05:00
# Unit test
UNITESTPATH := tests/unit
2018-11-30 22:14:43 -06:00
all : top -all
YOSYS_SRC := $( dir $( firstword $( MAKEFILE_LIST) ) )
VPATH := $( YOSYS_SRC)
2019-05-23 17:03:08 -05:00
CXXFLAGS := $( CXXFLAGS) -Wall -Wextra -ggdb -I. -I" $( YOSYS_SRC) " -MD -D_YOSYS_ -fPIC -I$( PREFIX) /include
LDFLAGS := $( LDFLAGS) -L$( LIBDIR)
LDLIBS := $( LDLIBS) -lstdc++ -lm
PLUGIN_LDFLAGS :=
PKG_CONFIG ?= pkg-config
SED ?= sed
BISON ?= bison
STRIP ?= strip
AWK ?= awk
i f e q ( $( OS ) , D a r w i n )
PLUGIN_LDFLAGS += -undefined dynamic_lookup
# homebrew search paths
i f n e q ( $( shell which brew ) , )
BREW_PREFIX := $( shell brew --prefix) /opt
CXXFLAGS += -I$( BREW_PREFIX) /readline/include
LDFLAGS += -L$( BREW_PREFIX) /readline/lib
PKG_CONFIG_PATH := $( BREW_PREFIX) /libffi/lib/pkgconfig:$( PKG_CONFIG_PATH)
PKG_CONFIG_PATH := $( BREW_PREFIX) /tcl-tk/lib/pkgconfig:$( PKG_CONFIG_PATH)
export PATH := $( BREW_PREFIX) /bison/bin:$( BREW_PREFIX) /gettext/bin:$( BREW_PREFIX) /flex/bin:$( PATH)
# macports search paths
e l s e i f n e q ( $( shell which port ) , )
PORT_PREFIX := $( patsubst %/bin/port,%,$( shell which port) )
CXXFLAGS += -I$( PORT_PREFIX) /include
LDFLAGS += -L$( PORT_PREFIX) /lib
PKG_CONFIG_PATH := $( PORT_PREFIX) /lib/pkgconfig:$( PKG_CONFIG_PATH)
export PATH := $( PORT_PREFIX) /bin:$( PATH)
e n d i f
2018-11-30 22:14:43 -06:00
e l s e
2019-05-23 17:03:08 -05:00
LDFLAGS += -rdynamic
LDLIBS += -lrt
2018-11-30 22:14:43 -06:00
e n d i f
2019-05-23 18:55:49 -05:00
YOSYS_VER := 0.8+$( shell cd $( YOSYS_SRC) && test -e .git && { git log --author= clifford@clifford.at --oneline 4d4665b.. 2> /dev/null | wc -l; } )
2018-11-30 22:14:43 -06:00
GIT_REV := $( shell cd $( YOSYS_SRC) && git rev-parse --short HEAD 2> /dev/null || echo UNKNOWN)
OBJS = kernel/version_$( GIT_REV) .o
# set 'ABCREV = default' to use abc/ as it is
#
# Note: If you do ABC development, make sure that 'abc' in this directory
# is just a symlink to your actual ABC working directory, as 'make mrproper'
# will remove the 'abc' directory and you do not want to accidentally
# delete your work on ABC..
2019-05-23 18:55:49 -05:00
ABCREV = 3709744
2018-11-30 22:14:43 -06:00
ABCPULL = 1
ABCURL ?= https://github.com/berkeley-abc/abc
ABCMKARGS = CC = " $( CXX) " CXX = " $( CXX) " ABC_USE_LIBSTDCXX = 1
# set ABCEXTERNAL = <abc-command> to use an external ABC instance
# Note: The in-tree ABC (yosys-abc) will not be installed when ABCEXTERNAL is set.
ABCEXTERNAL ?=
d e f i n e n e w l i n e
e n d e f
i f n e q ( $( wildcard Makefile .conf ) , )
$( info $ ( subst $ $ --$ $ ,$ ( newline ) ,$ ( shell sed 's ,^,[Makefile .conf ] ,; s ,$ $ ,$ $ --$ $ ,;' < Makefile .conf | tr -d '\n ' | sed 's ,\$ $ --\$ $ $ $ ,,') ) )
i n c l u d e M a k e f i l e . c o n f
e n d i f
i f e q ( $( CONFIG ) , c l a n g )
CXX = clang
LD = clang++
CXXFLAGS += -std= c++11 -Os
2019-05-23 17:03:08 -05:00
ABCMKARGS += ARCHFLAGS = "-DABC_USE_STDINT_H"
2018-11-30 22:14:43 -06:00
i f n e q ( $( SANITIZER ) , )
$( info [Clang Sanitizer ] $ ( SANITIZER ) )
CXXFLAGS += -g -O1 -fno-omit-frame-pointer -fno-optimize-sibling-calls -fsanitize= $( SANITIZER)
LDFLAGS += -g -fsanitize= $( SANITIZER)
i f e q ( $( SANITIZER ) , a d d r e s s )
ENABLE_COVER := 0
e n d i f
i f e q ( $( SANITIZER ) , m e m o r y )
CXXFLAGS += -fPIE -fsanitize-memory-track-origins
LDFLAGS += -fPIE -fsanitize-memory-track-origins
e n d i f
i f e q ( $( SANITIZER ) , c f i )
CXXFLAGS += -flto
LDFLAGS += -flto
e n d i f
e n d i f
e l s e i f e q ( $( CONFIG ) , g c c )
CXX = gcc
LD = gcc
CXXFLAGS += -std= c++11 -Os
2019-05-23 17:03:08 -05:00
ABCMKARGS += ARCHFLAGS = "-DABC_USE_STDINT_H"
e l s e i f e q ( $( CONFIG ) , g c c - s t a t i c )
LD = $( CXX)
LDFLAGS := $( filter-out -rdynamic,$( LDFLAGS) ) -static
LDLIBS := $( filter-out -lrt,$( LDLIBS) )
CXXFLAGS := $( filter-out -fPIC,$( CXXFLAGS) )
CXXFLAGS += -std= c++11 -Os
ABCMKARGS = CC = " $( CC) " CXX = " $( CXX) " LD = " $( LD) " ABC_USE_LIBSTDCXX = 1 LIBS = "-lm -lpthread -static" OPTFLAGS = "-O" \
ARCHFLAGS = " -DABC_USE_STDINT_H -DABC_NO_DYNAMIC_LINKING=1 -Wno-unused-but-set-variable $( ARCHFLAGS) " ABC_USE_NO_READLINE = 1
i f e q ( $( DISABLE_ABC_THREADS ) , 1 )
ABCMKARGS += "ABC_USE_NO_PTHREADS=1"
e n d i f
2018-11-30 22:14:43 -06:00
e l s e i f e q ( $( CONFIG ) , g c c - 4 . 8 )
CXX = gcc-4.8
LD = gcc-4.8
CXXFLAGS += -std= c++11 -Os
2019-05-23 17:03:08 -05:00
ABCMKARGS += ARCHFLAGS = "-DABC_USE_STDINT_H"
e l s e i f e q ( $( CONFIG ) , c y g w i n )
CXX = gcc
LD = gcc
CXXFLAGS += -std= gnu++11 -Os
ABCMKARGS += ARCHFLAGS = "-DABC_USE_STDINT_H"
2018-11-30 22:14:43 -06:00
e l s e i f e q ( $( CONFIG ) , e m c c )
CXX = emcc
LD = emcc
CXXFLAGS := -std= c++11 $( filter-out -fPIC -ggdb,$( CXXFLAGS) )
2019-05-23 17:03:08 -05:00
ABCMKARGS += ARCHFLAGS = "-DABC_USE_STDINT_H -DABC_MEMALIGN=8"
2018-11-30 22:14:43 -06:00
EMCCFLAGS := -Os -Wno-warn-absolute-paths
EMCCFLAGS += --memory-init-file 0 --embed-file share -s NO_EXIT_RUNTIME = 1
EMCCFLAGS += -s EXPORTED_FUNCTIONS = "['_main','_run','_prompt','_errmsg']"
EMCCFLAGS += -s TOTAL_MEMORY = 128*1024*1024
# https://github.com/kripken/emscripten/blob/master/src/settings.js
CXXFLAGS += $( EMCCFLAGS)
LDFLAGS += $( EMCCFLAGS)
LDLIBS =
EXE = .js
TARGETS := $( filter-out yosys-config,$( TARGETS) )
EXTRA_TARGETS += yosysjs-$( YOSYS_VER) .zip
2019-05-23 17:03:08 -05:00
i f e q ( $( ENABLE_ABC ) , 1 )
LINK_ABC := 1
DISABLE_ABC_THREADS := 1
e n d i f
2018-11-30 22:14:43 -06: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
yosysjs-$(YOSYS_VER).zip : yosys .js viz .js misc /yosysjs /*
rm -rf yosysjs-$( YOSYS_VER) yosysjs-$( YOSYS_VER) .zip
mkdir -p yosysjs-$( YOSYS_VER)
cp viz.js misc/yosysjs/* yosys.js yosysjs-$( YOSYS_VER) /
zip -r yosysjs-$( YOSYS_VER) .zip yosysjs-$( YOSYS_VER)
yosys.html : misc /yosys .html
$( P) cp misc/yosys.html yosys.html
e l s e i f e q ( $( CONFIG ) , m x e )
2019-05-23 17:03:08 -05:00
PKG_CONFIG = /usr/local/src/mxe/usr/bin/i686-w64-mingw32.static-pkg-config
CXX = /usr/local/src/mxe/usr/bin/i686-w64-mingw32.static-g++
LD = /usr/local/src/mxe/usr/bin/i686-w64-mingw32.static-g++
CXXFLAGS += -std= c++11 -Os -D_POSIX_SOURCE -DYOSYS_MXE_HACKS -Wno-attributes
2018-11-30 22:14:43 -06:00
CXXFLAGS := $( filter-out -fPIC,$( CXXFLAGS) )
LDFLAGS := $( filter-out -rdynamic,$( LDFLAGS) ) -s
LDLIBS := $( filter-out -lrt,$( LDLIBS) )
2019-05-23 17:03:08 -05:00
ABCMKARGS += ARCHFLAGS = "-DWIN32_NO_DLL -DHAVE_STRUCT_TIMESPEC -fpermissive -w"
ABCMKARGS += LIBS = "lib/x86/pthreadVC2.lib -s" ABC_USE_NO_READLINE = 1 CC = "/usr/local/src/mxe/usr/bin/i686-w64-mingw32.static-gcc"
2018-11-30 22:14:43 -06:00
EXE = .exe
e l s e i f e q ( $( CONFIG ) , m s y s 2 )
2019-05-23 17:03:08 -05:00
CXX = i686-w64-mingw32-g++
LD = i686-w64-mingw32-g++
CXXFLAGS += -std= c++11 -Os -D_POSIX_SOURCE -DYOSYS_WIN32_UNIX_DIR
CXXFLAGS := $( filter-out -fPIC,$( CXXFLAGS) )
LDFLAGS := $( filter-out -rdynamic,$( LDFLAGS) ) -s
LDLIBS := $( filter-out -lrt,$( LDLIBS) )
ABCMKARGS += ARCHFLAGS = "-DABC_USE_STDINT_H -DWIN32_NO_DLL -DHAVE_STRUCT_TIMESPEC -fpermissive -w"
ABCMKARGS += LIBS = "-lpthread -s" ABC_USE_NO_READLINE = 0 CC = "i686-w64-mingw32-gcc" CXX = " $( CXX) "
EXE = .exe
e l s e i f e q ( $( CONFIG ) , m s y s 2 - 6 4 )
CXX = x86_64-w64-mingw32-g++
LD = x86_64-w64-mingw32-g++
2018-11-30 22:14:43 -06:00
CXXFLAGS += -std= c++11 -Os -D_POSIX_SOURCE -DYOSYS_WIN32_UNIX_DIR
CXXFLAGS := $( filter-out -fPIC,$( CXXFLAGS) )
LDFLAGS := $( filter-out -rdynamic,$( LDFLAGS) ) -s
LDLIBS := $( filter-out -lrt,$( LDLIBS) )
2019-05-23 17:03:08 -05:00
ABCMKARGS += ARCHFLAGS = "-DABC_USE_STDINT_H -DWIN32_NO_DLL -DHAVE_STRUCT_TIMESPEC -fpermissive -w"
ABCMKARGS += LIBS = "-lpthread -s" ABC_USE_NO_READLINE = 0 CC = "x86_64-w64-mingw32-gcc" CXX = " $( CXX) "
2018-11-30 22:14:43 -06:00
EXE = .exe
e l s e i f n e q ( $( CONFIG ) , n o n e )
2019-05-23 17:03:08 -05:00
$(error Invalid CONFIG setting '$(CONFIG)'. Valid values : clang , gcc , gcc -4.8, emcc , mxe , msys 2, msys 2-64)
2018-11-30 22:14:43 -06:00
e n d i f
i f e q ( $( ENABLE_LIBYOSYS ) , 1 )
TARGETS += libyosys.so
e n d i f
2019-05-23 18:55:49 -05:00
i f e q ( $( ENABLE_PYOSYS ) , 1 )
#Detect name of boost_python library. Some distros usbe boost_python-py<version>, other boost_python<version>, some only use the major version number, some a concatenation of major and minor version numbers
BOOST_PYTHON_LIB ?= $( shell \
if echo "int main(int argc, char ** argv) {return 0;}" | $( CXX) -xc -o /dev/null ` $( PYTHON_EXECUTABLE) -config --libs` -lboost_python-py$( subst .,,$( PYTHON_VERSION) ) - > /dev/null 2>& 1; then echo " -lboost_python-py $( subst .,,$( PYTHON_VERSION) ) " ; else \
if echo "int main(int argc, char ** argv) {return 0;}" | $( CXX) -xc -o /dev/null ` $( PYTHON_EXECUTABLE) -config --libs` -lboost_python-py$( subst .,,$( PYTHON_MAJOR_VERSION) ) - > /dev/null 2>& 1; then echo " -lboost_python-py $( subst .,,$( PYTHON_MAJOR_VERSION) ) " ; else \
if echo "int main(int argc, char ** argv) {return 0;}" | $( CXX) -xc -o /dev/null ` $( PYTHON_EXECUTABLE) -config --libs` -lboost_python$( subst .,,$( PYTHON_VERSION) ) - > /dev/null 2>& 1; then echo " -lboost_python $( subst .,,$( PYTHON_VERSION) ) " ; else \
if echo "int main(int argc, char ** argv) {return 0;}" | $( CXX) -xc -o /dev/null ` $( PYTHON_EXECUTABLE) -config --libs` -lboost_python$( subst .,,$( PYTHON_MAJOR_VERSION) ) - > /dev/null 2>& 1; then echo " -lboost_python $( subst .,,$( PYTHON_MAJOR_VERSION) ) " ; else \
echo "" ; fi ; fi ; fi ; fi ; )
i f e q ( $( BOOST_PYTHON_LIB ) , )
$( error BOOST_PYTHON_LIB could not be detected . Please define manualy )
e n d i f
i f e q ( $( PYTHON_MAJOR_VERSION ) , 3 )
LDLIBS += ` $( PYTHON_EXECUTABLE) -config --libs` $( BOOST_PYTHON_LIB) -lboost_system -lboost_filesystem
CXXFLAGS += ` $( PYTHON_EXECUTABLE) -config --includes` -D WITH_PYTHON
e l s e
LDLIBS += ` $( PYTHON_EXECUTABLE) -config --libs` $( BOOST_PYTHON_LIB) -lboost_system -lboost_filesystem
CXXFLAGS += ` $( PYTHON_EXECUTABLE) -config --includes` -D WITH_PYTHON
e n d i f
PY_WRAPPER_FILE = kernel/python_wrappers
OBJS += $( PY_WRAPPER_FILE) .o
PY_GEN_SCRIPT = py_wrap_generator
PY_WRAP_INCLUDES := $( shell python$( PYTHON_VERSION) -c " from misc import $( PY_GEN_SCRIPT) ; $( PY_GEN_SCRIPT) .print_includes() " )
e n d i f
2018-11-30 22:14:43 -06:00
i f e q ( $( ENABLE_READLINE ) , 1 )
CXXFLAGS += -DYOSYS_ENABLE_READLINE
2019-05-23 17:03:08 -05:00
i f e q ( $( OS ) , F r e e B S D )
CXXFLAGS += -I/usr/local/include
e n d i f
2018-11-30 22:14:43 -06:00
LDLIBS += -lreadline
2019-05-23 17:03:08 -05:00
i f e q ( $( LINK_CURSES ) , 1 )
LDLIBS += -lcurses
ABCMKARGS += "ABC_READLINE_LIBRARIES=-lcurses -lreadline"
e n d i f
i f e q ( $( LINK_TERMCAP ) , 1 )
LDLIBS += -ltermcap
ABCMKARGS += "ABC_READLINE_LIBRARIES=-lreadline -ltermcap"
e n d i f
2018-11-30 22:14:43 -06:00
i f e q ( $( CONFIG ) , m x e )
2019-05-23 17:03:08 -05:00
LDLIBS += -ltermcap
e n d i f
e l s e
i f e q ( $( ENABLE_EDITLINE ) , 1 )
CXXFLAGS += -DYOSYS_ENABLE_EDITLINE
LDLIBS += -ledit -ltinfo -lbsd
e l s e
ABCMKARGS += "ABC_USE_NO_READLINE=1"
e n d i f
2018-11-30 22:14:43 -06:00
e n d i f
2019-05-23 17:03:08 -05:00
i f e q ( $( DISABLE_ABC_THREADS ) , 1 )
ABCMKARGS += "ABC_USE_NO_PTHREADS=1"
2018-11-30 22:14:43 -06:00
e n d i f
i f e q ( $( ENABLE_PLUGINS ) , 1 )
2019-05-23 17:03:08 -05:00
CXXFLAGS += $( shell PKG_CONFIG_PATH = $( PKG_CONFIG_PATH) $( PKG_CONFIG) --silence-errors --cflags libffi) -DYOSYS_ENABLE_PLUGINS
LDLIBS += $( shell PKG_CONFIG_PATH = $( PKG_CONFIG_PATH) $( PKG_CONFIG) --silence-errors --libs libffi || echo -lffi)
i f n e q ( $( OS ) , F r e e B S D )
LDLIBS += -ldl
e n d i f
2018-11-30 22:14:43 -06:00
e n d i f
2019-05-23 18:55:49 -05:00
i f e q ( $( ENABLE_GLOB ) , 1 )
CXXFLAGS += -DYOSYS_ENABLE_GLOB
e n d i f
2018-11-30 22:14:43 -06:00
i f e q ( $( ENABLE_TCL ) , 1 )
TCL_VERSION ?= tcl$( shell bash -c "tclsh <(echo 'puts [info tclversion]')" )
2019-05-23 17:03:08 -05:00
i f e q ( $( OS ) , F r e e B S D )
TCL_INCLUDE ?= /usr/local/include/$( TCL_VERSION)
e l s e
2018-11-30 22:14:43 -06:00
TCL_INCLUDE ?= /usr/include/$( TCL_VERSION)
2019-05-23 17:03:08 -05:00
e n d i f
i f e q ( $( CONFIG ) , m x e )
CXXFLAGS += -DYOSYS_ENABLE_TCL
LDLIBS += -ltcl86 -lwsock32 -lws2_32 -lnetapi32 -lz
e l s e
CXXFLAGS += $( shell PKG_CONFIG_PATH = $( PKG_CONFIG_PATH) $( PKG_CONFIG) --silence-errors --cflags tcl || echo -I$( TCL_INCLUDE) ) -DYOSYS_ENABLE_TCL
i f e q ( $( OS ) , F r e e B S D )
# FreeBSD uses tcl8.6, but lib is named "libtcl86"
LDLIBS += $( shell PKG_CONFIG_PATH = $( PKG_CONFIG_PATH) $( PKG_CONFIG) --silence-errors --libs tcl || echo -l$( TCL_VERSION) | tr -d '.' )
e l s e
LDLIBS += $( shell PKG_CONFIG_PATH = $( PKG_CONFIG_PATH) $( PKG_CONFIG) --silence-errors --libs tcl || echo -l$( TCL_VERSION) )
e n d i f
e n d i f
e n d i f
i f e q ( $( ENABLE_GCOV ) , 1 )
CXXFLAGS += --coverage
LDFLAGS += --coverage
2018-11-30 22:14:43 -06:00
e n d i f
i f e q ( $( ENABLE_GPROF ) , 1 )
CXXFLAGS += -pg
LDFLAGS += -pg
e n d i f
i f e q ( $( ENABLE_NDEBUG ) , 1 )
2019-05-23 17:03:08 -05: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 )
CXXFLAGS := -O0 -DDEBUG $( filter-out -Os,$( CXXFLAGS) )
e l s e
CXXFLAGS := -Og -DDEBUG $( filter-out -Os,$( CXXFLAGS) )
e n d i f
2018-11-30 22:14:43 -06:00
e n d i f
i f e q ( $( ENABLE_ABC ) , 1 )
CXXFLAGS += -DYOSYS_ENABLE_ABC
2019-05-23 17:03:08 -05:00
i f e q ( $( LINK_ABC ) , 1 )
CXXFLAGS += -DYOSYS_LINK_ABC
i f e q ( $( DISABLE_ABC_THREADS ) , 0 )
LDLIBS += -lpthread
e n d i f
e l s e
2018-11-30 22:14:43 -06:00
i f e q ( $( ABCEXTERNAL ) , )
TARGETS += yosys-abc$( EXE)
e n d i f
e n d i f
2019-05-23 17:03:08 -05:00
e n d i f
2018-11-30 22:14:43 -06:00
i f e q ( $( ENABLE_VERIFIC ) , 1 )
2019-05-23 17:03:08 -05:00
VERIFIC_DIR ?= /usr/local/src/verific_lib
VERIFIC_COMPONENTS ?= verilog vhdl database util containers hier_tree
2018-11-30 22:14:43 -06:00
CXXFLAGS += $( patsubst %,-I$( VERIFIC_DIR) /%,$( VERIFIC_COMPONENTS) ) -DYOSYS_ENABLE_VERIFIC
2019-05-23 17:03:08 -05:00
i f e q ( $( OS ) , D a r w i n )
LDLIBS += $( patsubst %,$( VERIFIC_DIR) /%/*-mac.a,$( VERIFIC_COMPONENTS) ) -lz
e l s e
LDLIBS += $( patsubst %,$( VERIFIC_DIR) /%/*-linux.a,$( VERIFIC_COMPONENTS) ) -lz
e n d i f
e n d i f
i f e q ( $( ENABLE_PROTOBUF ) , 1 )
LDLIBS += $( shell pkg-config --cflags --libs protobuf)
2018-11-30 22:14:43 -06:00
e n d i f
i f e q ( $( ENABLE_COVER ) , 1 )
CXXFLAGS += -DYOSYS_ENABLE_COVER
e n d i f
d e f i n e a d d _ 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 " $( YOSYS_SRC) " /$( 2) $( subst //,/,$( 1) /$( notdir $( 2) ) )
e n d e f
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
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
i f e q ( $( PRETTY ) , 1 )
P_STATUS = 0
P_OFFSET = 0
2019-05-23 17:03:08 -05:00
P_UPDATE = $( eval P_STATUS = $( shell echo $( OBJS) 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) yosys$( EXE) ) ; printf \"%3d\", $( P_OFFSET) +90* $( P_STATUS) /N; exit; } " ) %]
2018-11-30 22:14:43 -06:00
P = @echo " $( if $( findstring $@ ,$( TARGETS) $( EXTRA_TARGETS) ) ,$( eval P_OFFSET = 10) ) $( call P_UPDATE) $( call P_SHOW) Building $@ " ;
Q = @
S = -s
e l s e
P_SHOW = ->
P =
Q =
S =
e n d i f
$( eval $ ( call add_include_file ,kernel /yosys .h ) )
$( eval $ ( call add_include_file ,kernel /hashlib .h ) )
$( eval $ ( call add_include_file ,kernel /log .h ) )
$( eval $ ( call add_include_file ,kernel /rtlil .h ) )
$( eval $ ( call add_include_file ,kernel /register .h ) )
$( eval $ ( call add_include_file ,kernel /celltypes .h ) )
$( eval $ ( call add_include_file ,kernel /celledges .h ) )
$( eval $ ( call add_include_file ,kernel /consteval .h ) )
$( eval $ ( call add_include_file ,kernel /sigtools .h ) )
$( eval $ ( call add_include_file ,kernel /modtools .h ) )
$( eval $ ( call add_include_file ,kernel /macc .h ) )
$( eval $ ( call add_include_file ,kernel /utils .h ) )
$( eval $ ( call add_include_file ,kernel /satgen .h ) )
$( eval $ ( call add_include_file ,libs /ezsat /ezsat .h ) )
$( eval $ ( call add_include_file ,libs /ezsat /ezminisat .h ) )
$( eval $ ( call add_include_file ,libs /sha 1/sha 1.h ) )
$( eval $ ( call add_include_file ,passes /fsm /fsmdata .h ) )
$( eval $ ( call add_include_file ,frontends /ast /ast .h ) )
$( eval $ ( call add_include_file ,backends /ilang /ilang_backend .h ) )
OBJS += kernel/driver.o kernel/register.o kernel/rtlil.o kernel/log.o kernel/calc.o kernel/yosys.o
OBJS += kernel/cellaigs.o kernel/celledges.o
kernel/log.o : CXXFLAGS += -DYOSYS_SRC ='"$( YOSYS_SRC ) "'
kernel/yosys.o : CXXFLAGS += -DYOSYS_DATDIR ='"$( DATDIR ) "'
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
i f n e q ( $( SMALL ) , 1 )
OBJS += libs/subcircuit/subcircuit.o
OBJS += libs/ezsat/ezsat.o
OBJS += libs/ezsat/ezminisat.o
OBJS += libs/minisat/Options.o
OBJS += libs/minisat/SimpSolver.o
OBJS += libs/minisat/Solver.o
OBJS += libs/minisat/System.o
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
e l s e
i n c l u d e 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
i n c l u d e f r o n t e n d s / i l a n g / M a k e f i l e . i n c
i n c l u d e 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 f r o n t e n d s / b l i f / M a k e f i l e . i n c
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
OBJS += passes/cmds/design.o
OBJS += passes/cmds/plugin.o
i n c l u d e 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 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 p a s s e s / t e c h m a p / M a k e f i l e . i n c
i n c l u d e 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
i n c l u d e b a c k e n d s / i l a n g / M a k e f i l e . i n c
i n c l u d e 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
e n d i f
2019-05-23 17:03:08 -05:00
i f e q ( $( LINK_ABC ) , 1 )
OBJS += yosys-libabc.a
e n d i f
2018-11-30 22:14:43 -06:00
top-all : $( TARGETS ) $( EXTRA_TARGETS )
@echo ""
@echo " Build successful."
@echo ""
i f e q ( $( CONFIG ) , e m c c )
yosys.js : $( filter -out yosysjs -$ ( YOSYS_VER ) .zip ,$ ( EXTRA_TARGETS ) )
e n d i f
yosys$(EXE) : $( OBJS )
$( P) $( LD) -o yosys$( EXE) $( LDFLAGS) $( OBJS) $( LDLIBS)
libyosys.so : $( filter -out kernel /driver .o ,$ ( OBJS ) )
$( P) $( LD) -o libyosys.so -shared -Wl,-soname,libyosys.so $( LDFLAGS) $^ $( LDLIBS)
%.o : %.cc
$( Q) mkdir -p $( dir $@ )
$( P) $( CXX) -o $@ -c $( CPPFLAGS) $( CXXFLAGS) $<
2019-05-23 18:55:49 -05:00
%.pyh : %.h
$( Q) mkdir -p $( dir $@ )
$( P) cat $< | grep -E -v "#[ ]*(include|error)" | $( LD) -x c++ -o $@ -E -P -
$(PY_WRAPPER_FILE).cc : misc /$( PY_GEN_SCRIPT ) .py $( PY_WRAP_INCLUDES )
$( Q) mkdir -p $( dir $@ )
$( P) python$( PYTHON_VERSION) -c " from misc import $( PY_GEN_SCRIPT) ; $( PY_GEN_SCRIPT) .gen_wrappers(\" $( PY_WRAPPER_FILE) .cc\") "
2018-11-30 22:14:43 -06:00
%.o : %.cpp
$( Q) mkdir -p $( dir $@ )
$( P) $( CXX) -o $@ -c $( CPPFLAGS) $( CXXFLAGS) $<
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) ) )
kernel/version_$(GIT_REV).cc : $( YOSYS_SRC ) /Makefile
$( P) rm -f kernel/version_*.o kernel/version_*.d kernel/version_*.cc
$( 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
2019-05-23 17:03:08 -05:00
i f e q ( $( ENABLE_VERIFIC ) , 1 )
CXXFLAGS_NOVERIFIC = $( foreach v,$( CXXFLAGS) ,$( if $( findstring $( VERIFIC_DIR) ,$( v) ) ,,$( v) ) )
LDLIBS_NOVERIFIC = $( foreach v,$( LDLIBS) ,$( if $( findstring $( VERIFIC_DIR) ,$( v) ) ,,$( v) ) )
e l s e
CXXFLAGS_NOVERIFIC = $( CXXFLAGS)
LDLIBS_NOVERIFIC = $( LDLIBS)
e n d i f
2018-11-30 22:14:43 -06:00
yosys-config : misc /yosys -config .in
2019-05-23 17:03:08 -05:00
$( P) $( SED) -e 's#@CXXFLAGS@#$(subst -I. -I"$(YOSYS_SRC)",-I"$(DATDIR)/include",$(strip $(CXXFLAGS_NOVERIFIC)))#;' \
-e 's#@CXX@#$(strip $(CXX))#;' -e 's#@LDFLAGS@#$(strip $(LDFLAGS) $(PLUGIN_LDFLAGS))#;' -e 's#@LDLIBS@#$(strip $(LDLIBS_NOVERIFIC))#;' \
-e 's#@BINDIR@#$(strip $(BINDIR))#;' -e 's#@DATDIR@#$(strip $(DATDIR))#;' < $< > yosys-config
2018-11-30 22:14:43 -06:00
$( Q) chmod +x yosys-config
abc/abc-$(ABCREV)$(EXE) abc/libabc-$(ABCREV).a :
$( P)
i f n e q ( $( ABCREV ) , d e f a u l t )
2019-05-23 17:03:08 -05:00
$( Q) if test -d abc/.hg; then \
echo 'REEBE: NOP qverpgbel vf n ut jbexvat pbcl! Erzbir nop/ naq er-eha "znxr".' | tr 'A-Za-z' 'N-ZA-Mn-za-m' ; false; \
fi
$( Q) if ( cd abc 2> /dev/null && ! git diff-index --quiet HEAD; ) ; then \
2018-11-30 22:14:43 -06:00
echo 'REEBE: NOP pbagnvaf ybpny zbqvsvpngvbaf! Frg NOPERI=qrsnhyg va Lbflf Znxrsvyr!' | tr 'A-Za-z' 'N-ZA-Mn-za-m' ; false; \
fi
2019-05-23 17:03:08 -05:00
$( Q) if test "`cd abc 2> /dev/null && git rev-parse --short HEAD`" != " $( ABCREV) " ; then \
2018-11-30 22:14:43 -06:00
test $( ABCPULL) -ne 0 || { echo 'REEBE: NOP abg hc gb qngr naq NOPCHYY frg gb 0 va Znxrsvyr!' | tr 'A-Za-z' 'N-ZA-Mn-za-m' ; exit 1; } ; \
echo " Pulling ABC from $( ABCURL) : " ; set -x; \
test -d abc || git clone $( ABCURL) abc; \
cd abc && $( MAKE) DEP = clean && git fetch origin master && git checkout $( ABCREV) ; \
fi
e n d i f
$( Q) rm -f abc/abc-[ 0-9a-f] *
$( Q) cd abc && $( MAKE) $( S) $( ABCMKARGS) $( if $( filter %.a,$@ ) ,PROG= " abc- $( ABCREV) " ,PROG= " abc- $( ABCREV) $( EXE) " ) MSG_PREFIX = " $( eval P_OFFSET = 5) $( call P_SHOW) $( eval P_OFFSET = 10) ABC: " $( if $( filter %.a,$@ ) ,libabc-$( ABCREV) .a)
i f e q ( $( ABCREV ) , d e f a u l t )
.PHONY : abc /abc -$( ABCREV ) $( EXE )
.PHONY : abc /libabc -$( ABCREV ) .a
e n d i f
yosys-abc$(EXE) : abc /abc -$( ABCREV ) $( EXE )
$( P) cp abc/abc-$( ABCREV) $( EXE) yosys-abc$( EXE)
2019-05-23 17:03:08 -05:00
yosys-libabc.a : abc /libabc -$( ABCREV ) .a
$( P) cp abc/libabc-$( ABCREV) .a yosys-libabc.a
2018-11-30 22:14:43 -06:00
i f n e q ( $( SEED ) , )
SEEDOPT = " -S $( SEED) "
e l s e
SEEDOPT = ""
e n d i f
test : $( TARGETS ) $( EXTRA_TARGETS )
+cd tests/simple && bash run-test.sh $( SEEDOPT)
+cd tests/hana && bash run-test.sh $( SEEDOPT)
+cd tests/asicworld && bash run-test.sh $( SEEDOPT)
2019-05-23 18:55:49 -05:00
# +cd tests/realmath && bash run-test.sh $(SEEDOPT)
2018-11-30 22:14:43 -06:00
+cd tests/share && bash run-test.sh $( SEEDOPT)
+cd tests/fsm && bash run-test.sh $( SEEDOPT)
+cd tests/techmap && bash run-test.sh
+cd tests/memories && bash run-test.sh $( SEEDOPT)
+cd tests/bram && bash run-test.sh $( SEEDOPT)
+cd tests/various && bash run-test.sh
+cd tests/sat && bash run-test.sh
2019-05-23 17:03:08 -05:00
+cd tests/svinterfaces && bash run-test.sh $( SEEDOPT)
+cd tests/opt && bash run-test.sh
2019-05-23 18:55:49 -05:00
+cd tests/aiger && bash run-test.sh
2018-11-30 22:14:43 -06:00
@echo ""
@echo " Passed \"make test\"."
@echo ""
VALGRIND ?= valgrind --error-exitcode= 1 --leak-check= full --show-reachable= yes --errors-for-leak-kinds= all
vgtest : $( TARGETS ) $( EXTRA_TARGETS )
$( VALGRIND) ./yosys -p 'setattr -mod -unset top; synth' $$ ( ls tests/simple/*.v | grep -v repwhile.v )
@echo ""
@echo " Passed \"make vgtest\"."
@echo ""
vloghtb : $( TARGETS ) $( EXTRA_TARGETS )
+cd tests/vloghtb && bash run-test.sh
@echo ""
@echo " Passed \"make vloghtb\"."
@echo ""
2019-05-23 17:03:08 -05:00
ystests : $( TARGETS ) $( EXTRA_TARGETS )
rm -rf tests/ystests
git clone https://github.com/YosysHQ/yosys-tests.git tests/ystests
+$( MAKE) PATH = " $$ PWD: $$ PATH " -C tests/ystests
@echo ""
@echo " Finished \"make ystests\"."
@echo ""
# Unit test
unit-test : libyosys .so
@$( MAKE) -C $( UNITESTPATH) CXX = " $( CXX) " CPPFLAGS = " $( CPPFLAGS) " \
CXXFLAGS = " $( CXXFLAGS) " LDLIBS = " $( LDLIBS) " ROOTPATH = " $( CURDIR) "
clean-unit-test :
@$( MAKE) -C $( UNITESTPATH) clean
2018-11-30 22:14:43 -06:00
install : $( TARGETS ) $( EXTRA_TARGETS )
$( INSTALL_SUDO) mkdir -p $( DESTDIR) $( BINDIR)
2019-05-23 17:03:08 -05:00
$( INSTALL_SUDO) cp $( TARGETS) $( DESTDIR) $( BINDIR)
i f n e q ( $( filter yosys ,$ ( TARGETS ) ) , )
$( INSTALL_SUDO) $( STRIP) -S $( DESTDIR) $( BINDIR) /yosys
e n d i f
i f n e q ( $( filter yosys -abc ,$ ( TARGETS ) ) , )
$( INSTALL_SUDO) $( STRIP) $( DESTDIR) $( BINDIR) /yosys-abc
e n d i f
i f n e q ( $( filter yosys -filterlib ,$ ( TARGETS ) ) , )
$( INSTALL_SUDO) $( STRIP) $( DESTDIR) $( BINDIR) /yosys-filterlib
e n d i f
2018-11-30 22:14:43 -06:00
$( INSTALL_SUDO) mkdir -p $( DESTDIR) $( DATDIR)
$( INSTALL_SUDO) cp -r share/. $( DESTDIR) $( DATDIR) /.
i f e q ( $( ENABLE_LIBYOSYS ) , 1 )
2019-05-23 18:55:49 -05:00
$( INSTALL_SUDO) mkdir -p $( DESTDIR) $( LIBDIR)
$( INSTALL_SUDO) cp libyosys.so $( DESTDIR) $( LIBDIR) /
2019-05-23 17:03:08 -05:00
$( INSTALL_SUDO) $( STRIP) -S $( DESTDIR) $( LIBDIR) /libyosys.so
2019-05-23 18:55:49 -05:00
i f e q ( $( ENABLE_PYOSYS ) , 1 )
$( INSTALL_SUDO) mkdir -p $( PYTHON_DESTDIR) /pyosys
$( INSTALL_SUDO) cp libyosys.so $( PYTHON_DESTDIR) /pyosys/
$( INSTALL_SUDO) cp misc/__init__.py $( PYTHON_DESTDIR) /pyosys/
e n d i f
2018-11-30 22:14:43 -06:00
e n d i f
uninstall :
2019-05-23 17:03:08 -05:00
$( INSTALL_SUDO) rm -vf $( addprefix $( DESTDIR) $( BINDIR) /,$( notdir $( TARGETS) ) )
2018-11-30 22:14:43 -06:00
$( INSTALL_SUDO) rm -rvf $( DESTDIR) $( DATDIR)
i f e q ( $( ENABLE_LIBYOSYS ) , 1 )
$( INSTALL_SUDO) rm -vf $( DESTDIR) $( LIBDIR) /libyosys.so
2019-05-23 18:55:49 -05:00
i f e q ( $( ENABLE_PYOSYS ) , 1 )
$( INSTALL_SUDO) rm -vf $( PYTHON_DESTDIR) /pyosys/libyosys.so
$( INSTALL_SUDO) rm -vf $( PYTHON_DESTDIR) /pyosys/__init__.py
$( INSTALL_SUDO) rmdir $( PYTHON_DESTDIR) /pyosys
e n d i f
2018-11-30 22:14:43 -06:00
e n d i f
update-manual : $( TARGETS ) $( EXTRA_TARGETS )
cd manual && ../yosys -p 'help -write-tex-command-reference-manual'
manual : $( TARGETS ) $( EXTRA_TARGETS )
cd manual && bash appnotes.sh
cd manual && bash presentation.sh
cd manual && bash manual.sh
clean :
rm -rf share
2019-05-23 18:55:49 -05:00
rm -rf kernel/*.pyh
2018-11-30 22:14:43 -06:00
if test -d manual; then cd manual && sh clean.sh; fi
2019-05-23 18:55:49 -05:00
rm -f $( OBJS) $( GENFILES) $( TARGETS) $( EXTRA_TARGETS) $( EXTRA_OBJS) $( PY_WRAP_INCLUDES) $( PY_WRAPPER_FILE) .cc
2019-05-23 17:03:08 -05:00
rm -f kernel/version_*.o kernel/version_*.cc abc/abc-[ 0-9a-f] * abc/libabc-[ 0-9a-f] *.a
2018-11-30 22:14:43 -06:00
rm -f libs/*/*.d frontends/*/*.d passes/*/*.d backends/*/*.d kernel/*.d techlibs/*/*.d
2019-05-23 17:03:08 -05: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
rm -rf tests/bram/temp tests/fsm/temp tests/realmath/temp tests/share/temp tests/smv/temp
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_*
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
rm -f tests/tools/cmp_tbdata
2018-11-30 22:14:43 -06:00
clean-abc :
$( MAKE) -C abc DEP = clean
2019-05-23 17:03:08 -05:00
rm -f yosys-abc$( EXE) yosys-libabc.a abc/abc-[ 0-9a-f] * abc/libabc-[ 0-9a-f] *.a
2018-11-30 22:14:43 -06:00
mrproper : clean
git clean -xdf
2019-05-23 17:03:08 -05:00
coverage :
./yosys -qp 'help; help -all'
rm -rf coverage.info coverage_html
lcov --capture -d . --no-external -o coverage.info
genhtml coverage.info --output-directory coverage_html
2018-11-30 22:14:43 -06: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 \
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
touch qtcreator.config qtcreator.creator
vcxsrc : $( GENFILES ) $( EXTRA_TARGETS )
rm -rf yosys-win32-vcxsrc-$( YOSYS_VER) { ,.zip}
set -e; for f in ` ls $( filter %.cc %.cpp,$( GENFILES) ) $( addsuffix .cc,$( basename $( OBJS) ) ) $( addsuffix .cpp,$( basename $( OBJS) ) ) 2> /dev/null` ; do \
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
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
i f e q ( $( CONFIG ) , m x e )
mxebin : $( TARGETS ) $( EXTRA_TARGETS )
rm -rf yosys-win32-mxebin-$( YOSYS_VER) { ,.zip}
mkdir -p yosys-win32-mxebin-$( YOSYS_VER)
cp -r yosys.exe share/ yosys-win32-mxebin-$( YOSYS_VER) /
i f e q ( $( ENABLE_ABC ) , 1 )
cp -r yosys-abc.exe abc/lib/x86/pthreadVC2.dll yosys-win32-mxebin-$( YOSYS_VER) /
e n d i f
echo -en 'This is Yosys $(YOSYS_VER) for Win32.\r\n' > yosys-win32-mxebin-$( YOSYS_VER) /readme.txt
echo -en 'Documentation at http://www.clifford.at/yosys/.\r\n' >> yosys-win32-mxebin-$( YOSYS_VER) /readme.txt
zip -r yosys-win32-mxebin-$( YOSYS_VER) .zip yosys-win32-mxebin-$( YOSYS_VER) /
e n d i f
config-clean : clean
rm -f Makefile.conf
config-clang : clean
echo 'CONFIG := clang' > Makefile.conf
config-gcc : clean
echo 'CONFIG := gcc' > Makefile.conf
2019-05-23 17:03:08 -05: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
2018-11-30 22:14:43 -06:00
config-gcc-4.8 : clean
echo 'CONFIG := gcc-4.8' > Makefile.conf
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
config-mxe : clean
echo 'CONFIG := mxe' > Makefile.conf
echo 'ENABLE_PLUGINS := 0' >> Makefile.conf
config-msys2 : clean
echo 'CONFIG := msys2' > Makefile.conf
2019-05-23 17:03:08 -05:00
config-msys2-64 : clean
echo 'CONFIG := msys2-64' > Makefile.conf
config-cygwin : clean
echo 'CONFIG := cygwin' > Makefile.conf
config-gcov : clean
echo 'CONFIG := gcc' > Makefile.conf
echo 'ENABLE_GCOV := 1' >> Makefile.conf
echo 'ENABLE_DEBUG := 1' >> Makefile.conf
2018-11-30 22:14:43 -06:00
config-gprof : clean
echo 'CONFIG := gcc' > Makefile.conf
echo 'ENABLE_GPROF := 1' >> Makefile.conf
config-sudo :
echo "INSTALL_SUDO := sudo" >> Makefile.conf
echo-yosys-ver :
@echo " $( YOSYS_VER) "
echo-git-rev :
@echo " $( GIT_REV) "
- i n c l u d e l i b s / * / * . d
- 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
- i n c l u d e t e c h l i b s / * / * . d
2019-05-23 17:03:08 -05:00
.PHONY : all top -all abc test install install -abc manual clean mrproper qtcreator coverage vcxsrc mxebin
.PHONY : config -clean config -clang config -gcc config -gcc -static config -gcc -4.8 config -gprof config -sudo
2018-11-30 22:14:43 -06:00