2014-07-23 14:35:01 -05:00
|
|
|
|
2014-07-25 05:16:03 -05:00
|
|
|
Notes on building yosys with verific support on amd64 when you
|
|
|
|
only have the i386 eval version of Verific:
|
2014-07-23 14:35:01 -05:00
|
|
|
|
|
|
|
|
|
|
|
1.) Use a Makefile.conf like the following one:
|
|
|
|
|
|
|
|
--snip--
|
2017-02-04 06:36:00 -06:00
|
|
|
CONFIG := gcc
|
2014-07-23 14:35:01 -05:00
|
|
|
ENABLE_TCL := 0
|
2014-11-08 04:38:44 -06:00
|
|
|
ENABLE_PLUGINS := 0
|
2014-07-23 14:35:01 -05:00
|
|
|
ENABLE_VERIFIC := 1
|
|
|
|
CXXFLAGS += -m32
|
|
|
|
LDFLAGS += -m32
|
2014-07-25 05:16:03 -05:00
|
|
|
VERIFIC_DIR = /usr/local/src/verific_lib_eval
|
2014-07-23 14:35:01 -05:00
|
|
|
--snap--
|
|
|
|
|
|
|
|
|
2014-09-06 01:47:06 -05:00
|
|
|
2.) Install the necessary multilib packages
|
2014-07-23 14:35:01 -05:00
|
|
|
|
|
|
|
Hint: On debian/ubuntu the multilib packages have names such as
|
2015-05-17 01:19:52 -05:00
|
|
|
libreadline-dev:i386 or lib32readline6-dev, depending on the
|
2014-07-25 05:16:03 -05:00
|
|
|
exact version of debian/ubuntu you are working with.
|
2014-07-23 14:35:01 -05:00
|
|
|
|
|
|
|
|
2014-07-25 05:16:03 -05:00
|
|
|
3.) Build and test
|
2014-07-23 14:35:01 -05:00
|
|
|
|
2014-07-25 05:16:03 -05:00
|
|
|
make -j8
|
|
|
|
./yosys frontends/verific/test_navre.ys
|
2014-07-23 14:35:01 -05:00
|
|
|
|