byuccl / tincr

A Tcl-based CAD Tool Framework for Xilinx's Vivado Design Suite
GNU General Public License v2.0
39 stars 19 forks source link

Namespace conflict: changed get_design calls to get_designs #87

Closed DallonTG closed 5 years ago

DallonTG commented 5 years ago

Some calls in Tincr used "get_design" instead of Vivado's "get_designs". The problem with this is that if you import the tincr namespace, "get_design" becomes ambiguous since there is tincr procedure by the name of "get_design_info". See issue #85.

This PR just replaces instances of "get_design" to "get_designs" to fix the problem.