
Move glsl_types into NIR, now that the dependency on glsl_symbol_table has been split out. Possibly makes sense to rename things at this point, but if we do that I'd like to keep it split out into a separate patch to make git history easier to follow (IMHO). v2: fix android build v3: I f***ing hate scons.. but at least it builds Reviewed-by: Jason Ekstrand <jason@jlekstrand.net> Signed-off-by: Rob Clark <robclark@freedesktop.org>
70 lines
1.6 KiB
Python
70 lines
1.6 KiB
Python
#######################################################################
|
|
# SConscript for xlib winsys
|
|
|
|
Import('*')
|
|
|
|
env = env.Clone()
|
|
|
|
env.Append(CPPPATH = [
|
|
'#/src/glsl',
|
|
'#/src/glsl/nir',
|
|
'#/src/mapi',
|
|
'#/src/mesa',
|
|
'#/src/mesa/main',
|
|
'#src/gallium/state_trackers/glx/xlib',
|
|
Dir('../../../mapi'), # src/mapi build path for python-generated GL API files/headers
|
|
])
|
|
|
|
env.Append(CPPDEFINES = ['USE_XSHM'])
|
|
|
|
env.Prepend(LIBS = env['X11_LIBS'])
|
|
env.Prepend(LIBPATH = env['X11_LIBPATH'])
|
|
|
|
# when GLES is enabled, gl* and _glapi_* belong to bridge_glapi and
|
|
# shared_glapi respectively
|
|
if env['gles']:
|
|
env.Prepend(LIBPATH = [shared_glapi.dir])
|
|
glapi = [bridge_glapi, 'glapi']
|
|
|
|
env.Prepend(LIBS = [
|
|
st_xlib,
|
|
ws_xlib,
|
|
glapi,
|
|
mesautil,
|
|
mesa,
|
|
glsl,
|
|
gallium,
|
|
])
|
|
|
|
sources = [
|
|
'xlib.c',
|
|
'glsl_types_hack.cpp',
|
|
]
|
|
|
|
if True:
|
|
env.Append(CPPDEFINES = ['GALLIUM_TRACE', 'GALLIUM_RBUG', 'GALLIUM_SOFTPIPE'])
|
|
env.Prepend(LIBS = [trace, rbug, softpipe])
|
|
|
|
if env['llvm']:
|
|
env.Append(CPPDEFINES = ['GALLIUM_LLVMPIPE'])
|
|
env.Prepend(LIBS = [llvmpipe])
|
|
|
|
# Disallow undefined symbols
|
|
if env['platform'] != 'darwin':
|
|
env.Append(SHLINKFLAGS = ['-Wl,-z,defs'])
|
|
|
|
# libGL.so.1.5
|
|
libgl_1_5 = env.SharedLibrary(
|
|
target ='GL',
|
|
source = sources,
|
|
SHLIBSUFFIX = env['SHLIBSUFFIX'] + '.1.5',
|
|
)
|
|
|
|
# libGL.so.1
|
|
libgl = env.subst('${SHLIBPREFIX}GL${SHLIBSUFFIX}')
|
|
libgl_1 = libgl + '.1'
|
|
env.Command(libgl_1, libgl_1_5, "ln -sf ${SOURCE.file} ${TARGET}")
|
|
env.Command(libgl, libgl_1, "ln -sf ${SOURCE.file} ${TARGET}")
|
|
|
|
env.Alias('libgl-xlib', libgl)
|