* Use published rocketchip * Simulator works! * Gitignore was masking csrc * Fix broken submodules * Update gitignore * Fix things up * Some more cleanup * Clean up so that using maven works * Incorporate feedback * Oops * Add workaround for some of csrc * Forgot dtm and jtag * Make name better and add comment * Extraneous comment * Fix includes. After running a clean build, I realized old build state was masking this problem. verisim/csrc needs to be in the include path until we find a more permanent solution to our problem. * Add target to generate verilator-specific files. * Ignore DS_Store * Generate bootrom from testchipip * Oops * Add extraneous rocket-dsptools reference
35 lines
1.3 KiB
Plaintext
35 lines
1.3 KiB
Plaintext
# Build and install our own Verilator, to work around versionining issues.
|
|
VERILATOR_VERSION=3.920
|
|
VERILATOR_SRCDIR=verilator/src/verilator-$(VERILATOR_VERSION)
|
|
INSTALLED_VERILATOR=$(abspath verilator/install/bin/verilator)
|
|
$(INSTALLED_VERILATOR): $(VERILATOR_SRCDIR)/bin/verilator
|
|
$(MAKE) -C $(VERILATOR_SRCDIR) installbin installdata
|
|
touch $@
|
|
|
|
$(VERILATOR_SRCDIR)/bin/verilator: $(VERILATOR_SRCDIR)/Makefile
|
|
$(MAKE) -C $(VERILATOR_SRCDIR) verilator_bin
|
|
touch $@
|
|
|
|
$(VERILATOR_SRCDIR)/Makefile: $(VERILATOR_SRCDIR)/configure
|
|
mkdir -p $(dir $@)
|
|
cd $(dir $@) && ./configure --prefix=$(abspath verilator/install)
|
|
|
|
$(VERILATOR_SRCDIR)/configure: verilator/verilator-$(VERILATOR_VERSION).tar.gz
|
|
rm -rf $(dir $@)
|
|
mkdir -p $(dir $@)
|
|
cat $^ | tar -xz --strip-components=1 -C $(dir $@)
|
|
touch $@
|
|
|
|
verilator/verilator-$(VERILATOR_VERSION).tar.gz:
|
|
mkdir -p $(dir $@)
|
|
wget http://www.veripool.org/ftp/verilator-$(VERILATOR_VERSION).tgz -O $@
|
|
|
|
# Run Verilator to produce a fast binary to emulate this circuit.
|
|
VERILATOR := $(INSTALLED_VERILATOR) --cc --exe
|
|
VERILATOR_FLAGS := --top-module $(MODEL) \
|
|
+define+PRINTF_COND=\$$c\(\"verbose\",\"\&\&\"\,\"done_reset\"\) \
|
|
+define+STOP_COND=\$$c\(\"done_reset\"\) --assert \
|
|
--output-split 20000 \
|
|
-Wno-STMTDLY --x-assign unique \
|
|
-O3 -CFLAGS "$(CXXFLAGS) -DTEST_HARNESS=V$(MODEL) -DVERILATOR"
|