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

Fixed workdir for ghdl in template creation #445

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
1 change: 0 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ Tada! We have simulated. As an exercise, try to just change the tool variable to

Now it's time to create an FPGA image instead


As you have seen, Edalize is an award-winning tool for interfacing EDA tools, so

**Edalize it, don't criticize it!**
Expand Down
7 changes: 7 additions & 0 deletions edalize/ghdl.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ def configure_main(self):

libraries = collections.OrderedDict()
library_options = "--work={lib} --workdir=./{lib}"
top_workdir_options = "--workdir=./{lib}"
ghdlimport = ""
vhdl_sources = ""

Expand All @@ -114,6 +115,11 @@ def configure_main(self):
libraries[top[0]] = []
top_libraries = library_options.format(lib=top[0])

top_workdir = ""
if len(top) > 1:
libraries[top[0]] = []
top_workdir = top_workdir_options.format(lib=top[0])

top_unit = top[-1]

for f in src_files:
Expand Down Expand Up @@ -155,6 +161,7 @@ def configure_main(self):
"make_libraries_directories": make_libraries_directories,
"ghdlimport": ghdlimport,
"top_libraries": top_libraries,
"top_workdir": top_workdir,
},
)

Expand Down
4 changes: 2 additions & 2 deletions edalize/templates/ghdl/Makefile.j2
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ TOPLEVEL = {{ toplevel }}
TOPLEVEL_LIBS = {{ top_libraries }}
ANALYZE_OPTIONS = {{ analyze_options }}
RUN_OPTIONS = {{ run_options }}

TOP_WORKDIR = {{ top_workdir }}
VHDL_SOURCES = {{ vhdl_sources }}

all: work-obj{{ standard }}.cf
Expand All @@ -13,7 +13,7 @@ run: $(TOPLEVEL)
$(EDALIZE_LAUNCHER) ghdl -r $(STD) $(ANALYZE_OPTIONS) $(TOPLEVEL_LIBS) $(TOPLEVEL) $(RUN_OPTIONS) $(EXTRA_OPTIONS)

$(TOPLEVEL): $(VHDL_SOURCES) work-obj{{ standard }}.cf
$(EDALIZE_LAUNCHER) ghdl -m $(STD) $(ANALYZE_OPTIONS) $(TOPLEVEL_LIBS) $(TOPLEVEL)
$(EDALIZE_LAUNCHER) ghdl -m $(STD) $(ANALYZE_OPTIONS) $(TOPLEVEL_LIBS) $(TOP_WORKDIR) $(TOPLEVEL)

$(TOPLEVEL).v: $(VHDL_SOURCES) work-obj{{ standard }}.cf
$(EDALIZE_LAUNCHER) ghdl --synth --out=verilog $(STD) $(ANALYZE_OPTIONS) $(TOPLEVEL_LIBS) $(TOPLEVEL)
Expand Down
11 changes: 10 additions & 1 deletion tests/edalize_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@
import shutil

import pytest
import logging

from edalize.edatool import get_edatool

logger = logging.getLogger('Edalize')
logger.setLevel (logging.INFO)

tests_dir = os.path.dirname(__file__)

Expand Down Expand Up @@ -136,9 +139,15 @@ def compare_files(ref_dir, work_root, files):
if "GOLDEN_RUN" in os.environ:
shutil.copy(generated_file, reference_file)


with open(reference_file) as fref, open(generated_file) as fgen:
assert fref.read() == fgen.read(), f
if fref.read() != fgen.read():
logger.info(f"{fref}")
logger.info(f"{fgen}")


with open(reference_file) as fref, open(generated_file) as fgen:
assert fref.read() == fgen.read(), f

def get_flow(name):
return getattr(import_module("edalize.flows.{}".format(name)), name.capitalize())
Expand Down
4 changes: 2 additions & 2 deletions tests/test_ghdl/test01/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ TOPLEVEL = top_module
TOPLEVEL_LIBS =
ANALYZE_OPTIONS = some analyze_options -P./libx
RUN_OPTIONS = a few run_options

TOP_WORKDIR =
VHDL_SOURCES = vhdl_file.vhd vhdl_lfile vhdl2008_file

all: work-obj08.cf
Expand All @@ -13,7 +13,7 @@ run: $(TOPLEVEL)
$(EDALIZE_LAUNCHER) ghdl -r $(STD) $(ANALYZE_OPTIONS) $(TOPLEVEL_LIBS) $(TOPLEVEL) $(RUN_OPTIONS) $(EXTRA_OPTIONS)

$(TOPLEVEL): $(VHDL_SOURCES) work-obj08.cf
$(EDALIZE_LAUNCHER) ghdl -m $(STD) $(ANALYZE_OPTIONS) $(TOPLEVEL_LIBS) $(TOPLEVEL)
$(EDALIZE_LAUNCHER) ghdl -m $(STD) $(ANALYZE_OPTIONS) $(TOPLEVEL_LIBS) $(TOP_WORKDIR) $(TOPLEVEL)

$(TOPLEVEL).v: $(VHDL_SOURCES) work-obj08.cf
$(EDALIZE_LAUNCHER) ghdl --synth --out=verilog $(STD) $(ANALYZE_OPTIONS) $(TOPLEVEL_LIBS) $(TOPLEVEL)
Expand Down
4 changes: 2 additions & 2 deletions tests/test_ghdl/test02/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ TOPLEVEL = top_module
TOPLEVEL_LIBS =
ANALYZE_OPTIONS = some analyze_options -P./libx
RUN_OPTIONS = a few run_options

TOP_WORKDIR =
VHDL_SOURCES = vhdl_file.vhd vhdl_lfile

all: work-obj93.cf
Expand All @@ -13,7 +13,7 @@ run: $(TOPLEVEL)
$(EDALIZE_LAUNCHER) ghdl -r $(STD) $(ANALYZE_OPTIONS) $(TOPLEVEL_LIBS) $(TOPLEVEL) $(RUN_OPTIONS) $(EXTRA_OPTIONS)

$(TOPLEVEL): $(VHDL_SOURCES) work-obj93.cf
$(EDALIZE_LAUNCHER) ghdl -m $(STD) $(ANALYZE_OPTIONS) $(TOPLEVEL_LIBS) $(TOPLEVEL)
$(EDALIZE_LAUNCHER) ghdl -m $(STD) $(ANALYZE_OPTIONS) $(TOPLEVEL_LIBS) $(TOP_WORKDIR) $(TOPLEVEL)

$(TOPLEVEL).v: $(VHDL_SOURCES) work-obj93.cf
$(EDALIZE_LAUNCHER) ghdl --synth --out=verilog $(STD) $(ANALYZE_OPTIONS) $(TOPLEVEL_LIBS) $(TOPLEVEL)
Expand Down
4 changes: 2 additions & 2 deletions tests/test_ghdl/test03/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ TOPLEVEL = top_module
TOPLEVEL_LIBS =
ANALYZE_OPTIONS = --ieee=synopsys -P./libx
RUN_OPTIONS = a few run_options

TOP_WORKDIR =
VHDL_SOURCES = vhdl_file.vhd vhdl_lfile

all: work-obj08.cf
Expand All @@ -13,7 +13,7 @@ run: $(TOPLEVEL)
$(EDALIZE_LAUNCHER) ghdl -r $(STD) $(ANALYZE_OPTIONS) $(TOPLEVEL_LIBS) $(TOPLEVEL) $(RUN_OPTIONS) $(EXTRA_OPTIONS)

$(TOPLEVEL): $(VHDL_SOURCES) work-obj08.cf
$(EDALIZE_LAUNCHER) ghdl -m $(STD) $(ANALYZE_OPTIONS) $(TOPLEVEL_LIBS) $(TOPLEVEL)
$(EDALIZE_LAUNCHER) ghdl -m $(STD) $(ANALYZE_OPTIONS) $(TOPLEVEL_LIBS) $(TOP_WORKDIR) $(TOPLEVEL)

$(TOPLEVEL).v: $(VHDL_SOURCES) work-obj08.cf
$(EDALIZE_LAUNCHER) ghdl --synth --out=verilog $(STD) $(ANALYZE_OPTIONS) $(TOPLEVEL_LIBS) $(TOPLEVEL)
Expand Down
4 changes: 2 additions & 2 deletions tests/test_ghdl/test04/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ TOPLEVEL = vhdl_lfile
TOPLEVEL_LIBS = --work=libx --workdir=./libx
ANALYZE_OPTIONS = some analyze_options -P./libx
RUN_OPTIONS = a few run_options

TOP_WORKDIR = --workdir=./libx
VHDL_SOURCES = vhdl_file.vhd vhdl_lfile vhdl2008_file

all: work-obj08.cf
Expand All @@ -13,7 +13,7 @@ run: $(TOPLEVEL)
$(EDALIZE_LAUNCHER) ghdl -r $(STD) $(ANALYZE_OPTIONS) $(TOPLEVEL_LIBS) $(TOPLEVEL) $(RUN_OPTIONS) $(EXTRA_OPTIONS)

$(TOPLEVEL): $(VHDL_SOURCES) work-obj08.cf
$(EDALIZE_LAUNCHER) ghdl -m $(STD) $(ANALYZE_OPTIONS) $(TOPLEVEL_LIBS) $(TOPLEVEL)
$(EDALIZE_LAUNCHER) ghdl -m $(STD) $(ANALYZE_OPTIONS) $(TOPLEVEL_LIBS) $(TOP_WORKDIR) $(TOPLEVEL)

$(TOPLEVEL).v: $(VHDL_SOURCES) work-obj08.cf
$(EDALIZE_LAUNCHER) ghdl --synth --out=verilog $(STD) $(ANALYZE_OPTIONS) $(TOPLEVEL_LIBS) $(TOPLEVEL)
Expand Down
Loading