Hi Jiva, I’ve reproduced the error message you posted below:
--8<---------------cut here---------------start------------->8--- i18n.c: In function 'str_upcase_l': i18n.c:874:12: error: dereferencing pointer to incomplete type i18n.c:874:12: error: dereferencing pointer to incomplete type i18n.c: In function 'str_downcase_l': i18n.c:883:12: error: dereferencing pointer to incomplete type i18n.c:883:12: error: dereferencing pointer to incomplete type make[6]: *** [libguile_2.0_la-i18n.lo] Error 1 --8<---------------cut here---------------end--------------->8--- I looks like the version of uClibc you’re using has incomplete or non-standard support for ‘locale_t’ objects. It could be that an extra header file must be included so that ‘toupper_l’ and ‘tolower_l’ (lines 874 and 883) are usable. Can you check that and report back? Thanks, Ludo’.