mirror of
https://git.freebsd.org/ports.git
synced 2025-06-13 08:40:39 -04:00
lathes, 3d printers, laser cutters, plasma cutters, robot arms, hexapods, and more. - Accepts G-code input, drives CNC machines in response. - Active user community. - Several different GUIs available. - Compatible with many popular machine control hardware interfaces. - Supports rigid tapping, cutter compensation, and many other advanced control features. WARNING: This port is simulation-only for now. WWW: http://linuxcnc.org/
17 lines
606 B
Bash
17 lines
606 B
Bash
--- tests/build/header-sanity/test.sh.orig 2016-06-25 02:19:12 UTC
|
|
+++ tests/build/header-sanity/test.sh
|
|
@@ -5,12 +5,12 @@ for i in $HEADERS/*.h; do
|
|
case $i in
|
|
*/rtapi_app.h) continue ;;
|
|
esac
|
|
- gcc -DULAPI -I$HEADERS -E -x c $i > /dev/null
|
|
+ cc -DULAPI -I$HEADERS -I/usr/local/include -E -x c $i > /dev/null
|
|
done
|
|
for i in $HEADERS/*.h $HEADERS/*.hh; do
|
|
case $i in
|
|
*/rtapi_app.h) continue ;;
|
|
*/interp_internal.hh) continue ;;
|
|
esac
|
|
- g++ -DULAPI -I$HEADERS -E -x c++ $i > /dev/null
|
|
+ c++ -DULAPI -I$HEADERS -I/usr/local/include -E -x c++ $i > /dev/null
|
|
done
|