X-Git-Url: https://git.libre-soc.org/?p=mesa.git;a=blobdiff_plain;f=src%2Fcompiler%2FSConscript.glsl;h=85abfbac78ad677155dcc538a790f3c6c4b13e4d;hp=3d28d99fc6310e12dc860962ce7db748ac924335;hb=4d18e71fea908ca64b23ee28d36fec780970e9b2;hpb=7d6af9e59935959689ac9611f17abc06c6837f16 diff --git a/src/compiler/SConscript.glsl b/src/compiler/SConscript.glsl index 3d28d99fc63..85abfbac78a 100644 --- a/src/compiler/SConscript.glsl +++ b/src/compiler/SConscript.glsl @@ -63,17 +63,17 @@ source_lists = env.ParseSourceList('Makefile.sources') for l in ('LIBGLCPP_FILES', 'LIBGLSL_FILES'): glsl_sources += source_lists[l] +glsl_sources += env.StaticObject("glsl/glcpp/pp_standalone_scaffolding.c") + if env['msvc']: env.Prepend(CPPPATH = ['#/src/getopt']) env.PrependUnique(LIBS = [getopt]) # Copy these files to avoid generation object files into src/mesa/program env.Prepend(CPPPATH = ['#src/mesa/main']) -env.Command('glsl/imports.c', '#src/mesa/main/imports.c', Copy('$TARGET', '$SOURCE')) env.Command('glsl/extensions_table.c', '#src/mesa/main/extensions_table.c', Copy('$TARGET', '$SOURCE')) # Copy these files to avoid generation object files into src/mesa/program env.Prepend(CPPPATH = ['#src/mesa/program']) -env.Command('glsl/prog_hash_table.c', '#src/mesa/program/prog_hash_table.c', Copy('$TARGET', '$SOURCE')) env.Command('glsl/symbol_table.c', '#src/mesa/program/symbol_table.c', Copy('$TARGET', '$SOURCE')) env.Command('glsl/dummy_errors.c', '#src/mesa/program/dummy_errors.c', Copy('$TARGET', '$SOURCE')) @@ -81,14 +81,39 @@ compiler_objs = env.StaticObject(source_lists['GLSL_COMPILER_CXX_FILES']) mesa_objs = env.StaticObject([ 'glsl/extensions_table.c', - 'glsl/imports.c', - 'glsl/prog_hash_table.c', 'glsl/symbol_table.c', 'glsl/dummy_errors.c', ]) compiler_objs += mesa_objs +# GLSL generated sources +env.CodeGenerate( + target = 'glsl/float64_glsl.h', + script = 'glsl/xxd.py', + source = ['glsl/float64.glsl'], + command = python_cmd + ' $SCRIPT $SOURCE $TARGET -n float64_source', +) + +env.CodeGenerate( + target = 'glsl/ir_expression_operation.h', + script = 'glsl/ir_expression_operation.py', + source = [], + command = python_cmd + ' $SCRIPT enum > $TARGET' +) +env.CodeGenerate( + target = 'glsl/ir_expression_operation_constant.h', + script = 'glsl/ir_expression_operation.py', + source = [], + command = python_cmd + ' $SCRIPT constant > $TARGET' +) +env.CodeGenerate( + target = 'glsl/ir_expression_operation_strings.h', + script = 'glsl/ir_expression_operation.py', + source = [], + command = python_cmd + ' $SCRIPT strings > $TARGET' +) + glsl = env.ConvenienceLibrary( target = 'glsl', source = glsl_sources, @@ -100,6 +125,11 @@ env.Depends(glsl, glsl_parser) Export('glsl') +# +# XXX: It's important to not add any generated source files after this point, +# or it will break MinGW cross-compilation. +# + # Skip building these programs as they will cause SCons error "Two environments # with different actions were specified for the same target" if env['crosscompile'] or env['embedded']: @@ -116,15 +146,6 @@ env.Prepend(LIBS = [compiler, glsl]) compiler_objs += env.StaticObject("glsl/main.cpp") -# GLSL generated sources - -env.CodeGenerate( - target = 'glsl/ir_expression_operation.h', - script = 'glsl/ir_expression_operation.py', - source = [], - command = python_cmd + ' $SCRIPT > $TARGET' -) - glsl_compiler = env.Program( target = 'glsl_compiler', source = compiler_objs,