You are not logged in.
Hi,
I have a nasty problem with the linking program ld.
And possibly some others.
I'm programming a project c++ with cmake so there is some stack of gcc and ld.
Since a while ld gives me linking error messages in russian. So I have to translate them.
I checked my locale -a, seems ok. Didn't found any ld configs in /etc/
C
de_DE
de_DE@euro
de_DE.iso88591
de_DE.iso885915@euro
de_DE.utf8
deutsch
german
POSIXIt's no specific messages like:
неопределённая ссылка на : undefined reference to
Also when compiling with another ubuntu, ld is giving me according messages in english.
But yaourt is also giving me sometimes messages like:
Проверка сборки на ошибки... :Checking the assembly for errors ... Not sure where this comes from.
Anybody ideas? It's no big problem, but somehow annoying. I didn't learned enough russian in school. ![]()
Last edited by blablubs82352 (2020-05-08 19:47:29)
Offline
locale -a only tells you which locales are generated, not which are set, what about
locale
localectl
printenv | grep -E 'LC|LANG'?
Offline
Found the guilty environment variable.
~/ printenv | grep -E 'LC|LANG'
LANGUAGE=en_US:de:ruI was correcting it in the .config files I found. Worked so far.
Offline