merge_partitions (::quartus::incremental_compilation)

The following table displays information for the merge_partitions Tcl command:

Tcl Package and Version

Belongs to ::quartus::incremental_compilation 1.1

Syntax merge_partitions [-h | -help] [-long_help] -partition <partition name> -partitions <partition names>
Arguments -h | -help Short help
-long_help Long help with examples and possible return values
-partition <partition name> Merged partition name
-partitions <partition names> List of partitions to merge
Description
Merge multiple partitions into a single
multi-hierarchy partition with the specified name,
unless the specified partition already exists.
Example Usage
package require ::quartus::incremental_compilation

project_open my_design

## Create a merged partition multi_1 containing contents of p0 and p1
merge_partitions -partition multi_1 -partitions p0 p1

project_close
Return Value Code Name Code String Return
TCL_OK 0 INFO: Operation successful
TCL_ERROR 1 ERROR: Can't find active revision. Make sure there is an open, active revision name. Use the -revision option of project_open, project_new, or use set_current_revision.
TCL_ERROR 1 ERROR: No project is currently open. Open an existing project or create a new project.
TCL_ERROR 1 ERROR: This command is not supported in the current software edition.
TCL_ERROR 1 ERROR: Partition already exists. Specify an unique partition name.
TCL_ERROR 1 ERROR: Partition does not exist. Specify a valid partition name in the design.
TCL_ERROR 1 ERROR: Unable to change assignment. Quartus Prime Settings File is read-only.