bdn.borland.com

Article #29054: Kylix 3 C++ compiler issue with locales where decimal separator is not a period.

The Decimal separator in C++ source code is locale sensitive. This results in incorrectly built binaries on any locales where the decimal separator is not a period ".".

You should be able to avoid this problem with following setup for bc++:

% unsetenv LC_ALL
% setenv LANG de_DE
% setenv LC_NUMERIC C
---
# unset LC_ALL
# export LANG=de_DE
# export LC_NUMERIC=C

Last Modified: 31-AUG-02