mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 03:32:46 +00:00
Fix compilation with ./configure --disable-builtinglslang - was
missing linking against -lMachineIndependent and -lGenericCodeGen static libs
This commit is contained in:
parent
bea2eb719b
commit
5d36d80318
@ -1883,6 +1883,8 @@ else ifeq ($(HAVE_GLSLANG),1)
|
||||
|
||||
# The order of these libs are somewhat specific
|
||||
LIBS += $(GLSLANG_LIBS) \
|
||||
$(GLSLANG_MACHINEINDEPENDENT_LIBS) \
|
||||
$(GLSLANG_GENERICCODEGEN_LIBS) \
|
||||
$(GLSLANG_OSDEPENDENT_LIBS) \
|
||||
$(GLSLANG_OGLCOMPILER_LIBS) \
|
||||
$(GLSLANG_HLSL_LIBS) \
|
||||
|
@ -630,6 +630,8 @@ if [ "$HAVE_GLSLANG" != no ]; then
|
||||
check_lib cxx GLSLANG -lglslang '' '-lSPIRV'
|
||||
check_lib cxx GLSLANG_OSDEPENDENT -lOSDependent
|
||||
check_lib cxx GLSLANG_OGLCOMPILER -lOGLCompiler
|
||||
check_lib cxx GLSLANG_MACHINEINDEPENDENT -lMachineIndependent
|
||||
check_lib cxx GLSLANG_GENERICCODEGEN -lGenericCodeGen
|
||||
check_lib cxx GLSLANG_HLSL -lHLSL '' '-lglslang -lSPIRV'
|
||||
check_lib cxx GLSLANG_SPIRV -lSPIRV
|
||||
check_lib cxx GLSLANG_SPIRV_TOOLS_OPT -lSPIRV-Tools-opt
|
||||
|
Loading…
x
Reference in New Issue
Block a user