mirror of
https://github.com/The-OpenROAD-Project/OpenLane.git
synced 2026-05-29 00:23:55 +08:00
+ Klayout is now a proper OpenLane tool ~ klayout -> 0.27.7 - local installer no longer includes Klayout in dependencies: bring your own klayout
111 lines
4.0 KiB
Makefile
111 lines
4.0 KiB
Makefile
#DOCKER_BUILD_OPTS ?= --rm --no-cache
|
|
DOCKERFILE_PATH ?= ./openlane/Dockerfile
|
|
OPENLANE_IMAGE_NAME ?= efabless/openlane:current
|
|
TOOL_REPOSITORY ?= efabless/openlane-tools
|
|
|
|
OS_NAME ?= centos-7
|
|
OS_IMAGE ?= centos:centos7
|
|
|
|
DOCKER_BUILD_OPTS ?= --rm
|
|
DOCKER_BUILD_INVOCATION ?= docker build # docker buildx build --platform linux/amd64 --load
|
|
BUILD_COMMAND = $(DOCKER_BUILD_INVOCATION) $(DOCKER_BUILD_OPTS)
|
|
|
|
NO_PDKS_ARGS =
|
|
NO_PDKS ?= 1
|
|
ifeq ($(NO_PDKS), 1)
|
|
NO_PDKS_ARGS = --no-pdks
|
|
endif
|
|
|
|
TOOLS = $(shell python3 ../dependencies/tool.py --containerized $(NO_PDKS_ARGS) .)
|
|
|
|
TOOL_BUILD_TARGETS = $(foreach tool,$(TOOLS),build-$(tool))
|
|
TOOL_EXPORT_TARGETS = $(foreach tool,$(TOOLS),tar/$(tool).tar.gz)
|
|
# ==============================================================================
|
|
# Build Tools
|
|
# ==============================================================================
|
|
all: openlane
|
|
|
|
build-all: $(TOOL_BUILD_TARGETS)
|
|
build_base_image: ./build_base/Dockerfile
|
|
cat ../dependencies/centos-7/precompile_time.txt > ./build_base/yum_precompile_dependencies.txt
|
|
cat ../dependencies/centos-7/compile_time.txt > ./build_base/yum_compile_dependencies.txt
|
|
cat ../dependencies/centos-7/run_time.txt > ./build_base/yum_dependencies.txt
|
|
cat ../dependencies/python/precompile_time.txt > ./build_base/pip_precompile_dependencies.txt
|
|
cat ../dependencies/python/compile_time.txt > ./build_base/pip_compile_dependencies.txt
|
|
cat ../dependencies/python/run_time.txt > ./build_base/pip_dependencies.txt
|
|
mkdir -p logs
|
|
$(BUILD_COMMAND) -t openlane-build-base --build-arg OS_IMAGE=$(OS_IMAGE) build_base | tee logs/base.build.txt
|
|
|
|
run_base_image: ./run_base/Dockerfile
|
|
cat ../dependencies/python/run_time.txt > ./run_base/pip_dependencies.txt
|
|
cat ../dependencies/centos-7/precompile_time.txt > ./run_base/yum_repos.txt
|
|
cat ../dependencies/centos-7/run_time.txt > ./run_base/yum_dependencies.txt
|
|
mkdir -p logs
|
|
$(BUILD_COMMAND) -t openlane-run-base --build-arg OS_IMAGE=$(OS_IMAGE) run_base | tee logs/base.run.txt
|
|
|
|
|
|
$(TOOL_BUILD_TARGETS): build-% : ./%/Dockerfile build_base_image run_base_image
|
|
mkdir -p logs
|
|
cp ./utils.py $*
|
|
$(BUILD_COMMAND)\
|
|
$(shell python3 ../dependencies/tool.py --docker-args $*)\
|
|
--target runnable\
|
|
-t $(TOOL_REPOSITORY):$(shell python3 ../dependencies/tool.py --docker-tag-for-os=$(OS_NAME) $*)\
|
|
$* |\
|
|
tee logs/$*.build.txt
|
|
|
|
# ==============================================================================
|
|
# Export Tools
|
|
# ==============================================================================
|
|
$(TOOL_EXPORT_TARGETS): tar/%.tar.gz : FORCE
|
|
rm -f tar/$*.tar.gz && echo "Deleted existing tar/$*.tar.gz"
|
|
mkdir -p tar
|
|
python3 ./utils.py pull-if-doesnt-exist --repository $(TOOL_REPOSITORY) --os $(OS_NAME) $*
|
|
id=$$(${ROOT} docker create $(TOOL_REPOSITORY):$(shell python3 ../dependencies/tool.py --docker-tag-for-os=$(OS_NAME) $*)) ; \
|
|
${ROOT} docker cp $$id:/build.tar.gz tar/$*.tar.gz ; \
|
|
${ROOT} docker rm -v $$id
|
|
|
|
./tar/build: $(TOOL_EXPORT_TARGETS)
|
|
rm -rf ./tar/build
|
|
cd tar && \
|
|
for tarFile in $(foreach tool,$(TOOLS),$(tool).tar.gz); do \
|
|
tar -xzf $$tarFile ; \
|
|
chmod -R +x ./build/bin ; \
|
|
find ./build/ -name "*.tcl" -exec chmod +x {} \; ;\
|
|
done
|
|
|
|
OPENLANE_SKELETON=configuration dependencies designs regression_results scripts AUTHORS.md env.py flow.tcl LICENSE run_designs.py
|
|
./tar/openlane: FORCE
|
|
rm -rf ./tar/openlane
|
|
mkdir -p ./tar/openlane
|
|
for file in $(OPENLANE_SKELETON); do \
|
|
cp -r ../$$file ./tar/openlane/$$file ; \
|
|
done
|
|
|
|
FORCE:
|
|
|
|
.PHONY: merge openlane
|
|
openlane: merge
|
|
merge: run_base_image ./tar/build ./tar/openlane ../dependencies/tool_metadata.yml
|
|
cat ../dependencies/tool_metadata.yml > ./tar/tool_metadata.yml
|
|
printf "$(shell git rev-parse --short=7 HEAD)" > ./tar/git_version
|
|
mkdir -p logs/tar
|
|
$(BUILD_COMMAND)\
|
|
--build-arg CACHE_INVALIDATOR=$(shell date +%s)\
|
|
-t $(OPENLANE_IMAGE_NAME)\
|
|
-f $(DOCKERFILE_PATH) ./tar\
|
|
| tee logs/$<.build.txt
|
|
|
|
.PHONY: clean
|
|
clean: clean_export clean_merge
|
|
|
|
.PHONY: clean_merge
|
|
clean_merge:
|
|
rm -rf ./tar/openlane
|
|
rm -rf ./tar/build
|
|
|
|
.PHONY: clean_export
|
|
clean_export:
|
|
rm -rf export/*.tar.gz
|
|
|