mirror of
https://github.com/YosysHQ/yosys
synced 2026-05-22 01:49:45 +00:00
Do not use Makefile.conf
This commit is contained in:
parent
c0779f488a
commit
15e09163cd
3 changed files with 2 additions and 11 deletions
|
|
@ -55,11 +55,6 @@ def create_tests():
|
|||
]))
|
||||
|
||||
extra = [
|
||||
"ifneq ($(ABCEXTERNAL),)",
|
||||
"ABC ?= $(ABCEXTERNAL)",
|
||||
"else",
|
||||
f"ABC ?= {gen_tests_makefile.yosys_basedir}/yosys-abc",
|
||||
"endif",
|
||||
"SHELL := /usr/bin/env bash",
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -5,10 +5,12 @@ YOSYS ?= $(BUILD_DIR)/yosys
|
|||
ABC ?= $(BUILD_DIR)/yosys-abc
|
||||
YOSYS_FILTERLIB ?= $(BUILD_DIR)/yosys-filterlib
|
||||
YOSYS_CONFIG ?= $(BUILD_DIR)/yosys-config
|
||||
YOSYS_MAX_THREADS ?= 4
|
||||
|
||||
export YOSYS
|
||||
export YOSYS_CONFIG
|
||||
export ABC
|
||||
export YOSYS_MAX_THREADS
|
||||
|
||||
all:
|
||||
|
||||
|
|
|
|||
|
|
@ -94,12 +94,6 @@ def generate_tests(argv, cmds):
|
|||
|
||||
def print_header(extra=None):
|
||||
print(f"include {common_mk}")
|
||||
print(f"ifneq ($(wildcard {yosys_basedir}/Makefile.conf),)")
|
||||
print(f"include {yosys_basedir}/Makefile.conf")
|
||||
print(f"endif")
|
||||
|
||||
print("")
|
||||
print("export YOSYS_MAX_THREADS := 4")
|
||||
if extra:
|
||||
for line in extra:
|
||||
print(line)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue