forked from LinuxCNC/linuxcnc
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed the build system to first make the lcnc original version, aft…
…er that the cmake build system overwrites it. This because of several .comp files that halcompiles refuses to compile for now on some pc's.
- Loading branch information
1 parent
393484b
commit cad3454
Showing
6 changed files
with
105 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/sh | ||
|
||
sudo apt-get install dpkg-dev | ||
|
||
echo "Check what dependencies has to be installed. \n" | ||
cd .. | ||
cd debian | ||
./configure uspace | ||
cd .. | ||
dpkg-checkbuilddeps | ||
|
||
echo "Now run : $ sudo apt-get install ... to install your deps. \n" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
virtual machine installed with debian 12. | ||
|
||
# Outcomment search from cd, to install new stuff. | ||
sudo nano /etc/apt/sources.list | ||
|
||
# For ./autogen to work, we need automake. | ||
sudo apt-get install git cmake automake | ||
|
||
sudo apt-get install libudev-dev libmodbus-dev libusb-1.0-0-dev libgpiod-dev libgtk-3-dev libgtk2.0-dev | ||
|
||
sudo apt-get install libglib2.0-dev yapps2 intltool libboost-dev python3-dev bwidget | ||
sudo apt-get install libboost-python-dev tklib tcl8.6-dev tk-dev bwidget tclx libreadline-dev libeditreadline-dev | ||
sudo apt-get install python3-tk tclx | ||
|
||
git clone https://github.com/grotius-cnc/linuxcnc.git | ||
cd linuxcnc/cmake | ||
./build_all | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/sh | ||
|
||
echo "Start halshow. \n" | ||
cd .. | ||
cd scripts | ||
./rip-environment halshow | ||
|
||
echo "start linuxcnc server program." | ||
linuxcncsrv | ||
# Start emc server program. /bin/linuxcncsrv | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/sh | ||
|
||
echo "Start linuxcnc. \n" | ||
cd .. | ||
cd scripts | ||
./rip-environment linuxcnc ../configs/sim/axis/axis_mm.ini | ||
|