Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Chisel 6.0.0 #164

Merged
merged 1 commit into from
Jan 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,6 @@ CORE ?= inorder # inorder ooo embedded
MILL_ARGS = -td $(RTL_DIR) BOARD=$(BOARD) CORE=$(CORE)
FPGA_ARGS =

# If firtool is not specified and not found in PATH, download and cache it.
ifeq ($(FIRTOOL),)
ifeq ($(shell which firtool 2>/dev/null),)
FIRTOOL_VERSION = 1.61.0
FIRTOOL_DIR = $(HOME)/.cache/firtool
FIRTOOL_BIN = $(FIRTOOL_DIR)/firtool-$(FIRTOOL_VERSION)/bin/firtool
ifeq ($(wildcard $(HOME)/.cache/firtool/firtool-$(FIRTOOL_VERSION)/bin),)
$(info [INFO] Firtool not found.)
FIRTOOL_URL = https://github.com/llvm/circt/releases/download/firtool-$(FIRTOOL_VERSION)/firrtl-bin-linux-x64.tar.gz
$(info [INFO] Downloading from $(FIRTOOL_URL) to $(FIRTOOL_BIN))
$(shell mkdir -p $(FIRTOOL_DIR) && curl -L $(FIRTOOL_URL) | tar -xzC $(FIRTOOL_DIR))
endif
FIRTOOL = $(FIRTOOL_BIN)
endif
endif

ifneq ($(FIRTOOL),)
MILL_ARGS += --firtool-binary-path $(FIRTOOL)
endif
Expand Down
4 changes: 2 additions & 2 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import coursier.maven.MavenRepository

object ivys {
val scala = "2.13.12"
val chisel = ivy"org.chipsalliance::chisel:6.0.0-RC2"
val chiselPlugin = ivy"org.chipsalliance:::chisel-plugin:6.0.0-RC2"
val chisel = ivy"org.chipsalliance::chisel:6.0.0"
val chiselPlugin = ivy"org.chipsalliance:::chisel-plugin:6.0.0"
}

trait CommonModule extends ScalaModule {
Expand Down