[Csnd] Compiling CSound on OSX
Date | 2014-03-17 20:03 |
From | Peter van Haaften |
Subject | [Csnd] Compiling CSound on OSX |
Greetings,
I'm new to Csound. I'm trying to compile Csound6 on OSX 10.8, and I've been following these directions... http://www.csounds.com/manual/html/BuildingCsound.html So I did a git pull. Can anyone tell me, where in the /csound6-git hierarchy, the SConstruct file is held? Many thanks, PVH |
Date | 2014-03-17 20:07 |
From | Steven Yi |
Subject | Re: [Csnd] Compiling CSound on OSX |
Hi Peter, Those instructions are out of date and apply to Csound 5. Csound 6 uses CMake. If you use the develop branch (git checkout develop), there is a new BUILD.md file that has instructions, but I realize now that it is only for Homebrew and not commandline builds. For OSX, you can do this: 1. cd csound6-git 2. mkdir build 3. cd build 4. cmake .. 5. make -j6 6. make install You'll need to install CMake[1], as well as have libsndfile built and installed. Reply here if you have further questions. Good luck! steven [1] - http://cmake.org On Mon, Mar 17, 2014 at 4:03 PM, Peter van Haaften |
Date | 2014-03-17 20:25 |
From | joachim heintz |
Subject | Re: [Csnd] Compiling CSound on OSX |
perhaps this collection can help too: http://sourceforge.net/p/csound/wiki/Home/ joachim Am 17.03.2014 21:07, schrieb Steven Yi: > Hi Peter, > > Those instructions are out of date and apply to Csound 5. Csound 6 > uses CMake. If you use the develop branch (git checkout develop), > there is a new BUILD.md file that has instructions, but I realize now > that it is only for Homebrew and not commandline builds. > > For OSX, you can do this: > > 1. cd csound6-git > 2. mkdir build > 3. cd build > 4. cmake .. > 5. make -j6 > 6. make install > > You'll need to install CMake[1], as well as have libsndfile built and installed. > > Reply here if you have further questions. > > Good luck! > steven > > [1] - http://cmake.org > > On Mon, Mar 17, 2014 at 4:03 PM, Peter van Haaften |
Date | 2014-03-17 20:38 |
From | Victor Lazzarini |
Subject | Re: [Csnd] Compiling CSound on OSX |
and we need to remove or change that manual page as soon as possible! ======================== Dr Victor Lazzarini Senior Lecturer NUI Maynooth, Ireland victor dot lazzarini at nuim dot ie On 17 Mar 2014, at 20:25, joachim heintz |
Date | 2014-03-23 00:29 |
From | Jacques Leplat |
Subject | Re: [Csnd] Compiling CSound on OSX |
A big thanks for that Steven. I followed your instructions and got it to build. Regarding libsndfile, there were some problems getting that to compile. In the end I did: brew install libsndfile That installed it on the mac, and your instructions to build sound worked without a hitch. All the best, Jacques On 17 Mar 2014, at 20:07, Steven Yi |