Created
May 3, 2020 03:04
-
-
Save santileortiz/3ae1715f6c1bb8d0e385e6aef1bd234a to your computer and use it in GitHub Desktop.
Procedure for building Burr Tools in elementary OS
This file contains hidden or 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
- Install dependencies | |
$ sudo apt-get install libfltk1.3-dev install libboost-all-dev libxmu-dev | |
- Go to src/Makefile.am and add -lboost_system to LDADD, should be | |
LDADD= $(GUI_LD_ADD) $(XML_LD_ADD) $(PTHREAD_LD_ADD) -lboost_system | |
- Run regeneate makefiles with | |
$ aclocal; automake | |
- Run configure | |
$ ./configure --with-boost-libdir=/usr/lib/x86_64-linux-gnu | |
- Run Make | |
$ make | |
- Run Burr Tools! | |
$ ./src/gui/burrGui |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment