Module: Mesa Branch: master Commit: 9235c2cd8f8d8ac5f1e5b40249c9bcc998b823cd URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=9235c2cd8f8d8ac5f1e5b40249c9bcc998b823cd
Author: Mauro Rossi <[email protected]> Date: Mon May 3 22:50:26 2021 +0200 android: pan/bi: add bi_opt_constant_fold.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: bi_opt_constant_fold >>> referenced by bifrost_compile.c:3105 >>> (external/mesa/src/panfrost/bifrost/bifrost_compile.c:3105) Fixes: 1cb11969bec0 ("pan/bi: Add simple constant folding pass") Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10603> --- src/panfrost/Makefile.sources | 1 + 1 file changed, 1 insertion(+) diff --git a/src/panfrost/Makefile.sources b/src/panfrost/Makefile.sources index 9e7be1314bc..b5262e0bfb6 100644 --- a/src/panfrost/Makefile.sources +++ b/src/panfrost/Makefile.sources @@ -11,6 +11,7 @@ bifrost_FILES := \ bifrost/bi_print.c \ bifrost/bi_print.h \ bifrost/bi_ra.c \ + bifrost/bi_opt_constant_fold.c \ bifrost/bi_opt_copy_prop.c \ bifrost/bi_opt_dce.c \ bifrost/bi_opt_push_ubo.c \ _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
