1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686
|
Csound Build Instructions
=========================
Build instructions for building Csound from the source packages for the
following operating systems
- [Debian/Ubuntu Linux](#debian)
- [Mac OS X using Homebrew](#OSXHomebrew)
- [General Instructions for Linux without Root access](#generalLinux)
- [Raspberry PI standard OS](#raspian)
- [Fedora 18](#fedora)
- [Windows 32/64 bit using MYSYS (recommended)](#msys2)
- [Windows (Mingw32)](#mingw32)
- [Windows Visual Studio](#msvs)
- [Android](#android)
Instructions for RPI compiled by Dominic Melville contact via dcamelville at gmail.com
for amendments and updates
Debian/Ubuntu <a name="debian">
--------------
The following instructions will explain how to configure, compile, and install
Csound 6 on Debian and Ubuntu systems.
### Requirements
You will need root access, primarily to allow installation of dependencies
required for building Csound, as well as for installing into /usr/local.
### Building Csound 6
The following instructions are written for those getting a copy of the source code from Git.
You will need to adjust the steps accordingly when using the source tarball from
the files section.
The first thing to do is make sure you have all of the required dependencies for
building Csound. In a terminal, do the following:
1. Edit, as root, `/etc/apt/sources.list` and ensure that each line beginning with `deb` has another line below it that is identical except that `deb` is replaced with `deb-src`. Then run `sudo apt-get update`.
1. `sudo apt-get build-dep csound`
2. `sudo apt-get install cmake`
3. `sudo apt-get install git `
The following numbered steps are to be done in a terminal for building and
installing Csound:
1. `cd ~ `
2. `mkdir csound`
3. `cd csound`
4. `git clone https://github.com/csound/csound.git csound`
5. `mkdir cs6make `
6. `cd cs6make `
7. `cmake ../csound`
8. `make -j6 `
9. `sudo make install `
10. `sudo ldconfig `
At this point, Csound 6 should now be compiled and installed into the /usr/local
set of folders.
macOS using Homebrew <a name="OSXHomebrew">
-----------------------
### Introduction
Homebrew is a package manager for macOS. It is able to download, build, and
install applications, including their dependencies. The following sections will
describe what you will need to do to use Homebrew to install Csound 6.
### Requirements
- Xcode
- Xcode Command-Line Tools
- Homebrew - [https://brew.sh][2]
[2]: <https://brew.sh>
#### Installing Homebrew
You will first need to have a working Homebrew setup. This
requires installing Xcode and the Xcode Command-Line tools. More information on
installing Homebrew is available on the Homebrew website as well as their wiki.
In particular, you will need to be mindful to enable user read/write for three
directories: "/usr/local", "/Library/Python/2.7/site-packages", and
"/Library/Java/Extensions". These need to be writable by the user as Csound will
need to install packages into each of those folders. Running the following
commands at a Terminal prompt should allow you to do this:
`sudo chmod +a 'user:YOUR_NAME_HERE allow
add_subdirectory,add_file,delete_child,directory_inherit'
/Library/Python/2.7/site-packages `
`sudo chmod +a 'user:YOUR_NAME_HERE allow
add_subdirectory,add_file,delete_child,directory_inherit'
/Library/Java/Extensions `
where YOUR_NAME_HERE refers to your system username.
### Installing Csound
Once Homebrew is setup, run the following command at the commandline to install Csound:
`brew install csound`
You can install the latest from the develop branch using:
`brew install --HEAD csound`
If you have a HEAD version already installed and you want to rebuild with newly updated code in the develop branch, use:
`brew reinstall csound`
### Building Csound using Homebrew-supplied dependencies
If you would like to compile csound on macOS, you need to have its dependencies installed.
You can do this manually picking out various packages from Homebrew or you can use the csound
formula to install the dependencies using
`brew install --only-dependencies csound`
This installs all of the tools and libraries that is required to build csound and various plugins. After installing dependencies, you can use cmake to build:
1. Clone the csound source from github and `cd` into the root of the csound folder.
2. `mkdir build`
3. `cd build`
4. `cmake ..`
5. `make -j6`
6. `make install`
For step 4, you can use `cmake .. -G Xcode` if you then want to build Csound with XCode. Step 6 may require the use of `sudo` depending on permissions. Note that building from source installs into different paths on the system compared to where the Homebrew-built version of Csound is installed to. It is recommended to `brew uninstall csound` prior to building, installing, and using your self-compiled version of Csound.
<!--### Known Issues -->
<!--There is currently a warning issued when Csound installs:-->
<!--`Warning: Could not fix CsoundLib64.framework/Versions/6.0/CsoundLib64 in-->
<!--/usr/local/Cellar/csound/HEAD/bin/srconv `-->
<!--`Warning: Could not fix CsoundLib64.framework/Versions/6.0/CsoundLib64 in-->
<!--/usr/local/Cellar/csound/HEAD/bin/sndinfo `-->
<!--`Warning: Could not fix CsoundLib64.framework/Versions/6.0/CsoundLib64 in-->
<!--/usr/local/Cellar/csound/HEAD/bin/scsort `-->
<!--`Warning: Could not fix CsoundLib64.framework/Versions/6.0/CsoundLib64 in-->
<!--/usr/local/Cellar/csound/HEAD/bin/scope `-->
<!--....-->
<!--This is due to how the CsoundLib64.framework is installed into-->
<!--~/Library/Frameworks and bypasses Homebrew's installation path for Frameworks.-->
<!--This is a known issue and will be looked into.-->
General Linux without Root access <a name="generalLinux">
---------------------------------
These are generic instructions to build on any Linux system with no root access.
These instructions require a full development system (compilers, flex, bison,
cmake). For RT audio you need to make sure you have the alsa headers / lib
installed.
### 1) set up your local directory
This creates three directories in your HOME directory and adds your local lib
directory to dynamic library path. Note that this last step needs to be
performed every time you open a new terminal, otherwise the installed Csound
will not find its dynamic library dependencies. If you add that line to your
HOME/.profile script, it will be run automatically when you start a new
terminal. $ $
- `cd `
- `mkdir include `
- `mkdir lib `
- `mkdir bin `
- `mkdir src`
- `export LD_LIBRARY_PATH=$HOME/lib:LD_LIBRARY_PATH `
(this last command can be added to your $HOME/.profile file for convenience)
### 2) get and install libsndfile
Libsndfile is the only required dependency for a basic Csound build.
Ubuntu users: it appears the libsndfile binaries come as default in your
installation, so this step might not be required. However, there is no harm in
doing it.
- `cd src `
- `wget http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.28.tar.gz `
- `tar xf libsndfile-1.0.28.tar.gz`
- `cd libsndfile-1.0.28 `
- `./configure --prefix=$HOME`
- `make install `
### 3) get Csound (latest from git)
The latest Csound sources are kept in the develop branch. For the latest
released sources, you do not need to change branches.
- `cd ..`
- `git clone https://github.com/csound/csound.git csound `
- `cd csound`
- `git checkout develop`
- `mv Custom.cmake.ex Custom.cmake `
### 4) set the include path for the build
Cmake needs to find your locally-installed headers in HOME/bin. You can add
custom commands to Cmake by using a Custom.cmake file, which Cmake will read if
it exists.
Open or create the Custom.cmake file in the top level Csound sources directory
and add the following line: `include_directories("ENV{HOME}/include") `
### 5) build and install Csound
The recommended method is to create a separate build directory and run cmake
there.
- `mkdir build`
- `cd build `
- `cmake -DCMAKE_INSTALL_PREFIX=$HOME ..`
- `make install `
### Notes
This builds a basic system. If you add dependencies to your HOME directories,
then you can run make again to build them. The csound command-line frontend will
be installed in $HOME/bin, the libraries in $HOME/lib and the include files in
$HOME/include. The plugin dir is in $HOME/lib/csound/plugins64-6.0.
### Dependencies List
If the dependency you are adding uses ./configure, you can use the
same parameters to it as explained in step 2. If it uses cmake, you
can use the same parameters as in step 5. After adding dependencies to
your $HOME directories, you can run cmake again to re-build
Csound. Check the printed output to see if the added dependency has
switched on the build of the desired component.
NB: Since the EOL for Python 2, the Python opcodes have been removed
from the main library repository. A new set of opcodes for Python 3 is
found in the plugin opcodes repository.
#### OSC opcodes
liblo - http://liblo.sourceforge.net/ NB: the build for version 0.28 seems to be broken.
#### Fluid opcodes
Fluidsynth - http://sourceforge.net/apps/trac/fluidsynth/ NB: cmake might need to be coerced into finding the fluidsynth headers once it is built. For that, you can use the following cmake command (see step 5):
`cmake -DCMAKE_INSTALL_PREFIX=$HOME -DFLUIDSYNTH_H=$HOME/include ..`
#### Portaudio module
portaudio - http://www.portaudio.com/
#### Portmidi module
portmidi - http://portmedia.sourceforge.net/portmidi/
#### JACK module
Jack connection kit - http://jackaudio.org/
#### Python bindings
Python headers / library - http://www.python.org
#### Java bindings
swig - http://www.swig.org/ Java SDK - http://www.oracle.com/technetwork/java/javase/downloads/index.html
Raspberry Pi Standard Distro <a name="raspian">
-----------------------------
### (Raspian Wheezy)
Preliminary step:
`sudo apt-get build-dep csound `
If you get the following error:
`E: You must put some 'source' URIs in your sources.list `
then add the following line to /etc/apt/sources.list:
`deb-src http://mirrordirector.raspbian.org/raspbian/ wheezy main contrib
non-free rpi `
(This can be done with nano)
It might appear that this repository is not available anymore.
In this case, you can try adding the following repository (and equivalent deb-src) to /etc/apt/sources.list :
` deb http://legacy.raspbian.org/raspbian/ wheezy main contrib non-free rpi`
After adding that to the sources.list, you should run `sudo apt-get
update ` and retry the `sudo apt-get build-dep csound` command.
Following this, you can build as in other linux systems,
1. `mkdir csound`
2. `cd csound`
3. `git clone https://github.com/csound/csound.git csound`
4. `mkdir cs6make`
5. `cd cs6make`
6. `cmake ../csound -DCMAKE_BUILD_TYPE="Release"`
7. `make -j6`
If this last step fails, check he section "NEON support for PFFFT lib"
below. Once you are past it, you can complete the installation,
9. `sudo make install`
10. `sudo ldconfig `
If you want to use the csnd6 Python library, add the following line to .bashrc:
`export PYTHONPATH=/usr/local/lib`
Enabling the Python Bindings requires swig and python-dev packages to be installed with
`sudo apt-get install swig python-dev`
### NEON support for PFFFT lib
From 6.07, Csound includes a choice of FFT libraries. One of these is
PFFFT, which can avail of NEON vector operations on arm, where these
exist. This can lead to a compilation error if the correct options are
not set. If a build error occurs in the compilation of pffft.c, two
options exist.
1. Try to add the correct flags for NEON compilation. This can be made
by editing the top-level file Custom.cmake.ex, and saving it as
Custom.cmake. In that file, the line
`set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -W -Wall -mtune=core2")`
should be changed to
`set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mfloat-abi=hard -mfpu=neon")`
2. If this step fails, there might be no NEON support for your arm chip,
or there might be a compiler issue, in which case, you need to change the line above to
`set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DPFFFT_SIMD_DISABLE")`
in order to disable the vectorial code and use standard C scalar
operations.
**There is no support for NEON on rpi 1 or zero. This is available for
rpi 2 and 3, though.**
3. Remember to run cmake again (step 6 above) after any changes to Custom.cmake
Fedora 18 <a name="fedora">
---------
### Introduction
This shows how to download the source code from Sourceforge, and build Csound 6
from sources.
### Requirements
For some steps, you'll need root access. You may need to install additional
packages - the example shows installing a number of additional packages, but the
exact requirements depend on your system.
You'll need to make sure Cmake, flex, bison, and libsndfile are installed. If
you're logged in as a non-root user, you can execute root commands using su -c.
So here's how to make sure the basic required packages for building are
installed:
`su -c "yum install cmake libsndfile libsndfile-devel flex bison" `
You'll be prompted for your root password.
### Downloading
Download the latest Csound 6 sources from
[https://sourceforge.net/projects/csound/files/csound6/ ][3]
[3]: <https://sourceforge.net/projects/csound/files/csound6/ >
At the time this was written, the downloaded file was Csound6.00.1.tar.gz
### Compiling
First uncompress and untar the source code:
`gunzip Csound6.00.1.tar.gz `
`tar xf Csound6.00.1.tar.gz `
Change into the source directory
`cd Csound6.00.1`
In the source directory what gets compiled is controlled by the file
CMakeLists.txt. By default lots of stuff will get built, as long as you have the
required dependencies installed.
The following commands will add most required packages:
`su - `
`yum install ladspa ladspa-devel `
`yum install fluidsynth fluidsynth-devel `
`yum install boost boost-devel java-devel `
`yum install jack-audio-connection-kit-devel `
`yum install fltk fltk-devel `
`yum install swig swig-devel `
`yum install pulseaudio-libs-devel `
`yum install portaudio portmidi portaudio-devel portmidi-devel `
`yum install fltk-fluid `
`yum install stk stk-devel `
`yum install python-libs `
`yum install python-devel `
`yum install liblo liblo-devel `
`yum install lua lua-devel `
`yum install eigen3-devel eigen3 `
`yum install gmm-devel `
`yum install wiiuse wiiuse-devel `
`yum install bluez-libs-devel `
`exit `
The building process takes two steps
1. use cmake to create a Makefile
2. use make to build Csound 6
To create the Makefile:
`cmake ./ `
At this point you may see messages saying that something can't be built - in
that case use your skill and judgement to work out which packages are missing.
For instance if you get a message saying fltk cannot be built, you could install
the fltk-devel package.
If you install a new package, you'll need to run cmake again:
`rm CMakeCache.txt `
`cmake ./ `
When you're happy, run make
`make `
This builds the csound library.
### Installing
By default, Csound 6 will install in /usr/local, so you'll need root
permissions:
`su -c "make install" `
Finally you need to make sure the library can be found by the linker
`su - `
`cd /etc/ld.so.conf.d `
`touch csound6.conf `
`gedit csound6.conf `
In the editor, add one line
`/usr/local/lib `
and close the file.
Finally update the linker search path
`ldconfig `
and log out of root
`exit `
Testing As a basic test, just try typing csound at a command prompt, and you
should get the help message.
Windows 32/64 Bit (msys2) <a name="msys2">
---------------
Csound for Windows can now be built using MSYS2. This is the recommeneded way to build Csound for Windows. Please follow the instruction posted [here](https://github.com/csound/csound/tree/develop/mingw64).
Windows 32 Bit (mingw32) <a name="mingw32">
---------------
A basic working knowledge of the Windows command prompt is assumed. Further instructions for Windows can be found in their own document at the following link [Csound Windows Build Doc][1]
[1]: <https://github.com/csound/csound/blob/develop/How_to_Build_Csound_on_Windows.doc>
### Steps (Vanilla build)
1. Download and install MSYS (http://downloads.sourceforge.net/mingw/MSYS-1.0.11.exe)
2. Download and install MinGW (http://sourceforge.net/projects/mingwbuilds).
-When installing choose architecture i686, or x32.
3. Download and install Git(http://git-scm.com/download/win)
4. Download and install libsndfile (32bit) (http://www.mega-nerd.com/libsndfile/)
5. Download and install cmake (http://www.cmake.org/download/)
Open the Windows command prompt and cd to a folder you wish to create your Csound repository in. Then run:
`git clone https://github.com/csound/csound.git`
`cd csound`
`mkdir build`
`cd build`
Then run cmake-gui from the command line:
`cmake-gui`
To the right of 'Where is the source code:' in cmake-gui browse for the Csound source directory. Underneath it, at the "Where to build the binaries" select the newly created build directory. Now type sndfile into the search field and you should see a few cmake entries concerned with libsndfile. Browse for the correct include folder and library file; libsndfile-1.dll. With this done hit configure. At this point you may be greeted with a cmake-gui dialogue asking which generator to use. Select the "MinGW Makefiles" generator. If the configuration command fails you may need to set the CMAKE_C_COMPILER and CMAKE_CXX_COMPILER entries. Simply click the add entry button and add two new FILEPATH entries, CMAKE_C_COMPILER should point towards your installed gcc.exe, and CMAKE_CXX_COMPILER should point towards g++.exe. These files are found in your MinGW/bin directory.
Go back to the command prompt and from your build directory run:
`mingw32-make`
If everything went Ok, you will now have binaries for most vanilla build of Csound possible. Keep reading if you wish to extend this basic build.
### Steps (adding realtime audio and MIDI)
1. Download portaudio (http://portaudio.com/).
2. Open MSYS shell and cd to portaudio directory. Then run
3. './configure'
4. 'make'
If you wish to build with support for ASIO run the following command, replacing the path to your ASIO SDK with your own.
'./configure --with-host_os=mingw --with-winapi=asio [--with-asiodir=/usr/local/asiosdk2]'
'make'
If make has any problems, you can try adding the following directories to your ASIOSDK folders:
ASIOSDK2.3\host\pc\.libs
C:\SDKs\ASIOSDK2.3\host\.libs
ASIOSDK2.3\common\.libs
5. Download and portmidi (http://portmedia.sourceforge.net.), Open command prompt and cd to portmidi directory
6. `mkdir build`
7. `cd build`
8. `cmake ../ -G "Mingw Makefiles"`
9. `mingw32-make`
9. Open up cmake once more and make sure the Csound cmake configuration is open. Then search for entries with portaudio and portmidi in them. Browse for the correct include directories for each, and select the libportaudio-2.dll, and libportmidi.dll libraries. Then run configure and generate.
10. Open the command prompt and cd to the Csound build directory. Then run
`mingw32-make`
Download and install cmake
Run cmake from the csound dir and configure Csound to build using MinGW Makefiles. For this minimal you'll need to disable quite a few features.
Run generate.
cd to csound build directory and run mingw32-make
Windows Visual Studio <a name="msvs">
--------------
Instructions can be found [here](https://github.com/csound/csound/blob/develop/platform/windows/README.md).
Android <a name="android">
--------------
Requirements
1. SWIG (www.swig.org)
2. libsndfile sources for android (https://bitbucket.org/kunstmusik/libsndfile-android.git)
3. boost (www.boost.org)
4. Android NDK
### Steps
1. Download, build and install SWIG (or install from your distro package system)
2. Clone the libsndfile sources for android repo,e.g.:
$ cd $HOME
$ mkdir android
$ cd android
$ git clone https://bitbucket.org/kunstmusik/libsndfile-android.git
3. Set the NDK_MODULE_PATH variable to point to the top directory
where the libsndfile sources are located,e.g.
$ export NDK_MODULE_PATH=$HOME/android
4. Download boost and install (headers only) in your include path (e.g. /usr/local/include). There is
no need to build the library.
5. Download the Android NDK and place it somewhere (e.g. $HOME), set the ANDROID_NDK_ROOT
to point to it
$ export ANDROID_NDK_ROOT=$HOME
5. Get Csound, and go to the ./android/CsoundAndroid directory, run
$ sh build.sh
The Java files and NDK libraries will be under CsoundAndroid.
|