Markus
-
Markus replied to the topic Race conditions / buffer issues in console output in the forum OSVVM 2 years, 6 months ago
It seems the problem was on my end after all
When I call
vsim -batch -do "build project.pro"
the output is fine. However, when I call it with a pipeline operator to postprocess the output
vsim -batch -do "build project.pro" | cat
the output is somehow mixed up.This is a buffering problem which can be solved with unbuffer:
unbuffer -p vsim -batch…
[Read more] -
Markus started the topic Race conditions / buffer issues in console output in the forum OSVVM 2 years, 6 months ago
I had troubles concerning the order of console output, esp. in combination with ModelSim/Questasim.
Problem Description:
Assume the following proc in VendorScript_Mentor.tcl (pseudocode):
proc analyze {FileName} {
puts Starting VCOM
vcom ... $FileName
puts VCOM Done
}I got the following output:
Starting VCOM
VCOM Done
…
<actual output…[Read more] -
Markus became a registered member 2 years, 11 months ago