Skip to content

Commit 1d0d004

Browse files
committed
Fix GHDL not finding std_logic_misc
1 parent a7d009f commit 1d0d004

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vhdeps_lib/targets/ghdl_run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def run(l, order, f):
2626
failed = False
2727
for vhd in order:
2828
# TODO vhd.lib, vhd.version!
29-
rc, stdout, stderr = (ghdl["-a"]["-g"]["--std=08"][vhd.fname]).run(retcode=None)
29+
rc, stdout, stderr = (ghdl["-a"]["-g"]["--std=08"]["--ieee=synopsys"][vhd.fname]).run(retcode=None)
3030
if rc != 0:
3131
failed = True
3232
f.write(stdout)

0 commit comments

Comments
 (0)