3 # ***** BEGIN GPL LICENSE BLOCK *****
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; either version 2
8 # of the License, or (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software Foundation,
17 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 # The Original Code is Copyright (C) 2006, Blender Foundation
20 # All rights reserved.
22 # The Original Code is: all of this file.
24 # Contributor(s): Nathan Letwory.
26 # ***** END GPL LICENSE BLOCK *****
28 # Main entry-point for the SCons building system
29 # Set up some custom actions and target/argument handling
30 # Then read all SConscripts and build
32 # TODO: fix /FORCE:MULTIPLE on windows to get proper debug builds.
33 # TODO: directory copy functions are far too complicated, see:
34 # http://wiki.blender.org/index.php/User:Ideasman42/SConsNotSimpleInstallingFiles
43 # store path to tools and modules
44 toolpath=os.path.join(".", "build_files", "scons", "tools")
45 modulespath=os.path.join(".", "build_files", "scons", "Modules")
47 # needed for importing tools and modules
48 sys.path.append(toolpath)
49 sys.path.append(modulespath)
54 EnsureSConsVersion(1,0,0)
56 # Before we do anything, let's check if we have a sane os.environ
57 if not btools.check_environ():
60 BlenderEnvironment = Blender.BlenderEnvironment
63 VERSION = btools.VERSION # This is used in creating the local config directories
64 VERSION_RELEASE_CYCLE = btools.VERSION_RELEASE_CYCLE
67 platform = sys.platform
71 ##### BEGIN SETUP #####
73 B.possible_types = ['core', 'player', 'player2', 'intern', 'extern', 'system']
75 B.binarykind = ['blender' , 'blenderplayer']
76 ##################################
77 # target and argument validation #
78 ##################################
79 # XX cheating for BF_FANCY, we check for BF_FANCY before args are validated
80 use_color = ARGUMENTS.get('BF_FANCY', '1')
84 if not use_color=='1':
87 #on defaut white Os X terminal, some colors are totally unlegible
88 if platform=='darwin':
89 B.bc.OKGREEN = '\033[34m'
90 B.bc.WARNING = '\033[36m'
93 print B.bc.HEADER+'Command-line arguments'+B.bc.ENDC
94 B.arguments = btools.validate_arguments(ARGUMENTS, B.bc)
95 btools.print_arguments(B.arguments, B.bc)
98 print B.bc.HEADER+'Command-line targets'+B.bc.ENDC
99 B.targets = btools.validate_targets(COMMAND_LINE_TARGETS, B.bc)
100 btools.print_targets(B.targets, B.bc)
102 ##########################
103 # setting up environment #
104 ##########################
106 # handling cmd line arguments & config file
109 tempbitness = int(B.arguments.get('BF_BITNESS', B.bitness)) # default to bitness found as per starting python
110 if tempbitness in B.allowed_bitnesses.values() :
111 B.bitness = tempbitness
113 # first check cmdline for toolset and we create env to work on
114 quickie = B.arguments.get('BF_QUICK', None)
115 quickdebug = B.arguments.get('BF_QUICKDEBUG', None)
118 B.quickdebug=string.split(quickdebug, ',')
123 B.quickie=string.split(quickie,',')
127 toolset = B.arguments.get('BF_TOOLSET', None)
128 vcver = B.arguments.get('MSVS_VERSION', '12.0')
131 print "Using " + toolset
132 if toolset=='mstoolkit':
133 env = BlenderEnvironment(ENV = os.environ)
134 env.Tool('mstoolkit', [toolpath])
136 env = BlenderEnvironment(tools=[toolset], ENV = os.environ)
138 btools.SetupSpawn(env)
140 if B.bitness==64 and platform=='win32':
141 env = BlenderEnvironment(ENV = os.environ, MSVS_ARCH='amd64', TARGET_ARCH='x86_64', MSVC_VERSION=vcver)
143 env = BlenderEnvironment(ENV = os.environ, TARGET_ARCH='x86', MSVC_VERSION=vcver)
146 print "Could not create a build environment"
149 cc = B.arguments.get('CC', None)
150 cxx = B.arguments.get('CXX', None)
156 if sys.platform=='win32':
157 if env['CC'] in ['cl', 'cl.exe']:
158 platform = 'win64-vc' if B.bitness == 64 else 'win32-vc'
159 elif env['CC'] in ['gcc']:
160 platform = 'win64-mingw' if B.bitness == 64 else 'win32-mingw'
162 if 'mingw' in platform:
163 print "Setting custom spawn function"
164 btools.SetupSpawn(env)
166 env.SConscriptChdir(0)
168 # Remove major kernel version from linux platform.
169 # After Linus switched kernel to new version model this major version
170 # shouldn't take much sense for building rules.
172 if re.match('linux[0-9]+', platform):
175 crossbuild = B.arguments.get('BF_CROSS', None)
176 if crossbuild and platform not in ('win32-vc', 'win64-vc'):
177 platform = 'linuxcross'
179 env['OURPLATFORM'] = platform
181 configfile = os.path.join("build_files", "scons", "config", platform + "-config.py")
183 if os.path.exists(configfile):
184 print B.bc.OKGREEN + "Using config file: " + B.bc.ENDC + configfile
186 print B.bc.FAIL + configfile + " doesn't exist" + B.bc.ENDC
188 if crossbuild and env['PLATFORM'] != 'win32':
189 print B.bc.HEADER+"Preparing for crossbuild"+B.bc.ENDC
190 env.Tool('crossmingw', [toolpath])
191 # todo: determine proper libs/includes etc.
192 # Needed for gui programs, console programs should do without it
194 # Now we don't need this option to have console window
195 # env.Append(LINKFLAGS=['-mwindows'])
197 userconfig = B.arguments.get('BF_CONFIG', 'user-config.py')
198 # first read platform config. B.arguments will override
199 optfiles = [configfile]
200 if os.path.exists(userconfig):
201 print B.bc.OKGREEN + "Using user-config file: " + B.bc.ENDC + userconfig
202 optfiles += [userconfig]
204 print B.bc.WARNING + userconfig + " not found, no user overrides" + B.bc.ENDC
206 opts = btools.read_opts(env, optfiles, B.arguments)
209 if sys.platform=='win32':
211 env.Append(CPPFLAGS=['-DWIN64']) # -DWIN32 needed too, as it's used all over to target Windows generally
214 env.Append(CPPDEFINES=['_DEBUG', 'DEBUG'])
216 env.Append(CPPDEFINES=['NDEBUG'])
218 if not env['BF_FANCY']:
221 if env['WITH_BF_SDL_DYNLOAD']:
222 env['BF_SDL_INC'] = '#extern/sdlew/include/SDL2'
224 # remove install dir so old and new files are not mixed.
225 # NOTE: only do the scripts directory for now, otherwise is too disruptive for developers
226 # TODO: perhaps we need an option (off by default) to not do this altogether...
227 if not env['WITHOUT_BF_INSTALL'] and not env['WITHOUT_BF_OVERWRITE_INSTALL']:
228 scriptsDir = os.path.join(env['BF_INSTALLDIR'], VERSION, 'scripts')
229 if os.path.isdir(scriptsDir):
230 print B.bc.OKGREEN + "Clearing installation directory%s: %s" % (B.bc.ENDC, os.path.abspath(scriptsDir))
231 shutil.rmtree(scriptsDir)
234 SetOption('num_jobs', int(env['BF_NUMJOBS']))
235 print B.bc.OKGREEN + "Build with parallel jobs%s: %s" % (B.bc.ENDC, GetOption('num_jobs'))
236 print B.bc.OKGREEN + "Build with debug symbols%s: %s" % (B.bc.ENDC, env['BF_DEBUG'])
238 if 'blenderlite' in B.targets:
240 target_env_defs['WITH_BF_GAMEENGINE'] = False
241 target_env_defs['WITH_BF_CYCLES'] = False
242 target_env_defs['WITH_BF_OPENAL'] = False
243 target_env_defs['WITH_BF_OPENEXR'] = False
244 target_env_defs['WITH_BF_PSD'] = False
245 target_env_defs['WITH_BF_OPENMP'] = False
246 target_env_defs['WITH_BF_ICONV'] = False
247 target_env_defs['WITH_BF_INTERNATIONAL'] = False
248 target_env_defs['WITH_BF_OPENJPEG'] = False
249 target_env_defs['WITH_BF_FFMPEG'] = False
250 target_env_defs['WITH_BF_QUICKTIME'] = False
251 target_env_defs['WITH_BF_REDCODE'] = False
252 target_env_defs['WITH_BF_DDS'] = False
253 target_env_defs['WITH_BF_CINEON'] = False
254 target_env_defs['WITH_BF_FRAMESERVER'] = False
255 target_env_defs['WITH_BF_HDR'] = False
256 target_env_defs['WITH_BF_ZLIB'] = False
257 target_env_defs['WITH_BF_SDL'] = False
258 target_env_defs['WITH_BF_JPEG'] = False
259 target_env_defs['WITH_BF_PNG'] = False
260 target_env_defs['WITH_BF_BULLET'] = False
261 target_env_defs['WITH_BF_BINRELOC'] = False
262 target_env_defs['BF_BUILDINFO'] = False
263 target_env_defs['WITH_BF_FLUID'] = False
264 target_env_defs['WITH_BF_OCEANSIM'] = False
265 target_env_defs['WITH_BF_SMOKE'] = False
266 target_env_defs['WITH_BF_BOOLEAN'] = False
267 target_env_defs['WITH_BF_REMESH'] = False
268 target_env_defs['WITH_BF_PYTHON'] = False
269 target_env_defs['WITH_BF_IME'] = False
270 target_env_defs['WITH_BF_3DMOUSE'] = False
271 target_env_defs['WITH_BF_LIBMV'] = False
272 target_env_defs['WITH_BF_FREESTYLE'] = False
274 # Merge blenderlite, let command line to override
275 for k,v in target_env_defs.iteritems():
276 if k not in B.arguments:
279 if 'cudakernels' in B.targets:
280 env['WITH_BF_CYCLES'] = True
281 env['WITH_BF_CYCLES_CUDA_BINARIES'] = True
282 env['WITH_BF_PYTHON'] = False
283 env['WITH_BF_LIBMV'] = False
285 # Configure paths for automated configuration test programs
286 env['CONFIGUREDIR'] = os.path.abspath(os.path.normpath(os.path.join(env['BF_BUILDDIR'], "sconf_temp")))
287 env['CONFIGURELOG'] = os.path.abspath(os.path.normpath(os.path.join(env['BF_BUILDDIR'], "config.log")))
289 #############################################################################
290 ################### Automatic configuration for OSX ##################
291 #############################################################################
293 if env['OURPLATFORM']=='darwin':
298 command = ["%s"%env['CC'], "--version"]
299 line = btools.get_command_output(command)
300 ver = re.search(r'[0-9]+(\.[0-9]+[svn]+)+', line) or re.search(r'[0-9]+(\.[0-9]+)+', line) # read the "based on LLVM x.xsvn" version here, not the Apple version
302 env['CCVERSION'] = ver.group(0).strip('svn')
303 frontend = re.search(r'gcc', line) or re.search(r'clang', line) or re.search(r'llvm-gcc', line) or re.search(r'icc', line)
305 env['C_COMPILER_ID'] = frontend.group(0)
307 vendor = re.search(r'Apple', line)
309 C_VENDOR = vendor.group(0)
311 C_VENDOR = 'Open Source'
313 print B.bc.OKGREEN + "Using Compiler: " + B.bc.ENDC + env['C_COMPILER_ID'] + '-' + env['CCVERSION'] + ' ( ' + C_VENDOR + ' )'
315 cmd = 'sw_vers -productVersion'
316 MAC_CUR_VER=cmd_res=commands.getoutput(cmd)
317 cmd = 'xcodebuild -version'
318 cmd_xcode=commands.getoutput(cmd)
319 env['XCODE_CUR_VER']=cmd_xcode[6:][:3] # truncate output to major.minor version
320 cmd = 'xcodebuild -showsdks'
321 cmd_sdk=commands.getoutput(cmd)
322 MACOSX_SDK_CHECK=cmd_sdk
323 cmd = 'xcode-select --print-path'
324 XCODE_SELECT_PATH=commands.getoutput(cmd)
325 if XCODE_SELECT_PATH.endswith("/Contents/Developer"):
326 XCODE_BUNDLE=XCODE_SELECT_PATH[:-19]
328 XCODE_BUNDLE=XCODE_SELECT_PATH
330 print B.bc.OKGREEN + "Detected Xcode version: -- " + B.bc.ENDC + env['XCODE_CUR_VER'] + " --"
331 print B.bc.OKGREEN + "Available SDK's: \n" + B.bc.ENDC + MACOSX_SDK_CHECK.replace('\t', '')
333 if env['MACOSX_SDK'] == '': # no set sdk, choosing best one found
334 if 'OS X 10.10' in MACOSX_SDK_CHECK:
335 env['MACOSX_DEPLOYMENT_TARGET'] = '10.6'
336 env['MACOSX_SDK']='/Developer/SDKs/MacOSX10.10.sdk'
337 elif 'OS X 10.9' in MACOSX_SDK_CHECK:
338 env['MACOSX_DEPLOYMENT_TARGET'] = '10.6'
339 env['MACOSX_SDK']='/Developer/SDKs/MacOSX10.9.sdk'
340 elif 'OS X 10.8' in MACOSX_SDK_CHECK:
341 env['MACOSX_DEPLOYMENT_TARGET'] = '10.6'
342 env['MACOSX_SDK']='/Developer/SDKs/MacOSX10.8.sdk'
343 elif 'OS X 10.7' in MACOSX_SDK_CHECK:
344 env['MACOSX_DEPLOYMENT_TARGET'] = '10.6'
345 env['MACOSX_SDK']='/Developer/SDKs/MacOSX10.7.sdk'
346 elif 'OS X 10.6' in MACOSX_SDK_CHECK:
347 env['MACOSX_DEPLOYMENT_TARGET'] = '10.6'
348 env['MACOSX_SDK']='/Developer/SDKs/MacOSX10.6.sdk'
349 elif 'OS X 10.5' in MACOSX_SDK_CHECK:
350 env['MACOSX_DEPLOYMENT_TARGET'] = '10.5'
351 env['MACOSX_SDK']='/Developer/SDKs/MacOSX10.5.sdk'
353 env['MACOSX_SDK']='/Developer/SDKs/MacOSX' + env['MACOSX_SDK'] + '.sdk'
355 if env['XCODE_CUR_VER'] >= '4.3': ## since version 4.3, XCode and developer dir are bundled ##
356 env['MACOSX_SDK'] = XCODE_BUNDLE + '/Contents/Developer/Platforms/MacOSX.platform' + env['MACOSX_SDK']
358 print B.bc.OKGREEN + "Using OSX SDK :" + B.bc.ENDC + env['MACOSX_SDK']
360 if not env['WITH_OSX_STATICPYTHON'] == 1:
361 # python 3.3 uses Python-framework additionally installed in /Library/Frameworks
362 env['BF_PYTHON'] = '/Library/Frameworks/Python.framework/Versions/'
363 env['BF_PYTHON_INC'] = env['BF_PYTHON'] + env['BF_PYTHON_VERSION'] + '/include/python' + env['BF_PYTHON_VERSION'] + 'm'
364 env['BF_PYTHON_BINARY'] = env['BF_PYTHON'] + env['BF_PYTHON_VERSION'] + '/bin/python' + env['BF_PYTHON_VERSION']
365 env['BF_PYTHON_LIB'] = ''
366 env['BF_PYTHON_LIBPATH'] = env['BF_PYTHON'] + env['BF_PYTHON_VERSION'] + '/lib/python' + env['BF_PYTHON_VERSION'] + '/config-' + env['BF_PYTHON_VERSION'] +'m'
367 env['PLATFORM_LINKFLAGS'] = env['PLATFORM_LINKFLAGS']+['-framework','Python'] # link to python framework
369 #Ray trace optimization
370 if env['WITH_BF_RAYOPTIMIZATION'] == 1:
371 if env['MACOSX_ARCHITECTURE'] == 'x86_64' or env['MACOSX_ARCHITECTURE'] == 'i386':
372 env['WITH_BF_RAYOPTIMIZATION'] = 1
374 env['WITH_BF_RAYOPTIMIZATION'] = 0
375 if env['MACOSX_ARCHITECTURE'] == 'i386':
376 env['BF_RAYOPTIMIZATION_SSE_FLAGS'] = env['BF_RAYOPTIMIZATION_SSE_FLAGS']+['-msse']
377 elif env['MACOSX_ARCHITECTURE'] == 'x86_64':
378 env['BF_RAYOPTIMIZATION_SSE_FLAGS'] = env['BF_RAYOPTIMIZATION_SSE_FLAGS']+['-msse','-msse2']
380 if env['MACOSX_ARCHITECTURE'] == 'x86_64' or env['MACOSX_ARCHITECTURE'] == 'ppc64':
381 ARCH_FLAGS = ['-m64']
383 ARCH_FLAGS = ['-m32']
385 env.Append(CPPFLAGS=ARCH_FLAGS)
387 SDK_FLAGS=['-isysroot', env['MACOSX_SDK'],'-mmacosx-version-min='+ env['MACOSX_DEPLOYMENT_TARGET'],'-arch',env['MACOSX_ARCHITECTURE']] # always used
388 env['PLATFORM_LINKFLAGS'] = ['-mmacosx-version-min='+ env['MACOSX_DEPLOYMENT_TARGET'],'-isysroot', env['MACOSX_SDK'],'-arch',env['MACOSX_ARCHITECTURE']]+ARCH_FLAGS+env['PLATFORM_LINKFLAGS']
389 env['CCFLAGS']=SDK_FLAGS+env['CCFLAGS']
390 env['CXXFLAGS']=SDK_FLAGS+env['CXXFLAGS']
392 #Intel Macs are CoreDuo and Up
393 if env['MACOSX_ARCHITECTURE'] == 'i386' or env['MACOSX_ARCHITECTURE'] == 'x86_64':
394 env['REL_CCFLAGS'] = env['REL_CCFLAGS']+['-msse','-msse2','-msse3']
395 if env['C_COMPILER_ID'] != 'clang' or (env['C_COMPILER_ID'] == 'clang' and env['CCVERSION'] >= '3.3'):
396 env['REL_CCFLAGS'] = env['REL_CCFLAGS']+['-ftree-vectorize'] # clang xcode 4 does not accept flag
398 env['CCFLAGS'] = env['CCFLAGS']+['-fno-strict-aliasing']
400 # Intel 64bit Macs are Core2Duo and up
401 if env['MACOSX_ARCHITECTURE'] == 'x86_64':
402 env['REL_CCFLAGS'] = env['REL_CCFLAGS']+['-mssse3']
404 if env['C_COMPILER_ID'] == 'clang' and env['CCVERSION'] >= '3.3':
405 env['CCFLAGS'].append('-ftemplate-depth=1024') # only valid for clang bundled with xcode 5
407 # 3DconnexionClient.framework, optionally install
408 if env['WITH_BF_3DMOUSE'] == 1:
409 if not os.path.exists('/Library/Frameworks/3DconnexionClient.framework'):
410 env['WITH_BF_3DMOUSE'] = 0
411 print B.bc.OKGREEN + "3DconnexionClient install not found, disabling WITH_BF_3DMOUSE" # avoid build errors !
413 env.Append(LINKFLAGS=['-F/Library/Frameworks','-Xlinker','-weak_framework','-Xlinker','3DconnexionClient'])
414 env['BF_3DMOUSE_INC'] = '/Library/Frameworks/3DconnexionClient.framework/Headers'
415 print B.bc.OKGREEN + "Using 3Dconnexion"
417 # Jackmp.framework, optionally install
418 if env['WITH_BF_JACK'] == 1:
419 if not os.path.exists('/Library/Frameworks/Jackmp.framework'):
420 env['WITH_BF_JACK'] = 0
421 print B.bc.OKGREEN + "JackOSX install not found, disabling WITH_BF_JACK" # avoid build errors !
423 env.Append(LINKFLAGS=['-F/Library/Frameworks','-Xlinker','-weak_framework','-Xlinker','Jackmp'])
424 print B.bc.OKGREEN + "Using Jack"
426 if env['WITH_BF_SDL']:
427 env.Append(LINKFLAGS=['-lazy_framework','ForceFeedback'])
429 if env['WITH_BF_QUICKTIME'] == 1:
430 env['PLATFORM_LINKFLAGS'] = env['PLATFORM_LINKFLAGS']+['-framework','QTKit']
432 #Defaults openMP to true if compiler handles it ( only gcc 4.6.1 and newer )
433 # if your compiler does not have accurate suffix you may have to enable it by hand !
434 if env['WITH_BF_OPENMP'] == 1:
435 if env['C_COMPILER_ID'] == 'gcc' and env['CCVERSION'] >= '4.6.1' or env['C_COMPILER_ID'] == 'clang' and env['CCVERSION'] >= '3.4' and C_VENDOR != 'Apple':
436 env['WITH_BF_OPENMP'] = 1 # multithreading for fluids, cloth, sculpt and smoke
437 print B.bc.OKGREEN + "Using OpenMP"
438 if env['C_COMPILER_ID'] == 'clang' and env['CCVERSION'] >= '3.4':
439 OSX_OMP_LIBPATH = Dir(env.subst(env['LCGDIR'])).abspath
440 env.Append(BF_PROGRAM_LINKFLAGS=['-L'+OSX_OMP_LIBPATH+'/openmp/lib','-liomp5'])
441 env['CCFLAGS'].append('-I'+OSX_OMP_LIBPATH+'/openmp/include') # include for omp.h
443 env['WITH_BF_OPENMP'] = 0
444 print B.bc.OKGREEN + "Disabled OpenMP, not supported by compiler"
446 if env['WITH_BF_CYCLES_OSL'] == 1:
447 env['WITH_BF_LLVM'] = 1
448 OSX_OSL_LIBPATH = Dir(env.subst(env['BF_OSL_LIBPATH'])).abspath
449 # we need 2 variants of passing the oslexec with the force_load option, string and list type atm
450 if env['C_COMPILER_ID'] == 'gcc' and env['CCVERSION'] >= '4.8' or env['C_COMPILER_ID'] == 'clang' and env['CCVERSION'] >= '3.4':
451 env.Append(LINKFLAGS=['-L'+OSX_OSL_LIBPATH,'-loslcomp','-loslexec','-loslquery'])
453 env.Append(LINKFLAGS=['-L'+OSX_OSL_LIBPATH,'-loslcomp','-force_load '+ OSX_OSL_LIBPATH +'/liboslexec.a','-loslquery'])
454 env.Append(BF_PROGRAM_LINKFLAGS=['-Xlinker','-force_load','-Xlinker',OSX_OSL_LIBPATH +'/liboslexec.a'])
456 env['WITH_BF_LLVM'] = 0
458 if env['WITH_BF_LLVM'] == 0:
459 # Due duplicated generic UTF functions, we pull them either from LLVMSupport or COLLADA
460 env.Append(BF_OPENCOLLADA_LIB=' UTF')
462 # Trying to get rid of eventually clashes, we export some symbols explicite as local
463 env.Append(LINKFLAGS=['-Xlinker','-unexported_symbols_list','-Xlinker','./source/creator/osx_locals.map'])
465 #for < 10.7.sdk, SystemStubs needs to be linked
466 if env['MACOSX_SDK'].endswith("10.6.sdk") or env['MACOSX_SDK'].endswith("10.5.sdk"):
467 env['LLIBS'].append('SystemStubs')
469 #############################################################################
470 ################### End Automatic configuration for OSX ##################
471 #############################################################################
473 if env['WITH_BF_OPENMP'] == 1:
474 if env['OURPLATFORM'] in ('win32-vc', 'win64-vc'):
475 env['CCFLAGS'].append('/openmp')
477 if env['CC'].endswith('icc'): # to be able to handle CC=/opt/bla/icc case
478 env.Append(LINKFLAGS=['-openmp', '-static-intel'])
479 env['CCFLAGS'].append('-openmp')
481 env.Append(CCFLAGS=['-fopenmp'])
483 if env['WITH_BF_CPP11']:
484 if env['OURPLATFORM'] in ('win32-vc', 'win64-vc'):
485 # Nothing special is needed, C++11 features are available by default.
488 env['CXXFLAGS'].append('-std=c++11')
490 #check for additional debug libnames
492 if env.has_key('BF_DEBUG_LIBS'):
493 B.quickdebug += env['BF_DEBUG_LIBS']
495 printdebug = B.arguments.get('BF_LISTDEBUG', 0)
497 if len(B.quickdebug) > 0 and printdebug != 0:
498 print B.bc.OKGREEN + "Buildings these libs with debug symbols:" + B.bc.ENDC
499 for l in B.quickdebug:
502 # remove stdc++ from LLIBS if we are building a statc linked CXXFLAGS
503 if env['WITH_BF_STATICCXX']:
504 if 'stdc++' in env['LLIBS']:
505 env['LLIBS'].remove('stdc++')
507 print '\tcould not remove stdc++ library from LLIBS, WITH_BF_STATICCXX may not work for your platform'
509 # check target for blenderplayer. Set WITH_BF_PLAYER if found on cmdline
510 if 'blenderplayer' in B.targets:
511 env['WITH_BF_PLAYER'] = True
513 if 'blendernogame' in B.targets:
514 env['WITH_BF_GAMEENGINE'] = False
516 if not env['WITH_BF_GAMEENGINE']:
517 env['WITH_BF_PLAYER'] = False
519 # build without elbeem (fluidsim)?
520 if env['WITH_BF_FLUID'] == 1:
521 env['CPPFLAGS'].append('-DWITH_MOD_FLUID')
523 # build with ocean sim?
524 if env['WITH_BF_OCEANSIM'] == 1:
525 env['WITH_BF_FFTW3'] = 1 # ocean needs fftw3 so enable it
526 env['CPPFLAGS'].append('-DWITH_MOD_OCEANSIM')
529 if btools.ENDIAN == "big":
530 env['CPPFLAGS'].append('-D__BIG_ENDIAN__')
532 env['CPPFLAGS'].append('-D__LITTLE_ENDIAN__')
534 # TODO, make optional (as with CMake)
535 env['CPPFLAGS'].append('-DWITH_AUDASPACE')
536 env['CPPFLAGS'].append('-DWITH_AVI')
537 env['CPPFLAGS'].append('-DWITH_OPENNL')
539 if env['OURPLATFORM'] not in ('win32-vc', 'win64-vc'):
540 env['CPPFLAGS'].append('-DHAVE_STDBOOL_H')
544 if env['WITH_BF_GL_PROFILE_COMPAT']:
545 env['BF_GL_DEFINITIONS'].append('WITH_GL_PROFILE_COMPAT')
547 if env['WITH_BF_GL_PROFILE_CORE']:
548 env['BF_GL_DEFINITIONS'].append('WITH_GL_PROFILE_CORE')
550 if env['WITH_BF_GL_PROFILE_ES20']:
551 env['BF_GL_DEFINITIONS'].append('WITH_GL_PROFILE_ES20')
553 if env['WITH_BF_GL_EGL']:
554 env['BF_GL_DEFINITIONS'].append('WITH_EGL')
558 if env['WITH_BF_GLEW_MX']:
559 env['BF_GL_DEFINITIONS'].append('WITH_GLEW_MX')
561 if env['WITH_BF_GLEW_ES']:
562 env['BF_GLEW_INC'] = '#extern/glew-es/include'
564 env['BF_GL_DEFINITIONS'] += ['GLEW_STATIC', 'WITH_GLEW_ES']
566 if not env['WITH_BF_GL_PROFILE_ES20']:
567 # No ES functions are needed
568 env['BF_GL_DEFINITIONS'].append('GLEW_NO_ES')
569 elif not (env['WITH_BF_GL_PROFILE_CORE'] or env['WITH_BF_GL_PROFILE_COMPAT']):
570 # ES is enabled, but the other functions are all disabled
571 env['BF_GL_DEFINITIONS'].append('GLEW_ES_ONLY')
573 if env['WITH_BF_GL_PROFILE_ES20']:
574 if env['WITH_BF_GL_EGL']:
575 env['BF_GL_DEFINITIONS'].append('GLEW_USE_LIB_ES20')
577 if env['WITH_BF_GL_EGL']:
578 env['BF_GL_DEFINITIONS'].append('GLEW_INC_EGL')
581 env['BF_GLEW_INC'] = '#extern/glew/include'
583 env['BF_GL_DEFINITIONS'].append('GLEW_STATIC')
585 # lastly we check for root_build_dir ( we should not do before, otherwise we might do wrong builddir
586 B.root_build_dir = env['BF_BUILDDIR']
587 B.doc_build_dir = os.path.join(env['BF_INSTALLDIR'], 'doc')
588 if not B.root_build_dir[-1]==os.sep:
589 B.root_build_dir += os.sep
590 if not B.doc_build_dir[-1]==os.sep:
591 B.doc_build_dir += os.sep
593 # We do a shortcut for clean when no quicklist is given: just delete
594 # builddir without reading in SConscripts
596 if 'clean' in B.targets:
599 if not quickie and do_clean:
600 if os.path.exists(B.doc_build_dir):
601 print B.bc.HEADER+'Cleaning doc dir...'+B.bc.ENDC
602 dirs = os.listdir(B.doc_build_dir)
604 if os.path.isdir(B.doc_build_dir + entry) == 1:
605 print "clean dir %s"%(B.doc_build_dir+entry)
606 shutil.rmtree(B.doc_build_dir+entry)
608 print "remove file %s"%(B.doc_build_dir+entry)
609 os.remove(B.root_build_dir+entry)
610 if os.path.exists(B.root_build_dir):
611 print B.bc.HEADER+'Cleaning build dir...'+B.bc.ENDC
612 dirs = os.listdir(B.root_build_dir)
614 if os.path.isdir(B.root_build_dir + entry) == 1:
615 print "clean dir %s"%(B.root_build_dir+entry)
616 shutil.rmtree(B.root_build_dir+entry)
618 print "remove file %s"%(B.root_build_dir+entry)
619 os.remove(B.root_build_dir+entry)
620 for confile in ['extern/ffmpeg/config.mak', 'extern/x264/config.mak',
621 'extern/xvidcore/build/generic/platform.inc', 'extern/ffmpeg/include']:
622 if os.path.exists(confile):
623 print "clean file %s"%confile
624 if os.path.isdir(confile):
625 for root, dirs, files in os.walk(confile):
627 os.remove(os.path.join(root, name))
630 print B.bc.OKGREEN+'...done'+B.bc.ENDC
632 print B.bc.HEADER+'Already Clean, nothing to do.'+B.bc.ENDC
636 # ensure python header is found since detection can fail, this could happen
637 # with _any_ library but since we used a fixed python version this tends to
638 # be most problematic.
639 if env['WITH_BF_PYTHON']:
640 found_python_h = found_pyconfig_h = False
641 for bf_python_inc in env.subst('${BF_PYTHON_INC}').split():
642 py_h = os.path.join(Dir(bf_python_inc).abspath, "Python.h")
643 if os.path.exists(py_h):
644 found_python_h = True
645 py_h = os.path.join(Dir(bf_python_inc).abspath, "pyconfig.h")
646 if os.path.exists(py_h):
647 found_pyconfig_h = True
649 if not (found_python_h and found_pyconfig_h):
650 print("""\nMissing: Python.h and/or pyconfig.h in "%s"
651 Set 'BF_PYTHON_INC' to point to valid include path(s),
652 containing Python.h and pyconfig.h for Python version "%s".
654 Example: python scons/scons.py BF_PYTHON_INC=../Python/include
655 """ % (env.subst('${BF_PYTHON_INC}'), env.subst('${BF_PYTHON_VERSION}')))
659 if not os.path.isdir ( B.root_build_dir):
660 os.makedirs ( B.root_build_dir )
661 os.makedirs ( B.root_build_dir + 'source' )
662 os.makedirs ( B.root_build_dir + 'intern' )
663 os.makedirs ( B.root_build_dir + 'extern' )
664 os.makedirs ( B.root_build_dir + 'lib' )
665 os.makedirs ( B.root_build_dir + 'bin' )
666 # # Docs not working with epy anymore
667 # if not os.path.isdir(B.doc_build_dir) and env['WITH_BF_DOCS']:
668 # os.makedirs ( B.doc_build_dir )
671 ###################################
672 # Ensure all data files are valid #
673 ###################################
674 if not os.path.isdir ( B.root_build_dir + 'data_headers'):
675 os.makedirs ( B.root_build_dir + 'data_headers' )
676 if not os.path.isdir ( B.root_build_dir + 'data_sources'):
677 os.makedirs ( B.root_build_dir + 'data_sources' )
679 env['DATA_HEADERS'] = os.path.join(os.path.abspath(env['BF_BUILDDIR']), "data_headers")
680 env['DATA_SOURCES'] = os.path.join(os.path.abspath(env['BF_BUILDDIR']), "data_sources")
681 def data_to_c(FILE_FROM, FILE_TO, VAR_NAME):
683 FILE_FROM = FILE_FROM.replace("/", "\\")
684 FILE_TO = FILE_TO.replace("/", "\\")
687 # first check if we need to bother.
688 if os.path.exists(FILE_TO):
689 if os.path.getmtime(FILE_FROM) < os.path.getmtime(FILE_TO):
692 print(B.bc.HEADER + "Generating: " + B.bc.ENDC + "%r" % os.path.basename(FILE_TO))
693 fpin = open(FILE_FROM, "rb")
694 fpin.seek(0, os.SEEK_END)
698 fpout = open(FILE_TO, "w")
699 fpout.write("int %s_size = %d;\n" % (VAR_NAME, size))
700 fpout.write("char %s[] = {\n" % VAR_NAME)
707 fpout.write("%3d," % ord(fpin.read(1)))
708 fpout.write("\n 0};\n\n")
712 except KeyboardInterrupt:
713 if os.path.exists(FILE_TO):
715 raise KeyboardInterrupt
717 def data_to_c_simple(FILE_FROM):
718 filename_only = os.path.basename(FILE_FROM)
719 FILE_TO = os.path.join(env['DATA_SOURCES'], filename_only + ".c")
720 VAR_NAME = "datatoc_" + filename_only.replace(".", "_")
722 data_to_c(FILE_FROM, FILE_TO, VAR_NAME)
725 def data_to_c_simple_icon(PATH_FROM):
727 # first handle import
729 path = "source/blender/datatoc"
730 if path not in sys.path:
731 sys.path.append(path)
733 # convert the pixmaps to a png
736 filename_only = os.path.basename(PATH_FROM)
737 FILE_TO_PNG = os.path.join(env['DATA_SOURCES'], filename_only + ".png")
738 FILE_TO = FILE_TO_PNG + ".c"
739 argv = [PATH_FROM, FILE_TO_PNG]
741 datatoc_icon.main_ex(argv)
742 except KeyboardInterrupt:
743 if os.path.exists(FILE_TO_PNG):
744 os.remove(FILE_TO_PNG)
745 raise KeyboardInterrupt
747 # then the png to a c file
748 data_to_c_simple(FILE_TO_PNG)
751 if B.targets != ['cudakernels']:
752 data_to_c("source/blender/compositor/operations/COM_OpenCLKernels.cl",
753 B.root_build_dir + "data_headers/COM_OpenCLKernels.cl.h",
754 "datatoc_COM_OpenCLKernels_cl")
756 data_to_c_simple("release/datafiles/startup.blend")
757 data_to_c_simple("release/datafiles/preview.blend")
758 data_to_c_simple("release/datafiles/preview_cycles.blend")
761 data_to_c_simple("source/blender/gpu/shaders/gpu_shader_simple_frag.glsl")
762 data_to_c_simple("source/blender/gpu/shaders/gpu_shader_simple_vert.glsl")
763 data_to_c_simple("source/blender/gpu/shaders/gpu_shader_material.glsl")
764 data_to_c_simple("source/blender/gpu/shaders/gpu_shader_material.glsl")
765 data_to_c_simple("source/blender/gpu/shaders/gpu_shader_sep_gaussian_blur_frag.glsl")
766 data_to_c_simple("source/blender/gpu/shaders/gpu_shader_sep_gaussian_blur_vert.glsl")
767 data_to_c_simple("source/blender/gpu/shaders/gpu_shader_vertex.glsl")
768 data_to_c_simple("source/blender/gpu/shaders/gpu_shader_vertex_world.glsl")
769 data_to_c_simple("source/blender/gpu/shaders/gpu_shader_vsm_store_frag.glsl")
770 data_to_c_simple("source/blender/gpu/shaders/gpu_shader_vsm_store_vert.glsl")
771 data_to_c_simple("source/blender/gpu/shaders/gpu_shader_fx_ssao_frag.glsl")
772 data_to_c_simple("source/blender/gpu/shaders/gpu_shader_fx_dof_frag.glsl")
773 data_to_c_simple("source/blender/gpu/shaders/gpu_shader_fx_dof_vert.glsl")
774 data_to_c_simple("source/blender/gpu/shaders/gpu_shader_fx_dof_hq_frag.glsl")
775 data_to_c_simple("source/blender/gpu/shaders/gpu_shader_fx_dof_hq_vert.glsl")
776 data_to_c_simple("source/blender/gpu/shaders/gpu_shader_fx_dof_hq_geo.glsl")
777 data_to_c_simple("source/blender/gpu/shaders/gpu_shader_fx_lib.glsl")
778 data_to_c_simple("source/blender/gpu/shaders/gpu_shader_fx_depth_resolve.glsl")
779 data_to_c_simple("source/blender/gpu/shaders/gpu_shader_fx_vert.glsl")
780 data_to_c_simple("intern/opencolorio/gpu_shader_display_transform.glsl")
783 data_to_c_simple("release/datafiles/bfont.pfb")
784 data_to_c_simple("release/datafiles/bfont.ttf")
785 data_to_c_simple("release/datafiles/bmonofont.ttf")
787 data_to_c_simple("release/datafiles/splash.png")
788 data_to_c_simple("release/datafiles/splash_2x.png")
790 # data_to_c_simple("release/datafiles/blender_icons16.png")
791 # data_to_c_simple("release/datafiles/blender_icons32.png")
792 data_to_c_simple_icon("release/datafiles/blender_icons16")
793 data_to_c_simple_icon("release/datafiles/blender_icons32")
795 data_to_c_simple("release/datafiles/prvicons.png")
797 data_to_c_simple("release/datafiles/brushicons/add.png")
798 data_to_c_simple("release/datafiles/brushicons/blob.png")
799 data_to_c_simple("release/datafiles/brushicons/blur.png")
800 data_to_c_simple("release/datafiles/brushicons/clay.png")
801 data_to_c_simple("release/datafiles/brushicons/claystrips.png")
802 data_to_c_simple("release/datafiles/brushicons/clone.png")
803 data_to_c_simple("release/datafiles/brushicons/crease.png")
804 data_to_c_simple("release/datafiles/brushicons/darken.png")
805 data_to_c_simple("release/datafiles/brushicons/draw.png")
806 data_to_c_simple("release/datafiles/brushicons/fill.png")
807 data_to_c_simple("release/datafiles/brushicons/flatten.png")
808 data_to_c_simple("release/datafiles/brushicons/grab.png")
809 data_to_c_simple("release/datafiles/brushicons/inflate.png")
810 data_to_c_simple("release/datafiles/brushicons/layer.png")
811 data_to_c_simple("release/datafiles/brushicons/lighten.png")
812 data_to_c_simple("release/datafiles/brushicons/mask.png")
813 data_to_c_simple("release/datafiles/brushicons/mix.png")
814 data_to_c_simple("release/datafiles/brushicons/multiply.png")
815 data_to_c_simple("release/datafiles/brushicons/nudge.png")
816 data_to_c_simple("release/datafiles/brushicons/pinch.png")
817 data_to_c_simple("release/datafiles/brushicons/scrape.png")
818 data_to_c_simple("release/datafiles/brushicons/smear.png")
819 data_to_c_simple("release/datafiles/brushicons/smooth.png")
820 data_to_c_simple("release/datafiles/brushicons/snake_hook.png")
821 data_to_c_simple("release/datafiles/brushicons/soften.png")
822 data_to_c_simple("release/datafiles/brushicons/subtract.png")
823 data_to_c_simple("release/datafiles/brushicons/texdraw.png")
824 data_to_c_simple("release/datafiles/brushicons/texfill.png")
825 data_to_c_simple("release/datafiles/brushicons/texmask.png")
826 data_to_c_simple("release/datafiles/brushicons/thumb.png")
827 data_to_c_simple("release/datafiles/brushicons/twist.png")
828 data_to_c_simple("release/datafiles/brushicons/vertexdraw.png")
830 data_to_c_simple("release/datafiles/matcaps/mc01.jpg")
831 data_to_c_simple("release/datafiles/matcaps/mc02.jpg")
832 data_to_c_simple("release/datafiles/matcaps/mc03.jpg")
833 data_to_c_simple("release/datafiles/matcaps/mc04.jpg")
834 data_to_c_simple("release/datafiles/matcaps/mc05.jpg")
835 data_to_c_simple("release/datafiles/matcaps/mc06.jpg")
836 data_to_c_simple("release/datafiles/matcaps/mc07.jpg")
837 data_to_c_simple("release/datafiles/matcaps/mc08.jpg")
838 data_to_c_simple("release/datafiles/matcaps/mc09.jpg")
839 data_to_c_simple("release/datafiles/matcaps/mc10.jpg")
840 data_to_c_simple("release/datafiles/matcaps/mc11.jpg")
841 data_to_c_simple("release/datafiles/matcaps/mc12.jpg")
842 data_to_c_simple("release/datafiles/matcaps/mc13.jpg")
843 data_to_c_simple("release/datafiles/matcaps/mc14.jpg")
844 data_to_c_simple("release/datafiles/matcaps/mc15.jpg")
845 data_to_c_simple("release/datafiles/matcaps/mc16.jpg")
846 data_to_c_simple("release/datafiles/matcaps/mc17.jpg")
847 data_to_c_simple("release/datafiles/matcaps/mc18.jpg")
848 data_to_c_simple("release/datafiles/matcaps/mc19.jpg")
849 data_to_c_simple("release/datafiles/matcaps/mc20.jpg")
850 data_to_c_simple("release/datafiles/matcaps/mc21.jpg")
851 data_to_c_simple("release/datafiles/matcaps/mc22.jpg")
852 data_to_c_simple("release/datafiles/matcaps/mc23.jpg")
853 data_to_c_simple("release/datafiles/matcaps/mc24.jpg")
855 ##### END DATAFILES ##########
857 Help(opts.GenerateHelpText(env))
859 # default is new quieter output, but if you need to see the
860 # commands, do 'scons BF_QUIET=0'
861 bf_quietoutput = B.arguments.get('BF_QUIET', '1')
863 B.set_quiet_output(env)
868 print B.bc.HEADER+'Building in: ' + B.bc.ENDC + os.path.abspath(B.root_build_dir)
869 env.SConsignFile(B.root_build_dir+'scons-signatures')
872 ##### END SETUP ##########
874 ## Auto-configuration run-time tests
876 from FindSharedPtr import FindSharedPtr
877 from FindUnorderedMap import FindUnorderedMap
879 conf = Configure(env)
880 old_linkflags = conf.env['LINKFLAGS']
881 conf.env.Append(LINKFLAGS=env['PLATFORM_LINKFLAGS'])
885 FindUnorderedMap(conf)
887 conf.env['LINKFLAGS'] = old_linkflags
890 # End of auto configuration
894 VariantDir(B.root_build_dir+'/source', 'source', duplicate=0)
895 SConscript(B.root_build_dir+'/source/SConscript')
896 VariantDir(B.root_build_dir+'/intern', 'intern', duplicate=0)
897 SConscript(B.root_build_dir+'/intern/SConscript')
898 VariantDir(B.root_build_dir+'/extern', 'extern', duplicate=0)
899 SConscript(B.root_build_dir+'/extern/SConscript')
901 # now that we have read all SConscripts, we know what
902 # libraries will be built. Create list of
903 # libraries to give as objects to linking phase
905 for tp in B.possible_types:
906 if (not tp == 'player') and (not tp == 'player2') and (not tp == 'system'):
907 mainlist += B.create_blender_liblist(env, tp)
909 if B.arguments.get('BF_PRIORITYLIST', '0')=='1':
910 B.propose_priorities()
912 dobj = B.buildinfo(env, "dynamic") + B.resources
913 creob = B.creator(env)
914 thestatlibs, thelibincs = B.setup_staticlibs(env)
915 thesyslibs = B.setup_syslibs(env)
917 if 'blender' in B.targets or not env['WITH_BF_NOBLENDER']:
918 blender_progname = "blender"
919 if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'win64-vc', 'linuxcross'):
920 blender_progname = "blender-app"
923 lenv.Append(LINKFLAGS = env['PLATFORM_LINKFLAGS'])
924 targetpath = B.root_build_dir + '/blender'
925 launcher_obj = [env.Object(B.root_build_dir + 'source/creator/creator/creator_launch_win', ['#source/creator/creator_launch_win.c'])]
926 env.BlenderProg(B.root_build_dir, 'blender', [launcher_obj] + B.resources, ['bf_utfconv'] + thesyslibs, [B.root_build_dir+'/lib'] + thelibincs, 'blender')
928 env.BlenderProg(B.root_build_dir, blender_progname, creob + mainlist + thestatlibs + dobj, thesyslibs, [B.root_build_dir+'/lib'] + thelibincs, 'blender')
929 if env['WITH_BF_PLAYER']:
930 playerlist = B.create_blender_liblist(env, 'player')
931 playerlist += B.create_blender_liblist(env, 'player2')
932 playerlist += B.create_blender_liblist(env, 'intern')
933 playerlist += B.create_blender_liblist(env, 'extern')
934 env.BlenderProg(B.root_build_dir, "blenderplayer", dobj + playerlist + thestatlibs, thesyslibs, [B.root_build_dir+'/lib'] + thelibincs, 'blenderplayer')
936 ##### Now define some targets
939 #------------ INSTALL
943 if env['OURPLATFORM']=='darwin':
944 for prg in B.program_list:
945 bundle = '%s.app' % prg[0]
946 bundledir = os.path.dirname(bundle)
947 for dp, dn, df in os.walk(bundle):
954 dir=env['BF_INSTALLDIR']+dp[len(bundledir):]
955 source=[dp+os.sep+f for f in df]
956 blenderinstall.append(env.Install(dir=dir,source=source))
958 blenderinstall = env.Install(dir=env['BF_INSTALLDIR'], source=B.program_list)
960 #-- local path = config files in install dir: installdir\VERSION
961 #- dont do config and scripts for darwin, it is already in the bundle
964 datafilestargetlist = []
969 if env['OURPLATFORM']!='darwin':
970 dotblenderinstall = []
971 for targetdir,srcfile in zip(dottargetlist, dotblendlist):
972 td, tf = os.path.split(targetdir)
973 dotblenderinstall.append(env.Install(dir=td, source=srcfile))
974 for targetdir,srcfile in zip(datafilestargetlist, datafileslist):
975 td, tf = os.path.split(targetdir)
976 dotblenderinstall.append(env.Install(dir=td, source=srcfile))
978 if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'win64-vc', 'linuxcross'):
979 scriptinstall.append(env.InstallAs(env['BF_INSTALLDIR'] + '/blender-app.exe.manifest',
980 'source/icons/blender.exe.manifest'))
982 if env['WITH_BF_PYTHON']:
983 #-- local/VERSION/scripts
984 scriptpaths=['release/scripts']
985 for scriptpath in scriptpaths:
986 for dp, dn, df in os.walk(scriptpath):
989 if '__pycache__' in dn: # py3.2 cache dir
990 dn.remove('__pycache__')
992 # only for testing builds
993 if VERSION_RELEASE_CYCLE == "release" and "addons_contrib" in dn:
994 dn.remove('addons_contrib')
996 # do not install freestyle if disabled
997 if not env['WITH_BF_FREESTYLE'] and "freestyle" in dn:
998 dn.remove("freestyle")
1000 dir = os.path.join(env['BF_INSTALLDIR'], VERSION)
1001 dir += os.sep + os.path.basename(scriptpath) + dp[len(scriptpath):]
1003 source=[os.path.join(dp, f) for f in df if not f.endswith(".pyc")]
1004 # To ensure empty dirs are created too
1005 if len(source)==0 and not os.path.exists(dir):
1006 env.Execute(Mkdir(dir))
1007 scriptinstall.append(env.Install(dir=dir,source=source))
1008 if env['WITH_BF_CYCLES']:
1009 # cycles python code
1010 dir=os.path.join(env['BF_INSTALLDIR'], VERSION, 'scripts', 'addons','cycles')
1011 source=os.listdir('intern/cycles/blender/addon')
1012 if '__pycache__' in source: source.remove('__pycache__')
1013 source=['intern/cycles/blender/addon/'+s for s in source]
1014 scriptinstall.append(env.Install(dir=dir,source=source))
1016 # cycles kernel code
1017 dir=os.path.join(env['BF_INSTALLDIR'], VERSION, 'scripts', 'addons','cycles', 'kernel')
1018 source=os.listdir('intern/cycles/kernel')
1019 if '__pycache__' in source: source.remove('__pycache__')
1020 source.remove('kernel.cpp')
1021 source.remove('CMakeLists.txt')
1022 source.remove('svm')
1023 source.remove('closure')
1024 source.remove('geom')
1025 source.remove('shaders')
1026 source.remove('osl')
1027 source=['intern/cycles/kernel/'+s for s in source]
1028 source.append('intern/cycles/util/util_color.h')
1029 source.append('intern/cycles/util/util_half.h')
1030 source.append('intern/cycles/util/util_math.h')
1031 source.append('intern/cycles/util/util_math_fast.h')
1032 source.append('intern/cycles/util/util_transform.h')
1033 source.append('intern/cycles/util/util_types.h')
1034 scriptinstall.append(env.Install(dir=dir,source=source))
1036 dir=os.path.join(env['BF_INSTALLDIR'], VERSION, 'scripts', 'addons','cycles', 'kernel', 'svm')
1037 source=os.listdir('intern/cycles/kernel/svm')
1038 if '__pycache__' in source: source.remove('__pycache__')
1039 source=['intern/cycles/kernel/svm/'+s for s in source]
1040 scriptinstall.append(env.Install(dir=dir,source=source))
1042 dir=os.path.join(env['BF_INSTALLDIR'], VERSION, 'scripts', 'addons','cycles', 'kernel', 'closure')
1043 source=os.listdir('intern/cycles/kernel/closure')
1044 if '__pycache__' in source: source.remove('__pycache__')
1045 source=['intern/cycles/kernel/closure/'+s for s in source]
1046 scriptinstall.append(env.Install(dir=dir,source=source))
1048 dir=os.path.join(env['BF_INSTALLDIR'], VERSION, 'scripts', 'addons','cycles', 'kernel', 'geom')
1049 source=os.listdir('intern/cycles/kernel/geom')
1050 if '__pycache__' in source: source.remove('__pycache__')
1051 source=['intern/cycles/kernel/geom/'+s for s in source]
1052 scriptinstall.append(env.Install(dir=dir,source=source))
1055 dir=os.path.join(env['BF_INSTALLDIR'], VERSION, 'scripts', 'addons','cycles', 'license')
1056 source=os.listdir('intern/cycles/doc/license')
1057 if '__pycache__' in source: source.remove('__pycache__')
1058 source.remove('CMakeLists.txt')
1059 source=['intern/cycles/doc/license/'+s for s in source]
1060 scriptinstall.append(env.Install(dir=dir,source=source))
1062 if env['WITH_BF_CYCLES']:
1064 if env['WITH_BF_CYCLES_CUDA_BINARIES']:
1065 dir=os.path.join(env['BF_INSTALLDIR'], VERSION, 'scripts', 'addons','cycles', 'lib')
1066 for arch in env['BF_CYCLES_CUDA_BINARIES_ARCH']:
1067 kernel_build_dir = os.path.join(B.root_build_dir, 'intern/cycles/kernel')
1068 for suffix in ('', '_experimental'):
1069 cubin_file = os.path.join(kernel_build_dir, "kernel%s_%s.cubin" % (suffix, arch))
1070 cubininstall.append(env.Install(dir=dir,source=cubin_file))
1073 if env['WITH_BF_CYCLES_OSL']:
1074 dir=os.path.join(env['BF_INSTALLDIR'], VERSION, 'scripts', 'addons','cycles', 'shader')
1076 osl_source_dir = Dir('./intern/cycles/kernel/shaders').srcnode().path
1077 oso_build_dir = os.path.join(B.root_build_dir, 'intern/cycles/kernel/shaders')
1079 headers='node_color.h node_fresnel.h node_texture.h oslutil.h stdosl.h'.split()
1080 source=['intern/cycles/kernel/shaders/'+s for s in headers]
1081 scriptinstall.append(env.Install(dir=dir,source=source))
1083 for f in os.listdir(osl_source_dir):
1084 if f.endswith('.osl'):
1085 oso_file = os.path.join(oso_build_dir, f.replace('.osl', '.oso'))
1086 scriptinstall.append(env.Install(dir=dir,source=oso_file))
1088 if env['WITH_BF_OCIO']:
1089 colormanagement = os.path.join('release', 'datafiles', 'colormanagement')
1091 for dp, dn, df in os.walk(colormanagement):
1092 dir = os.path.join(env['BF_INSTALLDIR'], VERSION, 'datafiles')
1093 dir += os.sep + os.path.basename(colormanagement) + dp[len(colormanagement):]
1095 source = [os.path.join(dp, f) for f in df if not f.endswith(".pyc")]
1097 # To ensure empty dirs are created too
1098 if len(source) == 0:
1099 env.Execute(Mkdir(dir))
1101 scriptinstall.append(env.Install(dir=dir,source=source))
1103 if env['WITH_BF_INTERNATIONAL']:
1104 internationalpaths=['release' + os.sep + 'datafiles']
1106 def check_path(path, member):
1107 return (member in path.split(os.sep))
1109 po_dir = os.path.join("release", "datafiles", "locale", "po")
1112 for intpath in internationalpaths:
1113 for dp, dn, df in os.walk(intpath):
1117 # we only care about release/datafiles/fonts, release/datafiles/locales
1118 if check_path(dp, "fonts"):
1123 dir = os.path.join(env['BF_INSTALLDIR'], VERSION)
1124 dir += os.sep + os.path.basename(intpath) + dp[len(intpath):]
1126 source=[os.path.join(dp, f) for f in df if not f.endswith(".pyc")]
1127 # To ensure empty dirs are created too
1129 env.Execute(Mkdir(dir))
1130 scriptinstall.append(env.Install(dir=dir,source=source))
1133 for f in os.listdir(po_dir):
1134 if not f.endswith(".po"):
1137 locale_name = os.path.splitext(f)[0]
1139 mo_file = os.path.join(B.root_build_dir, "locale", locale_name + ".mo")
1141 dir = os.path.join(env['BF_INSTALLDIR'], VERSION)
1142 dir = os.path.join(dir, "datafiles", "locale", locale_name, "LC_MESSAGES")
1143 scriptinstall.append(env.InstallAs(os.path.join(dir, "blender.mo"), mo_file))
1146 dir = os.path.join(env['BF_INSTALLDIR'], VERSION)
1147 dir = os.path.join(dir, "datafiles", "locale")
1148 languages_file = os.path.join("release", "datafiles", "locale", "languages")
1149 scriptinstall.append(env.InstallAs(os.path.join(dir, "languages"), languages_file))
1152 if env['OURPLATFORM']=='linux':
1156 for tp, tn, tf in os.walk('release/freedesktop/icons'):
1158 iconlist.append(os.path.join(tp, f))
1159 icontargetlist.append( os.path.join(*([env['BF_INSTALLDIR']] + tp.split(os.sep)[2:] + [f])) )
1162 for targetdir,srcfile in zip(icontargetlist, iconlist):
1163 td, tf = os.path.split(targetdir)
1164 iconinstall.append(env.Install(dir=td, source=srcfile))
1166 scriptinstall.append(env.Install(dir=env['BF_INSTALLDIR'], source='release/bin/blender-thumbnailer.py'))
1168 # dlls for linuxcross
1169 # TODO - add more libs, for now this lets blenderlite run
1170 if env['OURPLATFORM']=='linuxcross':
1171 dir=env['BF_INSTALLDIR']
1174 if env['WITH_BF_OPENMP']:
1175 source += ['../lib/windows/pthreads/lib/pthreadGC2.dll']
1177 scriptinstall.append(env.Install(dir=dir, source=source))
1181 for tp, tn, tf in os.walk('release/text'):
1182 tf.remove("readme.html")
1184 textlist.append(tp+os.sep+f)
1186 def readme_version_patch():
1187 readme_src = "release/text/readme.html"
1188 readme_dst = os.path.abspath(os.path.normpath(os.path.join(env['BF_BUILDDIR'], "readme.html")))
1190 if not os.path.exists(readme_dst) or (os.path.getmtime(readme_dst) < os.path.getmtime(readme_src)):
1191 f = open(readme_src, "r")
1195 data = data.replace("BLENDER_VERSION", VERSION)
1196 f = open(readme_dst, "w")
1200 textlist.append(readme_dst)
1202 readme_version_patch()
1203 del readme_version_patch
1207 "release/text/readme.html"
1210 Command("file.out", "file.in", Copy(env['BF_INSTALLDIR'], "release/text/readme.html"))
1214 textlist.append('release/datafiles/LICENSE-bfont.ttf.txt')
1215 if env['WITH_BF_INTERNATIONAL']:
1216 textlist += ['release/datafiles/LICENSE-droidsans.ttf.txt', 'release/datafiles/LICENSE-bmonofont-i18n.ttf.txt']
1218 textinstall = env.Install(dir=env['BF_INSTALLDIR'], source=textlist)
1220 if env['OURPLATFORM']=='darwin':
1221 allinstall = [blenderinstall, textinstall]
1222 elif env['OURPLATFORM']=='linux':
1223 allinstall = [blenderinstall, dotblenderinstall, scriptinstall, textinstall, iconinstall, cubininstall]
1225 allinstall = [blenderinstall, dotblenderinstall, scriptinstall, textinstall, cubininstall]
1227 if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'win64-vc', 'linuxcross'):
1230 # Used when linking to libtiff was dynamic
1231 # keep it here until compilation on all platform would be ok
1232 # dllsources += ['${BF_TIFF_LIBPATH}/${BF_TIFF_LIB}.dll']
1234 if env['OURPLATFORM'] != 'linuxcross':
1235 # pthreads library is already added
1236 dllsources += ['${BF_PTHREADS_LIBPATH}/${BF_PTHREADS_LIB}.dll']
1238 if env['WITH_BF_SDL']:
1239 dllsources.append('${BF_SDL_LIBPATH}/SDL2.dll')
1241 if env['WITH_BF_PYTHON']:
1243 dllsources.append('${BF_PYTHON_LIBPATH}/${BF_PYTHON_DLL}_d.dll')
1244 dllsources.append('${BF_PYTHON_LIBPATH}/sqlite3_d.dll')
1246 dllsources.append('${BF_PYTHON_LIBPATH}/${BF_PYTHON_DLL}.dll')
1247 dllsources.append('${BF_PYTHON_LIBPATH}/sqlite3.dll')
1249 if env['WITH_BF_ICONV']:
1250 if env['OURPLATFORM'] == 'win64-vc':
1251 pass # we link statically to iconv on win64
1252 elif not env['OURPLATFORM'] in ('win32-mingw', 'linuxcross'):
1253 #gettext for MinGW and cross-compilation is compiled staticly
1254 dllsources += ['${BF_ICONV_LIBPATH}/iconv.dll']
1256 if env['WITH_BF_OPENAL']:
1257 dllsources.append('${LCGDIR}/openal/lib/OpenAL32.dll')
1259 if env['WITH_BF_SNDFILE']:
1260 dllsources.append('${LCGDIR}/sndfile/lib/libsndfile-1.dll')
1262 if env['WITH_BF_FFMPEG']:
1263 dllsources += env['BF_FFMPEG_DLL'].split()
1265 # Since the thumb handler is loaded by Explorer, architecture is
1266 # strict: the x86 build fails on x64 Windows. We need to ship
1267 # both builds in x86 packages.
1269 dllsources.append('${LCGDIR}/thumbhandler/lib/BlendThumb.dll')
1270 dllsources.append('${LCGDIR}/thumbhandler/lib/BlendThumb64.dll')
1272 if env['WITH_BF_OCIO']:
1273 if not env['OURPLATFORM'] in ('win32-mingw', 'linuxcross'):
1274 dllsources.append('${LCGDIR}/opencolorio/bin/OpenColorIO.dll')
1277 dllsources.append('${LCGDIR}/opencolorio/bin/libOpenColorIO.dll')
1279 dllsources.append('#source/icons/blender.exe.manifest')
1281 windlls = env.Install(dir=env['BF_INSTALLDIR'], source = dllsources)
1282 allinstall += windlls
1284 if env['OURPLATFORM'] == 'win64-mingw':
1287 if env['WITH_BF_PYTHON']:
1289 dllsources.append('${BF_PYTHON_LIBPATH}/${BF_PYTHON_DLL}_d.dll')
1291 dllsources.append('${BF_PYTHON_LIBPATH}/${BF_PYTHON_DLL}.dll')
1293 if env['WITH_BF_FFMPEG']:
1294 dllsources += env['BF_FFMPEG_DLL'].split()
1296 if env['WITH_BF_OPENAL']:
1297 dllsources.append('${LCGDIR}/openal/lib/OpenAL32.dll')
1298 dllsources.append('${LCGDIR}/openal/lib/wrap_oal.dll')
1300 if env['WITH_BF_SNDFILE']:
1301 dllsources.append('${LCGDIR}/sndfile/lib/libsndfile-1.dll')
1303 if env['WITH_BF_SDL']:
1304 dllsources.append('${LCGDIR}/sdl/lib/SDL.dll')
1306 if(env['WITH_BF_OPENMP']):
1307 dllsources.append('${LCGDIR}/binaries/libgomp-1.dll')
1309 if env['WITH_BF_OCIO']:
1310 dllsources.append('${LCGDIR}/opencolorio/bin/libOpenColorIO.dll')
1312 dllsources.append('${LCGDIR}/thumbhandler/lib/BlendThumb64.dll')
1313 dllsources.append('${LCGDIR}/binaries/libgcc_s_sjlj-1.dll')
1314 dllsources.append('${LCGDIR}/binaries/libwinpthread-1.dll')
1315 dllsources.append('${LCGDIR}/binaries/libstdc++-6.dll')
1316 dllsources.append('#source/icons/blender.exe.manifest')
1318 windlls = env.Install(dir=env['BF_INSTALLDIR'], source = dllsources)
1319 allinstall += windlls
1321 installtarget = env.Alias('install', allinstall)
1322 bininstalltarget = env.Alias('install-bin', blenderinstall)
1324 nsisaction = env.Action(btools.NSIS_Installer, btools.NSIS_print)
1325 nsiscmd = env.Command('nsisinstaller', None, nsisaction)
1326 nsisalias = env.Alias('nsis', nsiscmd)
1328 if 'blender' in B.targets:
1329 blenderexe= env.Alias('blender', B.program_list)
1330 Depends(blenderexe,installtarget)
1332 if env['WITH_BF_PLAYER']:
1333 blenderplayer = env.Alias('blenderplayer', B.program_list)
1334 Depends(blenderplayer,installtarget)
1336 if not env['WITH_BF_GAMEENGINE']:
1337 blendernogame = env.Alias('blendernogame', B.program_list)
1338 Depends(blendernogame,installtarget)
1340 if 'blenderlite' in B.targets:
1341 blenderlite = env.Alias('blenderlite', B.program_list)
1342 Depends(blenderlite,installtarget)
1344 Depends(nsiscmd, allinstall)
1346 buildslave_action = env.Action(btools.buildslave, btools.buildslave_print)
1347 buildslave_cmd = env.Command('buildslave_exec', None, buildslave_action)
1348 buildslave_alias = env.Alias('buildslave', buildslave_cmd)
1350 Depends(buildslave_cmd, allinstall)
1352 cudakernels_action = env.Action(btools.cudakernels, btools.cudakernels_print)
1353 cudakernels_cmd = env.Command('cudakernels_exec', None, cudakernels_action)
1354 cudakernels_alias = env.Alias('cudakernels', cudakernels_cmd)
1356 cudakernel_dir = os.path.join(os.path.abspath(os.path.normpath(B.root_build_dir)), 'intern/cycles/kernel')
1359 for x in env['BF_CYCLES_CUDA_BINARIES_ARCH']:
1360 cubin = os.path.join(cudakernel_dir, 'kernel_' + x + '.cubin')
1361 cuda_kernels.append(cubin)
1363 Depends(cudakernels_cmd, cuda_kernels)
1364 Depends(cudakernels_cmd, cubininstall)
1366 Default(B.program_list)
1368 if not env['WITHOUT_BF_INSTALL']:
1369 Default(installtarget)