Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release Candidate 4.16.2 #331

Merged
merged 1 commit into from
Sep 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions vivado/proc/debug_probes.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,20 @@
## Create a Debug Core Function
proc CreateDebugCore {ilaName} {

# Check if Vivado 2024.1 or later
if { [VersionCompare 2024.1] >= 0} {
# Check if the currently sourced script contains "post_synthesis.tcl"
if {[string match "*post_synthesis.tcl" [info script]]} {
puts "\n\n\n\n\n********************************************************"
puts "vivado/post_synthesis.tcl no longer works with Vivado 2024.1 (or later)"
puts "Please do the following operations on your post_synthesis.tcl script"
puts "1) Rename the script from post_synthesis.tcl to pre_opt_run.tcl"
puts "2) Remove the 'open_run synth_1' TCL command from the script"
puts "********************************************************\n\n\n\n\n"
exit -1
}
}

# Delete the Core if it already exist
delete_debug_core -quiet [get_debug_cores ${ilaName}]

Expand Down
Loading