delete_macros - 2021.2 English

Vivado Design Suite Tcl Command Reference Guide (UG835)

Document ID
UG835
Release Date
2021-10-22
Version
2021.2 English

Delete a list of macros

Syntax

delete_macros [‑quiet] [‑verbose] <macros>

Usage

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

Categories

XDC

Description

Delete one or more macro defined by the create_macro 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.

<macros> - (Required) Specify the name or names of the macros to delete.

Examples

The following example deletes a macro called usbMacro1:

delete_macros usbMacro1

See Also