diff --git a/vivado/messages.tcl b/vivado/messages.tcl index de051f4a..e12d6e4c 100644 --- a/vivado/messages.tcl +++ b/vivado/messages.tcl @@ -121,6 +121,7 @@ set_msg_config -id {Synth 8-3512} -new_severity ERROR;# SYNTH: Assigned valu set_msg_config -id {VRFC 10-664} -new_severity ERROR;# SIM: expression has XXX elements ; expected XXX set_msg_config -id {filemgmt 20-1318} -new_severity ERROR;# FILEMGMT: Duplicate entities/files found in the same library set_msg_config -id {IP_Flow 19-1663} -new_severity ERROR;# IP_FLOW: Duplicate IP found +set_msg_config -id {IP_Flow 19-11772} -new_severity ERROR;# IP_FLOW: Failed to register IP shared directory path ## Check for version 2015.3 (or older) if { [VersionCompare 2015.3] <= 0 } { diff --git a/vivado/proc/code_loading.tcl b/vivado/proc/code_loading.tcl index a6b00c7c..38cca483 100644 --- a/vivado/proc/code_loading.tcl +++ b/vivado/proc/code_loading.tcl @@ -231,7 +231,7 @@ proc loadIpCore args { # Check if file doesn't exist in project if { [get_files -quiet $params(path)] == "" } { # Add the IP core file - import_ip -quiet -srcset sources_1 $params(path) + import_ip -srcset sources_1 $params(path) } # Update the global list set strip [file rootname [file tail $params(path)]] @@ -264,7 +264,7 @@ proc loadIpCore args { # Check if file doesn't exist in project if { [get_files -quiet ${pntr}] == "" } { # Add the IP core file - import_ip -quiet -srcset sources_1 ${pntr} + import_ip -srcset sources_1 ${pntr} } # Update the global list set strip [file rootname [file tail ${pntr}]]