Compiling OpenSCAD with Experimental Carve feature
Hello all
I am trying to streamline CNC production from OpenScad all the way towards GCode generation and visualization with least possible app-jumps.
Heard of peberhard OpenSCAD fork offering such.
Anybody tried/succeeded this? Please lets share experiences/pains
My steps on Mac OSX High Sierra: Following installing OpenSCAD from source on MAC
$ git clone https://github.com/peberhard/openscad.git openscad-src
Add the MCAD library that has many engineering components (https://github.com/openscad/MCAD)
$ cd openscad-src
$ git submodule update --init
Build and Compile with the Carve Plugin: Sets up the environment variables & compile all dependencies:
$ ./setenv_mac.sh
Installing Dependencies with :
$ ./scripts/macosx-build-dependencies.sh
Make:
$ qmake CONFIG+="experimental carving " OPENSCAD_LIBDIR=/usr/local
$ make
All goes fine but on the last step i get an error:
> ApplicationServices are out of sync. Falling back to library file for linking.
> ld: library not found for -lqscintilla2_qt4
What could be wrong? Thanks
Edited by Theodorus Boomsma