Commit 5d0024c2 authored by Dimitris Lampridis's avatar Dimitris Lampridis

syn/vfchd: prevent quartus flow messages printed to stderr during core…

syn/vfchd: prevent quartus flow messages printed to stderr during core generation from stopping the synthesis process
parent 846e85bd
......@@ -17,7 +17,7 @@ proc qmegawiz {files} {
file delete "$dir/$i.qip"
file copy -force "$dir/$i.txt" "$dir/$i.vhd"
set sf [open "| qmegawiz -silent \"-defaultfamily:$family\" \"-defaultdevice:$device\" \"$dir/$i.vhd\" " "r"]
set sf [open "| qmegawiz -silent \"-defaultfamily:$family\" \"-defaultdevice:$device\" \"$dir/$i.vhd\" 2>@stderr" r]
while {[gets $sf line] >= 0} { post_message -type info "$line" }
if {[catch {close $sf} err]} {
post_message -type error "Executing qmegawiz: $err"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment