mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Pinned ABC revision to 0f9e5488ced3
This commit is contained in:
parent
5dce6379aa
commit
02efafa7f1
4
Makefile
4
Makefile
|
@ -24,6 +24,8 @@ YOSYS_VER := 0.0.x
|
||||||
GIT_REV := $(shell git rev-parse --short HEAD || echo UNKOWN)
|
GIT_REV := $(shell git rev-parse --short HEAD || echo UNKOWN)
|
||||||
OBJS = kernel/version_$(GIT_REV).o
|
OBJS = kernel/version_$(GIT_REV).o
|
||||||
|
|
||||||
|
ABCREV = 0f9e5488ced3
|
||||||
|
|
||||||
-include Makefile.conf
|
-include Makefile.conf
|
||||||
|
|
||||||
ifeq ($(CONFIG),clang-debug)
|
ifeq ($(CONFIG),clang-debug)
|
||||||
|
@ -94,7 +96,7 @@ yosys-svgviewer: libs/svgviewer/*.h libs/svgviewer/*.cpp
|
||||||
|
|
||||||
abc:
|
abc:
|
||||||
test -d abc || hg clone https://bitbucket.org/alanmi/abc abc
|
test -d abc || hg clone https://bitbucket.org/alanmi/abc abc
|
||||||
cd abc && hg pull && hg update && make
|
cd abc && hg pull && hg update -r $(ABCREV) && make
|
||||||
cp abc/abc yosys-abc
|
cp abc/abc yosys-abc
|
||||||
|
|
||||||
test: yosys
|
test: yosys
|
||||||
|
|
Loading…
Reference in a new issue