From f6e6d132762ececf94842d1d7be5fa088a9f2bf1 Mon Sep 17 00:00:00 2001 From: David Carley Date: Fri, 12 Mar 2021 07:03:32 -0800 Subject: [PATCH] Silence warnings about unsupported G61, G61.1, G64 --- scripts/gplan-build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/gplan-build.sh b/scripts/gplan-build.sh index ab4ad7f..f770c5e 100755 --- a/scripts/gplan-build.sh +++ b/scripts/gplan-build.sh @@ -4,8 +4,8 @@ cd /mnt/host scons -j 8 -C cbang disable_local="re2 libevent" export CBANG_HOME="/mnt/host/cbang" -perl -i -0pe 's/case 610: setPathMode.*;/case 610: implemented = false; break;/gm' /mnt/host/camotics/src/gcode/ControllerImpl.cpp -perl -i -0pe 's/case 611: setPathMode.*;/case 611: implemented = false; break;/gm' /mnt/host/camotics/src/gcode/ControllerImpl.cpp -perl -i -0pe 's/case 640: {[^}]+}/case 640: implemented = false; break;/gm' /mnt/host/camotics/src/gcode/ControllerImpl.cpp +perl -i -0pe 's/case 610: setPathMode.*;/case 610: break;/gm' /mnt/host/camotics/src/gcode/ControllerImpl.cpp +perl -i -0pe 's/case 611: setPathMode.*;/case 611: break;/gm' /mnt/host/camotics/src/gcode/ControllerImpl.cpp +perl -i -0pe 's/case 640: {[^}]+}/case 640: break;/gm' /mnt/host/camotics/src/gcode/ControllerImpl.cpp scons -j 8 -C camotics gplan.so with_gui=0 with_tpl=0