1
0
Fork 0

Add firrtl build dependencies

Without this when I update firrtl the new version doesn't get built, so
my build is constantly failing.
This commit is contained in:
Palmer Dabbelt 2016-08-05 14:45:00 -07:00
parent 9fa5b228b2
commit dab96096b4
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ SHELL := /bin/bash
FIRRTL_JAR ?= $(base_dir)/firrtl/utils/bin/firrtl.jar
FIRRTL ?= java -Xmx2G -Xss8M -XX:MaxPermSize=256M -cp $(FIRRTL_JAR) firrtl.Driver
$(FIRRTL_JAR):
$(FIRRTL_JAR): $(shell find $(base_dir)/firrtl/src/main/scala -iname "*.scala")
$(MAKE) -C $(base_dir)/firrtl SBT="$(SBT)" root_dir=$(base_dir)/firrtl build-scala
ifeq ($(CHISEL_VERSION),2)