forked from tintinnabuli/supercollider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README_OS_X.txt
202 lines (137 loc) · 6.89 KB
/
README_OS_X.txt
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
------------------------------------------------------------------------
Introduction
------------------------------------------------------------------------
This is the Mac OS X version of James McCartney's SuperCollider
synthesis engine (scsynth) and programming language (sclang).
Supercollider's main homepage is at:
http://supercollider.sourceforge.net/
The help files contain a lot of useful information and tutorials for getting
started - see the file "Help.html" for a starting point.
To get further information on SuperCollider usage or development, you
should subscribe to the mailing lists:
http://swiki.hfbk-hamburg.de/MusicTechnology/880
SPECIAL CHARACTERS ON MAC:
Please do not use non-ASCII characters (above code point 127) in your SuperCollider
program path (i.e. the names of the folders containing SuperCollider).
Doing so will break options to open class or method files automatically.
------------------------------------------------------------------------
Compiling SuperCollider from the source code
------------------------------------------------------------------------
Requirements:
* Mac OS X 10.4.9 or greater
* Cmake 2.7 or greater
* Xcode Tools 2.4.1 or greater
* Qt 4: http://qt.nokia.com/downloads/qt-for-open-source-cpp-development-on-mac-os-x/
To build SuperCollider with Cmake, it is recommended to create a "build"
folder (to keep the built files neatly all together) in the root of the
SuperCollider source, then run "cmake" from within that folder. Like this:
cd ~/SuperCollider3/
mkdir build
cd build
cmake ..
Then to run the build process run:
make install
This will build the software, then "install" it to a folder "SuperCollider" under
CMAKE_INSTALL_PREFIX, which defaults to "<build-directory>/Install",
with the finished products in. You might like to move the "SuperCollider"
folder into your /Applications folder or install it there directly by
passing "-DCMAKE_INSTALL_PREFIX=/Applications" to cmake.
The build process can be configured using the cmake program, cmake
frontends like "ccmake" or "cmake-gui", or by simply editing the
build/CMakeCache.txt file.
For example, by default cmake will create a "release" build, but if you want a
"debug" build (with optimisations turned off etc), configure cmake like this:
cmake -DCMAKE_BUILD_TYPE=Debug ..
By default the SCClassLibrary is copied into place. There is a cmake option to create
symlinks of the SCClassLibrary instead so that changes to code in the class library are reflected in git.
To turn on the symlinking do:
cmake -DSC_SYMLINK_CLASSLIB=ON ..
For a 32bit build on a 64bit machine (i.e. recent Mac systems), you need to
configure cmake like this:
cmake -DCMAKE_OSX_ARCHITECTURES='i386' ..
For the BIG universal binary (on 10.6), use:
cmake -DCMAKE_OSX_ARCHITECTURES='i386;x86_64' ..
Qt GUI:
-------
By default the new Qt GUI support will be built into sclang and
SuperCollider application. If you want to build without it, configure
cmake like this:
cmake -DSC_QT=OFF ..
Standalones:
------------
To create a "standalone" app using cmake, you need to use the "standalone" flag.
For example, to create a standalone whose name is MyFabApp:
cmake -D standalone="MyFabApp" ..
This builds like normal but names the finished program "MyFabApp" and includes
any special resources you might have created in the folder
"platform/mac/MyFabApp Resources" (or, if that doesn't exist, it just uses
"platform/mac/Standalone Resources").
If you've built a standalone and want to go back to normal build mode, just
set that value as an empty string:
cmake -D standalone="" ..
------------------------------------------------------------------------
On libsndfile
------------------------------------------------------------------------
Compiling a universal binary of libsndfile requires access to both a
i386 and PPC Mac. The reasons for this are described here:
http://www.mega-nerd.com/libsndfile/FAQ.html#Q018
Because of this, libsndfile is included with the source as a precompiled
universal binary. This UB contains ppc, i386 and x86_64 archs.
------------------------------------------------------------------------
Building - 10.6 and 64-bit scsynth and plugins
------------------------------------------------------------------------
*** THIS IS OUTDATED, cmake on 10.6 will build 64-bit by default ***
You will need to do the following to build a 64-bit scsynth and plugins.
* Open the XCode projects for Synth AND Plugins
* Double-click each target, and change the
* Architectures setting to 'Standard (32-bit/64-bit Universal)'
* Base-SDK to 10.5
* (optional and recommended): Compiler to GCC 4.2 (if available)
This definitely works in Mac OS 10.6, probably 10.5, and these builds will NOT
support 10.4.
XCode in 10.6 uses the GCC 4.2 compiler by default, and this compiler will NOT
work with the 10.4 SDK (the default SDK). You will need to either set your build
SDK to 10.5 or 10.6 inside each XCode project, or inspect (double-click) each
target and set GCC 4.0 as your compiler.
UPDATE - There is now a Deployment32-64 build style that should build
SuperCollider from source out of the box on 10.6. You can also use the compile.sh
script and pass in ARCHS=32_64 as a flag:
./compile.sh ARCHS=32_64
This should build a 32/64 bit version of scsynth and the plugins and a 32-bit
SuperCollider.app. This build style should use the 10.5 SDK by default.
The 10.6 SDK still has some problems. If you are on 10.6, please make sure you
have installed the optional 10.5 SDK, installed with the Apple Developer Tools.
------------------------------------------------------------------------
Building SuperCollider THE OLD WAY (no cmake - just xcode required)
------------------------------------------------------------------------
*** THIS IS OUTDATED, instructions below will not work, use cmake instead ***
Requirements:
* Mac OS X 10.4.9 or greater
* Xcode Tools 2.4.1 or greater.
The easy way:
cd mac
./clean-compile.sh
cd ../../package
./package.sh
Your build will be placed in a directory named "SuperCollider".
If you run into problems building the most likely cause is that you are
not running the correct version of the Xcode tools. You must be running
2.4.1 or above!
Building within Xcode:
There are three projects that should be BUILT IN THIS ORDER:
Synth
- the synthesis server application
Plugins
- the UGens and plugins
Language
- the OS X application with text editor, language interpreter,
event scheduling etc.
The package.sh script does several maintenance tasks (fixing creator
codes, exporting from svn, etc) and creates a ready-to-distribute zip of
SuperCollider.
------------------------------------------------------------------------
Outro
------------------------------------------------------------------------
Thanks to James McCartney, for making this great piece of audio
software publicly and freely available.
------------------------------------------------------------------------