File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -307,9 +307,11 @@ jobs:
307307 }
308308
309309 if {$::osvvm::ToolName eq "GHDL"} {
310+ SetExtendedAnalyzeOptions {-frelaxed -Wno-specs -Wno-elaboration}
310311 SetExtendedSimulateOptions {-frelaxed -Wno-specs -Wno-binding}
311312 }
312313 if {$::osvvm::ToolName eq "NVC"} {
314+ SetExtendedAnalyzeOptions {--relaxed}
313315 }
314316
315317 build ../../tb/RunAllTests.pro
Original file line number Diff line number Diff line change @@ -100,8 +100,8 @@ begin
100100 WaitForClock(Clock);
101101 wait for 1 ns ;
102102 Start <= '0' ;
103- A <= (A 'range => '-' ); -- ( others => '-'); WORKAROUND: NVC 1.18.2 Linux
104- D <= (D 'range => '-' ); -- ( others => '-');
103+ A <= (others => '-' );
104+ D <= (others => '-' );
105105 done := (others => false );
106106
107107 loop
@@ -136,8 +136,8 @@ begin
136136
137137 begin
138138 Start <= '0' ;
139- A <= (A 'range => '-' ); -- ( others => '-'); WORKAROUND: NVC 1.18.2 Linux
140- D <= (D 'range => '-' ); -- ( others => '-');
139+ A <= (others => '-' );
140+ D <= (others => '-' );
141141
142142 -- Initialize Random
143143 Random.InitSeed(Random'instance_name );
You can’t perform that action at this time.
0 commit comments