forked from dopeyanimation/dopey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SConstruct
207 lines (164 loc) · 8.09 KB
/
SConstruct
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
import os, sys
from os.path import join, basename
from SCons.Script.SConscript import SConsEnvironment
import SCons.Util
EnsureSConsVersion(1, 0)
default_python_binary = 'python%d.%d' % (sys.version_info[0], sys.version_info[1])
default_python_config = 'python%d.%d-config' % (sys.version_info[0], sys.version_info[1])
if sys.platform == "win32":
# usually no versioned binaries on Windows
default_python_binary = 'python'
default_python_config = 'python-config'
if os.path.exists('/etc/gentoo-release'):
print 'Gentoo: /etc/gentoo-release exists. Must be on a Gentoo based system.'
default_python_config = 'python-config-%d.%d' % (sys.version_info[0],sys.version_info[1])
SConsignFile() # no .scsonsign into $PREFIX please
if sys.platform == "darwin":
default_prefix = '/opt/local/'
else:
default_prefix = '/usr/local/'
opts = Variables()
opts.Add(PathVariable('prefix', 'autotools-style installation prefix', default_prefix, validator=PathVariable.PathIsDirCreate))
opts.Add(BoolVariable('debug', 'enable HEAVY_DEBUG and disable optimizations', False))
opts.Add(BoolVariable('enable_profiling', 'enable debug symbols for profiling purposes (on by default)', True))
opts.Add(BoolVariable('brushlib_only', 'only build and install brushlib/', False))
opts.Add(BoolVariable('enable_brushlib_i18n', 'enable i18n support for brushlib (requires gettext)', False))
opts.Add(BoolVariable('enable_gegl', 'enable GEGL based code in build', False))
opts.Add(BoolVariable('enable_introspection', 'enable GObject introspection support', False))
opts.Add(BoolVariable('enable_docs', 'enable documentation build', False))
opts.Add(BoolVariable('enable_gperftools', 'enable gperftools in build, for profiling', False))
opts.Add(BoolVariable('enable_openmp', 'enable OpenMP for multithreaded processing (on by default)', True))
opts.Add('python_binary', 'python executable to build for', default_python_binary)
opts.Add('python_config', 'python-config to used', default_python_config)
tools = ['default', 'textfile']
env = Environment(ENV=os.environ, options=opts, tools=tools)
print('building for %r (use scons python_binary=xxx to change)' % env['python_binary'])
print('using %r (use scons python_config=xxx to change)' % env['python_config'])
if sys.platform == "win32":
# remove this mingw if trying VisualStudio
env = Environment(tools=tools + ['mingw'], ENV=os.environ, options=opts)
# Respect some standard build environment stuff
# See http://cgit.freedesktop.org/mesa/mesa/tree/scons/gallium.py
# See https://wiki.gentoo.org/wiki/SCons#Missing_CC.2C_CFLAGS.2C_LDFLAGS
if os.environ.has_key('CC'):
env['CC'] = os.environ['CC']
if os.environ.has_key('CFLAGS'):
env['CCFLAGS'] += SCons.Util.CLVar(os.environ['CFLAGS'])
if os.environ.has_key('CXX'):
env['CXX'] = os.environ['CXX']
if os.environ.has_key('CXXFLAGS'):
env['CXXFLAGS'] += SCons.Util.CLVar(os.environ['CXXFLAGS'])
if os.environ.has_key('CPPFLAGS'):
env['CCFLAGS'] += SCons.Util.CLVar(os.environ['CPPFLAGS'])
env['CXXFLAGS'] += SCons.Util.CLVar(os.environ['CPPFLAGS'])
if os.environ.has_key('LDFLAGS'):
# LDFLAGS is omitted in SHLINKFLAGS, which is derived from LINKFLAGS
env['LINKFLAGS'] += SCons.Util.CLVar(os.environ['LDFLAGS'])
if "$CCFLAGS" in env['CXXCOM']:
env['CXXCOM'] = env['CXXCOM'].replace("$CCFLAGS","")
opts.Update(env)
env.Append(CXXFLAGS=' -Wall -Wno-sign-compare -Wno-write-strings')
env.Append(CCFLAGS='-Wall')
env.Append(CFLAGS='-std=c99')
env['GEGL_VERSION'] = 0.3
# Define strdup() in string.h under glibc >= 2.10 (POSIX.1-2008)
env.Append(CFLAGS='-D_POSIX_C_SOURCE=200809L')
if env.get('CPPDEFINES'):
# make sure assertions are enabled
env['CPPDEFINES'].remove('NDEBUG')
if env['debug']:
env.Append(CPPDEFINES='HEAVY_DEBUG')
env.Append(CCFLAGS='-O0', LINKFLAGS='-O0')
else:
# Overridable defaults
env.Prepend(CCFLAGS='-O3', LINKFLAGS='-O3')
if env['enable_profiling'] or env['debug']:
env.Append(CCFLAGS='-g')
#env.Append(CCFLAGS='-fno-inline', LINKFLAGS='-fno-inline')
# Look up libraries dependencies relative to the library
if sys.platform == "linux2":
env.Append(LINKFLAGS = Split('-z origin'))
env.Append(RPATH = env.Literal(os.path.join('\\$$ORIGIN')))
# remove libraries produced by earlier versions, which are actually
# being used if they keep lying around, leading to mysterious bugs
if sys.platform != "win32":
# do not execute this on windows...
env.Execute('rm -f libmypaint-tests.so libmypaint.so libmypaintlib.so')
set_dir_postaction = {}
def install_perms(env, target, sources, perms=0644, dirperms=0755):
"""As a normal env.Install, but with Chmod postactions.
The `target` parameter must be a string which starts with ``$prefix``.
Unless this is a sandbox install, the permission bits `dirperms` will be
set on every directory back to ``$prefix``, but not including it. `perms`
will always be set on each installed file from `sources`.
"""
assert target.startswith('$prefix')
install_targs = env.Install(target, sources)
sandboxed = False
final_prefix = os.path.normpath(env["prefix"])
# Set file permissions.
for targ in install_targs:
env.AddPostAction(targ, Chmod(targ, perms))
targ_path = os.path.normpath(targ.get_path())
if not targ_path.startswith(final_prefix):
sandboxed = True
if not sandboxed:
# Set permissions on superdirs, back to $prefix (but not including it)
# Not sure if this is necessary with the umask forcing. It might help
# fix some broken installs.
for file_targ in install_targs:
d = os.path.normpath(target)
d_prev = None
while d != d_prev and d != '$prefix':
d_prev = d
if not set_dir_postaction.has_key(d):
env.AddPostAction(file_targ, Chmod(d, dirperms))
set_dir_postaction[d] = True
d = os.path.dirname(d)
return install_targs
def install_tree(env, dest, path, perms=0644, dirperms=0755):
assert os.path.isdir(path)
target_root = join(dest, os.path.basename(path))
for dirpath, dirnames, filenames in os.walk(path):
reltarg = os.path.relpath(dirpath, path)
target_dir = join(target_root, reltarg)
target_dir = os.path.normpath(target_dir)
filepaths = [join(dirpath, basename) for basename in filenames]
install_perms(env, target_dir, filepaths, perms=perms, dirperms=dirperms)
def createStaticPicLibraryBuilder(env):
"""This is a utility function that creates the StaticExtLibrary Builder in
an Environment if it is not there already.
If it is already there, we return the existing one."""
import SCons.Action
try:
static_extlib = env['BUILDERS']['StaticPicLibrary']
except KeyError:
action_list = [ SCons.Action.Action("$ARCOM", "$ARCOMSTR") ]
if env.Detect('ranlib'):
ranlib_action = SCons.Action.Action("$RANLIBCOM", "$RANLIBCOMSTR")
action_list.append(ranlib_action)
static_extlib = SCons.Builder.Builder(action = action_list,
emitter = '$LIBEMITTER',
prefix = '$LIBPREFIX',
suffix = '$LIBSUFFIX',
src_suffix = '$OBJSUFFIX',
src_builder = 'SharedObject')
env['BUILDERS']['StaticPicLibrary'] = static_extlib
return static_extlib
createStaticPicLibraryBuilder(env)
# Common
install_tree(env, '$prefix/share/mypaint', 'brushes')
# These hierarchies belong entirely to us, so unmake if asked.
env.Clean('$prefix', '$prefix/lib/mypaint')
env.Clean('$prefix', '$prefix/share/mypaint')
# Convenience alias for installing to $prefix
env.Alias('install', '$prefix')
Export('env', 'install_tree', 'install_perms')
if not env['brushlib_only']:
print "Enabling i18n for brushlib in full application build"
env['enable_brushlib_i18n'] = True
brushlib = SConscript('./brushlib/SConscript')
if not env['brushlib_only']:
application = SConscript('./SConscript')
Depends(application, brushlib)
# vim:syntax=python