Skip to content
Snippets Groups Projects

Resolve L2SDP-912

Merged
Reinier van der Wallerequested to merge
L2SDP-912 into master
3 open threads
1 file
+ 8
0
Compare changes
  • Side-by-side
  • Inline
+ 8
0
@@ -186,6 +186,10 @@ do
@@ -186,6 +186,10 @@ do
echo "." | { grep -H --color=auto 'not assigned to an exact location' ${quartusdir}/${project_rev}.fit.rpt || true; }
echo "." | { grep -H --color=auto 'not assigned to an exact location' ${quartusdir}/${project_rev}.fit.rpt || true; }
# Print remaining critical warnings, EXCEPT the always presetn TSE warning
# Print remaining critical warnings, EXCEPT the always presetn TSE warning
echo "." | { cat *.rpt | grep -v 'mixed_port_feed_through_mode\" parameter of RAM atom' | grep -H --color=auto 'Critical Warning' || true; }
echo "." | { cat *.rpt | grep -v 'mixed_port_feed_through_mode\" parameter of RAM atom' | grep -H --color=auto 'Critical Warning' || true; }
 
# Print incomplete sensitivity warning
 
echo "." | { cat ${quartusdir}/${project_rev}.syn.rpt | grep -H --color=auto 'sensitivity' || true; }
 
# Print latch inferred warning
 
echo "." | { cat ${quartusdir}/${project_rev}.syn.rpt | grep -v 'Note: All latches listed above' | grep -H --color=auto ' latch*' || true; }
hdl_info $0 "Full compile successful."
hdl_info $0 "Full compile successful."
else
else
# Compile failed
# Compile failed
@@ -199,6 +203,10 @@ do
@@ -199,6 +203,10 @@ do
echo "." | { grep -H --color=auto 'not assigned to an exact location' *.fit.rpt || true; }
echo "." | { grep -H --color=auto 'not assigned to an exact location' *.fit.rpt || true; }
# Print remaining critical warnings, EXCEPT the always presetn TSE warning
# Print remaining critical warnings, EXCEPT the always presetn TSE warning
echo "." | { cat *.rpt | grep -v 'mixed_port_feed_through_mode\" parameter of RAM atom' | grep -H --color=auto 'Critical Warning' || true; }
echo "." | { cat *.rpt | grep -v 'mixed_port_feed_through_mode\" parameter of RAM atom' | grep -H --color=auto 'Critical Warning' || true; }
 
# Print incomplete sensitivity warning
Please register or sign in to reply
 
echo "." | { cat ${quartusdir}/${project_rev}.syn.rpt | grep -H --color=auto 'sensitivity' || true; }
 
# Print latch inferred warning
Please register or sign in to reply
 
echo "." | { cat ${quartusdir}/${project_rev}.syn.rpt | grep -v 'Note: All latches listed above' | grep -H --color=auto ' latch*' || true; }
hdl_error_noexit $0 "Error(s) occured"
hdl_error_noexit $0 "Error(s) occured"
# Print error messages
# Print error messages
echo "." | { cat *.rpt | grep -v 'Error detection' | grep -H --color=auto 'Error' || true; }
echo "." | { cat *.rpt | grep -v 'Error detection' | grep -H --color=auto 'Error' || true; }
Loading