Skip to content

Commit

Permalink
Parameterize openlane docker location for self-hosted situations
Browse files Browse the repository at this point in the history
  • Loading branch information
rlf-arlut committed Aug 12, 2023
1 parent fe64a7e commit 7a54af7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion openlane/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ MAKEFLAGS+=--warn-undefined-variables
export OPENLANE_RUN_TAG = $(shell date '+%y_%m_%d_%H_%M')
export OPENLANE_REPO ?= https://github.com/The-OpenROAD-Project/OpenLane
OPENLANE_TAG ?= 2023.07.19
OPENLANE_IMAGE_NAME ?= efabless/openlane:$(OPENLANE_TAG)
OPENLANE_IMAGE_NAME_BASE ?= efabless/openlane
OPENLANE_IMAGE_NAME ?= $(OPENLANE_IMAGE_NAME_BASE):$(OPENLANE_TAG)
designs = $(shell find * -maxdepth 0 -type d)
current_design = null

Expand Down

0 comments on commit 7a54af7

Please sign in to comment.