From db18924f8a5f236bc76bc0b326125d0c31e10dda Mon Sep 17 00:00:00 2001 From: Istvan Csomortani Date: Thu, 20 Aug 2015 10:56:37 +0300 Subject: [PATCH] library/scripts: Fix ipx::get_file_groups process call ipx::get_file_groups does not work, if there is specified just a [] for its argument. Need to use a -filter to get proper result. --- library/scripts/adi_ip.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/scripts/adi_ip.tcl b/library/scripts/adi_ip.tcl index f7a6266d6..4fdc402e6 100644 --- a/library/scripts/adi_ip.tcl +++ b/library/scripts/adi_ip.tcl @@ -47,7 +47,7 @@ proc adi_ip_files {ip_name ip_files} { proc adi_ip_constraints {ip_name ip_constr_files {processing_order late}} { - set proj_filegroup [ipx::get_file_groups xilinx_v*synthesis -of_objects [ipx::current_core]] + set proj_filegroup [ipx::get_file_groups -of_objects [ipx::current_core] -filter {NAME =~ *synthesis*}] foreach f_name $ip_constr_files { ipx::add_file $f_name $proj_filegroup set_property type xdc [ipx::get_files $f_name -of_objects $proj_filegroup]