-
Notifications
You must be signed in to change notification settings - Fork 134
/
Copy pathsetup.py
267 lines (228 loc) · 8.71 KB
/
setup.py
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
# -*- coding: utf-8 -*-
"""
Copyright 2009-2023 Olivier Belanger
This file is part of pyo, a python module to help digital signal
processing script creation.
pyo is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
pyo is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with pyo. If not, see <http://www.gnu.org/licenses/>.
"""
from setuptools import setup, Extension
import os, sys, subprocess, platform, glob, shutil
if sys.platform == "win32":
with open("setup.cfg", "w") as f:
f.write("[build]\ncompiler = mingw32")
build_with_jack_support = False
compile_externals = False
win_arch = platform.architecture()[0]
macros = []
extension_names = ["pyo._pyo"]
extra_macros_per_extension = [[]]
if "--use-double" in sys.argv:
sys.argv.remove("--use-double")
extension_names.append("pyo._pyo64")
extra_macros_per_extension.append([("USE_DOUBLE", None)])
if "--no-messages" in sys.argv:
sys.argv.remove("--no-messages")
macros.append(("NO_MESSAGES", None))
if "--compile-externals" in sys.argv:
compile_externals = True
sys.argv.remove("--compile-externals")
macros.append(("COMPILE_EXTERNALS", None))
if "--debug" in sys.argv:
sys.argv.remove("--debug")
gflag = ["-g3", "-UNDEBUG"]
else:
gflag = ["-g0", "-DNDEBUG"]
if "--fast-compile" in sys.argv:
sys.argv.remove("--fast-compile")
oflag = ["-O0"]
else:
oflag = ["-O3"]
# Specific audio drivers source files to compile
ad_files = []
obj_files = []
libraries = []
# Special flag to build without portaudio, portmidi and liblo deps.
if "--minimal" in sys.argv:
sys.argv.remove("--minimal")
else:
# portaudio
macros.append(("USE_PORTAUDIO", None))
ad_files.append("ad_portaudio.c")
libraries.append("portaudio")
# portmidi
macros.append(("USE_PORTMIDI", None))
ad_files.append("md_portmidi.c")
ad_files.append("midilistenermodule.c")
libraries.append("portmidi")
# liblo
macros.append(("USE_OSC", None))
ad_files.append("osclistenermodule.c")
obj_files.append("oscmodule.c")
libraries.append("liblo" if sys.platform == "win32" else "lo")
# libsndfile
libraries += ["sndfile"]
# Optional Audio / Midi drivers
if "--use-jack" in sys.argv:
sys.argv.remove("--use-jack")
build_with_jack_support = True
macros.append(("USE_JACK", None))
if "--jack-force-old-api" in sys.argv:
sys.argv.remove("--jack-force-old-api")
macros.append(("JACK_OLD_API", None))
else:
# Don't use the old API anymore
macros.append(("JACK_NEW_API", None))
ad_files.append("ad_jack.c")
if "--use-coreaudio" in sys.argv:
sys.argv.remove("--use-coreaudio")
macros.append(("USE_COREAUDIO", None))
ad_files.append("ad_coreaudio.c")
# Source files
path = "src/engine"
files = [
f for f in os.listdir(path)
if not f.startswith("ad_") and
not f.startswith("md_") and
"listener" not in f
] + ad_files
source_files = [os.path.join(path, f) for f in files]
path = "src/objects"
files = [
f for f in os.listdir(path) if "oscmodule" not in f
] + obj_files
if compile_externals:
source_files = source_files + ["externals/externalmodule.c"] + [os.path.join(path, f) for f in files]
else:
source_files = source_files + [os.path.join(path, f) for f in files]
# Platform-specific build settings for the pyo extension(s).
if sys.platform == "win32":
pkgs_3rdpary = {
#package flags: (include, lib, bin)
"FLAC": (False, False, True),
"liblo": (True, True, True),
"ogg": (False, False, True),
"sndfile": (True, True, True),
"vorbis": (False, False, True),
"opus": (False, False, True),
"portaudio": (True, True, True),
"portmidi": (True, True, True),
"libmp3lame": (False, False, True),
"mpg123": (False, False, True)
}
# We can't use relative path fot vcpkg because the build system copies the entire repo
# in a temp folder and build from there. VCPKG_ROOT should be defined to build on a user computer.
vcpkg_root = os.environ.get("VCPKG_ROOT", r"C:\Users\belan\git\vcpkg")
vcpkg_packages_root = os.environ.get("VCPKG_PACKAGES_ROOT", os.path.join(vcpkg_root, "installed"))
vcpkg_triplet = os.environ.get("VCPKG_DEFAULT_TRIPLET", "x64-windows")
msys2_mingw_root = os.environ.get("MSYS2_MINGW_ROOT", r"C:\msys64\mingw64")
include_dirs = ["include"]
library_dirs = []
binary_dirs = []
if win_arch == "32bit":
print("setup.py is no more configured to compile on 32-bit windows.")
sys.exit()
else:
# newer vcpkg stores unified deps in root/installed/triplet/(include|bin|lib)
vcpkg_shared_base = os.path.join(vcpkg_packages_root, vcpkg_triplet)
include_dirs.append(os.path.join(vcpkg_shared_base, "include"))
library_dirs.append(os.path.join(vcpkg_shared_base, "lib"))
binary_dirs.append(os.path.join(vcpkg_shared_base, "bin"))
include_dirs.extend([
os.path.join(msys2_mingw_root, "include"),
"include",
])
libraries.append("sndfile")
elif sys.platform == "darwin":
pkgs_3rdpary = {
#package flags: (include, lib, version)
"flac": (False, True, "1.5.0"),
"liblo": (True, True, "0.32"),
"libogg": (False, True, "1.3.5"),
"libsndfile": (True, True, "1.2.2_1"),
"libvorbis": (False, True, "1.3.7"),
"opus": (False, True, "1.5.2"),
"portaudio": (True, True, "19.7.0"),
"portmidi": (True, True, "2.0.4_1"),
"lame": (False, True, "3.100"),
"mpg123": (False, True, "1.32.10"),
}
mac_arch = arch = platform.machine()
if mac_arch == "arm64":
brew_default_root = "/opt/homebrew/Cellar"
else:
brew_default_root = "/usr/local/Cellar"
brew_packages_root = os.environ.get("BREW_PACKAGES_ROOT", brew_default_root)
include_dirs = ["include"]
library_dirs = []
for pkg, req in pkgs_3rdpary.items():
pkg_dir = os.path.join(brew_packages_root, pkg, req[2])
if req[0]:
include_dirs.append(os.path.join(pkg_dir, "include"))
if req[1]:
library_dirs.append(os.path.join(pkg_dir, "lib"))
else:
include_dirs = ["include", "/usr/include", "/usr/local/include"]
libraries += ["rt"]
library_dirs = ["/usr/lib", "/usr/local/lib"]
if build_with_jack_support:
libraries.append("jack")
# Platform-specific data files
dlls = []
data_files = []
if sys.platform == "win32":
for bind in binary_dirs:
dlls.extend(glob.glob(os.path.join(bind, "*.dll")))
dlls = [item for item in dlls if "FLAC++" not in item] # Lame: remove this manually
dlls.extend(glob.glob(os.path.join(msys2_mingw_root, "bin", "lib*pthread*.dll")))
elif sys.platform == "darwin":
if "bdist_wheel" in sys.argv:
dylibs = []
for bind in library_dirs:
dylibs.extend(glob.glob(os.path.join(bind, "*.dylib")))
dylibs = [dylib for dylib in dylibs if not os.path.islink(dylib)]
dylibs = [os.path.relpath(dylib) for dylib in dylibs if "FLAC++" not in dylib and "portaudiocpp" not in dylib]
data_files = (("/pyo", dylibs),)
libraries += ["m"]
extra_compile_args = ["-Wno-strict-prototypes", "-Wno-strict-aliasing", "-Wno-incompatible-pointer-types"] + oflag + gflag
extensions = []
for extension_name, extra_macros in zip(extension_names, extra_macros_per_extension):
extensions.append(
Extension(
extension_name,
source_files,
libraries=libraries,
library_dirs=library_dirs,
include_dirs=include_dirs,
extra_compile_args=extra_compile_args,
define_macros=macros + extra_macros,
)
)
if compile_externals:
include_dirs.append("externals")
os.system("cp externals/external.py pyo/lib/")
# Copy dlls to package to pyo folder
if sys.platform == "win32":
for dll in dlls:
shutil.copy(dll, "pyo/")
setup(
ext_modules=extensions,
# To install files outside the package (third-party libs).
data_files=data_files,
)
if compile_externals:
os.system("rm pyo/lib/external.py")
if sys.platform == "win32" and os.path.isfile("setup.cfg"):
os.remove("setup.cfg")
# Remove packaged dlls from pyo folder
if sys.platform == "win32":
for dll in dlls:
os.remove(os.path.join("pyo", os.path.basename(dll)))