From 076736222ee5b7d8eb48a58d9ff4095e634f486a Mon Sep 17 00:00:00 2001 From: Mauro Rossi Date: Sat, 8 May 2021 11:18:38 +0200 Subject: [PATCH] android: intel/compiler: add brw_compile_ff_gs.c to Makefile.sources Fixes the following building error: FAILED: out/target/product/x86_64/obj_x86/SHARED_LIBRARIES/i965_dri_intermediates/LINKED/i965_dri.so ... ld.lld: error: undefined symbol: brw_compile_ff_gs_prog >>> referenced by brw_ff_gs.c:56 (external/mesa/src/mesa/drivers/dri/i965/brw_ff_gs.c:56) Fixes: 52e426fd8b57 ("intel/compiler: add support for compiling fixed function gs") Reviewed-by: Emil Velikov Part-of: --- src/intel/Makefile.sources | 1 + 1 file changed, 1 insertion(+) diff --git a/src/intel/Makefile.sources b/src/intel/Makefile.sources index 382d086..019ae19 100644 --- a/src/intel/Makefile.sources +++ b/src/intel/Makefile.sources @@ -41,6 +41,7 @@ COMPILER_FILES = \ compiler/brw_clip_unfilled.c \ compiler/brw_clip_util.c \ compiler/brw_compile_clip.c \ + compiler/brw_compile_ff_gs.c \ compiler/brw_compile_sf.c \ compiler/brw_compiler.c \ compiler/brw_compiler.h \ -- 2.7.4