| Thanks Arthur, very useful to read. In the meantime I managed to make it work and documented it also, see below. Hopefully useful for others in the future. Best, Robert // Procedure to build the current master branch version of SuperCollider for OS X 10.9 0. assumed: a working version of git 1. install Xcode & Command Line Tools from https://developer.apple.com/downloads/ (note: typing 'xcode-select --install’ in terminal and hitting the install button that comes up seems not to work according to some post I read, so better to download directly from the Apple website) 2. accept the Xcode license in terminal: sudo xcodebuild -license 3. install the MacPorts software from https://www.macports.org/install.php (this will only install the framework) 4. install the necessary ports individually in the terminal: a. terminal: sudo port install cmake b. terminal: sudo port install readline c. terminal: sudo port install qt4-mac https://guide.macports.org/#using.port.install 5. create a folder ‘supercollider’ somewhere on your system 6. terminal: cd supercollider git clone --recursive https://github.com/supercollider/supercollider.git 7. terminal: cd supercollider git submodule init git checkout master mkdir build cd build cmake -DREADLINE_INCLUDE_DIR=/opt/local/include -DREADLINE_LIBRARY=/opt/local/lib/libreadline.dylib .. sudo make install (I added sudo because the process creates the resulting build in the directory /usr/local/ which you need permission to write into) https://raw.githubusercontent.com/supercollider/supercollider/master/README_OS_X.md https://github.com/supercollider/supercollider/tree/master // Robert van Heumen Composer and improvising musician http://west28.nl/ http://shackle.eu/ "Nothing is original. Steal from anywhere that resonates with inspiration or fuels your imagination. Devour old films, new films, music, books, paintings, photographs, poems, dreams, random conversations, architecture, bridges, street signs, trees, clouds, bodies of water, light and shadows. Select only things to steal from that speak directly to your soul. If you do this, your work (and theft) will be authentic. Authenticity is invaluable; originality is nonexistent. And don't bother concealing your thievery - celebrate it if you feel like it. In any case, always remember what Jean-Luc Godard said: "It's not where you take things from - it's where you take them to.” " Jim Jarmusch On 22 Dec 2014, at 20:45, Arthur Sauer <arthur@xxxxxxxxxxxxxx> wrote: Here is what I use (there might be some Dutch in it...) |