File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
lib/src/main/scala/dfhdl/tools/toolsCore Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ object GHDL extends VHDLLinter, VHDLSimulator:
62
62
SimulatorOptions ,
63
63
MemberGetSet
64
64
): String = constructCommand(
65
- " -r "
65
+ " --elab-run "
66
66
)
67
67
68
68
override protected def simulateCmdPostLangFlags (using
@@ -96,9 +96,7 @@ object GHDL extends VHDLLinter, VHDLSimulator:
96
96
finishedSuccessfully = true
97
97
println(s " simulation finished @ $time" )
98
98
true
99
- else if (finishedSuccessfully)
100
- line == " ghdl:error: report failed" || line == " ghdl:error: simulation failed"
101
- else false
99
+ else finishedSuccessfully // suppress all other lines after the first finish
102
100
else false ,
103
101
// GHDL does not report error codes for runtime errors, so we need to detect errors manually
104
102
// even when using VHDL'2008 and later
You can’t perform that action at this time.
0 commit comments