blob: 37b3f8572e25a28dee7fbb6c64eef9131998327b [file] [log] [blame]
Brian Paulace31242016-06-15 10:42:34 -06001import filecmp
2import os
3import subprocess
José Fonseca33ceb672008-02-18 10:52:44 +00004
Brian Paulace31242016-06-15 10:42:34 -06005Import('*')
José Fonseca982609f2011-02-11 17:38:54 +00006
José Fonseca601498a2010-11-01 13:30:22 +00007if env['platform'] == 'windows':
José Fonseca6d670f62011-01-12 15:32:17 +00008 SConscript('getopt/SConscript')
Chia-I Wu1e6c10f2010-05-31 11:47:58 +08009
Kenneth Graunke1e0da622014-02-24 23:39:14 -080010SConscript('util/SConscript')
Emil Velikov1a882fd2016-01-18 10:47:13 +020011SConscript('compiler/SConscript')
José Fonseca982609f2011-02-11 17:38:54 +000012
13if env['hostonly']:
14 # We are just compiling the things necessary on the host for cross
15 # compilation
16 Return()
17
Brian Paulace31242016-06-15 10:42:34 -060018
19def write_git_sha1_h_file(filename):
20 """Mesa looks for a git_sha1.h file at compile time in order to display
21 the current git hash id in the GL_VERSION string. This function tries
22 to retrieve the git hashid and write the header file. An empty file
23 will be created if anything goes wrong."""
24
Brian Paulace31242016-06-15 10:42:34 -060025 tempfile = "git_sha1.h.tmp"
Eric Engestrom3fd425a2017-06-27 12:08:41 +010026 with open(tempfile, "w") as f:
Eric Engestrom076faf82017-07-06 20:25:28 +010027 args = [ 'sh', Dir('#').abspath + '/bin/git_sha1_gen.sh' ]
Eric Engestrom3fd425a2017-06-27 12:08:41 +010028 try:
Eric Engestrom9f6110a2017-06-29 17:21:44 +010029 subprocess.Popen(args, stdout=f).wait()
Eric Engestrom3fd425a2017-06-27 12:08:41 +010030 except:
31 print "Warning: exception in write_git_sha1_h_file()"
32 return
33
Brian Paulace31242016-06-15 10:42:34 -060034 if not os.path.exists(filename) or not filecmp.cmp(tempfile, filename):
35 # The filename does not exist or it's different from the new file,
36 # so replace old file with new.
37 if os.path.exists(filename):
38 os.remove(filename)
39 os.rename(tempfile, filename)
40 return
41
42
43# Create the git_sha1.h header file
44write_git_sha1_h_file("git_sha1.h")
45# and update CPPPATH so the git_sha1.h header can be found
46env.Append(CPPPATH = ["#" + env['build_dir']])
47
48
49
Jose Fonseca47870d62015-03-24 20:26:21 +000050if env['platform'] != 'windows':
51 SConscript('loader/SConscript')
José Fonseca982609f2011-02-11 17:38:54 +000052
Chia-I Wubb770af2011-01-14 17:50:29 +080053# When env['gles'] is set, the targets defined in mapi/glapi/SConscript are not
54# used. libgl-xlib and libgl-gdi adapt themselves to use the targets defined
55# in mapi/glapi-shared/SConscript. mesa/SConscript also adapts itself to
56# enable OpenGL ES support.
Brian Pauldff36e92012-05-30 10:08:11 -060057SConscript('mapi/glapi/gen/SConscript')
José Fonseca601498a2010-11-01 13:30:22 +000058SConscript('mapi/glapi/SConscript')
Alexander von Gluck IV61ef6972013-12-31 15:39:49 -060059
60# Haiku C++ libGL dispatch (renderers depend on libgl)
61if env['platform'] in ['haiku']:
62 SConscript('hgl/SConscript')
63
José Fonseca601498a2010-11-01 13:30:22 +000064SConscript('mesa/SConscript')
José Fonseca1ca29452010-08-13 13:53:04 +010065
Brian Paul88625e62011-09-16 10:11:52 -060066if not env['embedded']:
Vinson Lee5cf69322012-05-23 17:26:20 -070067 if env['platform'] not in ('cygwin', 'darwin', 'freebsd', 'haiku', 'windows'):
José Fonsecaf8aeb1c2011-09-20 20:40:05 +010068 SConscript('glx/SConscript')
Alexander von Gluck IV400b8332014-12-22 10:10:13 -050069 if env['platform'] == 'haiku':
Emil Velikove7e29182015-07-14 02:04:30 +010070 SConscript('egl/SConscript')
Keith Whitwelle3c6d412010-06-08 17:38:01 +010071
Chia-I Wubb770af2011-01-14 17:50:29 +080072 if env['gles']:
73 SConscript('mapi/shared-glapi/SConscript')
74
José Fonseca706eda32010-03-09 15:07:57 +000075SConscript('gallium/SConscript')
José Fonseca57d00012009-01-23 12:32:35 +000076