delete_debug_core - 2021.1 English

Vivado Design Suite Tcl Command Reference Guide (UG835)

Document ID
UG835
Release Date
2021-06-16
Version
2021.1 English

Delete a debug core

Syntax

delete_debug_core [‑quiet] [‑verbose] <cores>...

Usage

Name Description
[-quiet] Ignore command errors
[-verbose] Suspend message limits during command execution
<cores> Debug cores to delete

Categories

Debug

Description

Removes Vivado Lab Edition debug cores from the current project that were added by the create_debug_core command.

Arguments

-quiet - (Optional) Execute the command quietly, returning no messages from the command. The command also returns TCL_OK regardless of any errors encountered during execution.
Note: Any errors encountered on the command-line, while launching the command, will be returned. Only errors occurring inside the command will be trapped.
-verbose - (Optional) Temporarily override any message limits and return all messages from this command.
Note: Message limits can be defined with the set_msg_config command.

<cores> - (Required) One or more debug core names to remove from the current project.

Examples

The following command deletes the myCore debug core from the current project:
delete_debug_core myCore
The following command deletes all debug cores from the current project:
delete_debug_core [get_debug_cores]
Note: The get_debug_cores command returns all debug cores as a default.