From 2736ae0454d574a1909863d7870fa4f1fe91bd7d Mon Sep 17 00:00:00 2001 From: Mauro Rossi Date: Sat, 8 May 2021 12:42:10 +0200 Subject: [PATCH] android: nir: add nir_lower_fragcolor.c to Makefile.sources Fixes the following building error: FAILED: out/target/product/x86_64/obj/SHARED_LIBRARIES/gallium_dri_intermediates/LINKED/gallium_dri.so ... ld.lld: error: undefined symbol: nir_lower_fragcolor >>> referenced by pan_assemble.c:81 (external/mesa/src/gallium/drivers/panfrost/pan_assemble.c:81) Cc: 21.0 21.1 Fixes: 1fd356302590 ("nir: add lowering pass for fragcolor -> fragdata") Acked-by: Rob Clark Part-of: --- src/compiler/Makefile.sources | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler/Makefile.sources b/src/compiler/Makefile.sources index d6bfa32c701..cb09d123c22 100644 --- a/src/compiler/Makefile.sources +++ b/src/compiler/Makefile.sources @@ -260,6 +260,7 @@ NIR_FILES = \ nir/nir_lower_fb_read.c \ nir/nir_lower_flatshade.c \ nir/nir_lower_flrp.c \ + nir/nir_lower_fragcolor.c \ nir/nir_lower_fragcoord_wtrans.c \ nir/nir_lower_frexp.c \ nir/nir_lower_global_vars_to_local.c \