I work on an open-source Telegram application, but I encountered the following issue while building the Google Play bundle:
error: undefined reference to ‘jconst_rgb_ycc_convert_avx2’
This error points to the file jsimd.c, specifically to this code:
if ((simd_support & JSIMD_AVX2) &&
IS_ALIGNED_AVX(jconst_rgb_ycc_convert_avx2))
return 1;
if ((simd_support & JSIMD_SSE2) &&
IS_ALIGNED_SSE(jconst_rgb_ycc_convert_sse2))
return 1;
if (simd_support & JSIMD_MMX)
return 1;
building app in android studio by GENERATE SIGNED APP BUDLE
New contributor
Houssin Agha is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.