From 50ed109d1fb2b6354fbe3eede8804b5066365a94 Mon Sep 17 00:00:00 2001 From: Johannes Wirth Date: Fri, 23 Apr 2021 19:30:38 +0200 Subject: [PATCH] Fix crash during system composition for all pcie platforms --- toolflow/vivado/platform/pcie/pcie_base.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolflow/vivado/platform/pcie/pcie_base.tcl b/toolflow/vivado/platform/pcie/pcie_base.tcl index 5f790716..89f65098 100644 --- a/toolflow/vivado/platform/pcie/pcie_base.tcl +++ b/toolflow/vivado/platform/pcie/pcie_base.tcl @@ -265,7 +265,7 @@ proc create_subsystem_memory {} { set constraints_fn "[get_property DIRECTORY [current_project]]/mig_reset_calib.xdc" set constraints_file [open $constraints_fn w+] - puts $constraints_file "set_false_path -through [get_pins -filter {name=~*resetn*} -of_objects [get_cells system_i/memory/design_clk_wiz]]" + puts $constraints_file {set_false_path -through [get_pins -filter {name=~*resetn*} -of_objects [get_cells system_i/memory/design_clk_wiz]]} close $constraints_file read_xdc $constraints_fn set_property PROCESSING_ORDER LATE [get_files $constraints_fn]