linuxCNC是开源的数控系统控制软件,在国外使用的比较多,在国内大多在学校中存在。
编译linuxCNC并不像官方给的ReadME那样简单,中间会出很多的错误
官方给的./autogen.sh
然后 ./configure --with-realtime=uspace (不带实时系统和控制) --without-libusb-1.0 --without-libmodbus --disable-gtk
1 tcl lib not found
apt-get install tcl8.4-dev
2 tkConfig not found
apt-get install tk-dev
3 BWidget not found
apt-get install bwidget
4 error:Tk img::png not found!
apt-get install libtk-img
apt-get install tclx
5 error Required library 'readline' missing
apt-get install libreadline-dev
6 No module named _tkinter
apt-get install python-tk
apt-get install libxaw7-dev
7 error:boost::Python is required to build LinuxCNC
apt-get install libboost-python-dev
8 error required OpenGL header missing
apt-get install python-opengl
待续。。。