Skip to content

Commit 616b82d

Browse files
committed
Update to ChangeLog for 2026.01
1 parent 43451a0 commit 616b82d

File tree

5 files changed

+21
-13
lines changed

5 files changed

+21
-13
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
| **Revision** | **Release Summary** |
44
|---------------|-----------------------------------------------------------------------------------------------|
5+
| 2026.01 | Simulate - if run from command line, runs as build and creates reports linked into index |
6+
| | Simluate generates ANALYZED_FAILED if LastAnalyzeHasErrors |
7+
| | Added CreateDryRunDict, CreateVhdlLsToml, CreateAnalyzeOrderList |
8+
| | StartUp.tcl will detect NVC if run as "nvc -do " |
59
| 2025.06 | Move build results to build directory. BuildName introduced to name it. |
610
| | Create Index.html in the sim directory |
711
| | Updated Siemens (vsim flow) and Questa (vopt + vsim flow) scripts to run in tclsh better. |
@@ -11,7 +15,7 @@
1115
| | Updated OsvvmUserSettingsDirectory s.t. scripts and VHDL use same path |
1216
| | Turned off VHDL-2019 settings for Siemens as 2025.1 release claims they don't support it |
1317
| 2025.02 | Use $::env::(OSVVM_SETTINGS_DIR) to set the requirements directory. |
14-
| | USE_SUM_OF_GOALS requirements uses Sum of Goals (if true) vs Maximum (if false and past default) |
18+
| | USE_SUM_OF_GOALS requirements uses Sum of Goals (if true) vs Maximum (if false and past default) |
1519
| | Updated requirements handling to handle Functional Coverage. |
1620
| | Added variable Supports2019FilePath (based on tool support). |
1721
| | Added GetTimeString |

CallbackDefaults.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ namespace eval ::osvvm {
339339
puts "ReportError: during $ProcName $Message failed: $errmsg"
340340

341341
# Reference or print ErrorInfo for this error
342-
if {$::osvvm::ScriptDebug} {
342+
if {$::osvvm::ReportDebug} {
343343
# puts ${::osvvm::${ProcName}ErrorInfo}
344344
puts ${::osvvm::ReportErrorInfo}
345345
} else {

OsvvmSettingsDefault.tcl

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -176,13 +176,9 @@ namespace eval ::osvvm {
176176
#
177177
# OsvvmDeveloper Controls
178178
#
179-
variable ScriptDebug "false"
180-
variable CreateVti "false"
181-
182-
#
183-
# Debug Controls
184-
#
185-
variable TclDebug "false"
179+
variable TclDebug "false"
180+
variable ReportDebug "false"
181+
variable OsvvmDevDeriveArchitectures "false"
186182

187183
#
188184
# Second Top

OsvvmSettingsLocal_example.tcl

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,15 @@ namespace eval ::osvvm {
189189
# variable Debug "false"
190190
# variable LogSignalsIsSet "false"
191191
# variable LogSignals "false"
192-
# variable ScriptDebug "false"
192+
# variable ReportDebug "false"
193+
194+
#
195+
# OsvvmDeveloper Controls
196+
#
197+
# variable TclDebug "false"
198+
# variable ReportDebug "false"
199+
# variable OsvvmDevDeriveArchitectures "false"
200+
193201

194202
#
195203
# Extended Analyze and Simulate Options

VendorScripts_ASim.tcl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@
6565

6666
if {[expr [string compare $ToolVersion "12.0"] >= 0]} {
6767
SetVHDLVersion 2019
68-
variable Supports2019Env "true"
69-
variable Supports2019Interface "true"
68+
variable Supports2019Interface "false"
7069
variable Supports2019ImpureFunctions "true"
71-
variable Supports2019FilePath "true"
70+
variable Supports2019FilePath "true"
71+
variable Supports2019AssertApi "true"
7272
}
7373

7474
variable FunctionalCoverageIntegratedInSimulator "Aldec"

0 commit comments

Comments
 (0)