From 3272f632eec768c79000836e9bc45b90229789e7 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Sat, 17 Oct 2015 10:02:04 -0600 Subject: scons: fix MSVC, MinGW build Duplicate the glsl_types_hack.cpp work-around from the libgl-xlib target. --- src/gallium/targets/osmesa/SConscript | 7 ++++++- src/gallium/targets/osmesa/glsl_types_hack.cpp | 3 +++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 src/gallium/targets/osmesa/glsl_types_hack.cpp (limited to 'src/gallium/targets/osmesa') diff --git a/src/gallium/targets/osmesa/SConscript b/src/gallium/targets/osmesa/SConscript index 4a9115ba1cf..78930a98e03 100644 --- a/src/gallium/targets/osmesa/SConscript +++ b/src/gallium/targets/osmesa/SConscript @@ -5,6 +5,8 @@ env = env.Clone() env.Prepend(CPPPATH = [ '#src/mapi', '#src/mesa', + '#src/glsl', + '#src/glsl/nir', #Dir('../../../mapi'), # src/mapi build path for python-generated GL API files/headers ]) @@ -22,7 +24,10 @@ env.Prepend(LIBS = [ env.Append(CPPDEFINES = ['GALLIUM_TRACE', 'GALLIUM_SOFTPIPE']) -sources = ['target.c'] +sources = [ + 'target.c', + 'glsl_types_hack.cpp' +] if env['llvm']: env.Append(CPPDEFINES = 'GALLIUM_LLVMPIPE') diff --git a/src/gallium/targets/osmesa/glsl_types_hack.cpp b/src/gallium/targets/osmesa/glsl_types_hack.cpp new file mode 100644 index 00000000000..5c042f23e3b --- /dev/null +++ b/src/gallium/targets/osmesa/glsl_types_hack.cpp @@ -0,0 +1,3 @@ +/* errrg scons.. otherwise "scons: *** Two environments with different actions were specified for the same target: $mesa/build/linux-x86_64-debug/glsl/nir/glsl_types.os" */ +#include "glsl_types.cpp" + -- cgit v1.2.3