|
发表于 2003-3-29 02:39:14
|
显示全部楼层
- "make localedata/install-locales" is of course optional as per current LFS.
- However, not having some certain locales installed will cause failures in the
- gcc test suite (libstdc++ in particular). If you happen to skip "make
- localedata/install-locales", you can install the minimum locales necessary by
- issuing the following commands:-
- mkdir -p /stage1/lib/locale &&
- localedef -i de_DE -f ISO-8859-1 de_DE &&
- localedef -i de_DE@euro -f ISO-8859-15 de_DE@euro &&
- localedef -i en_HK -f ISO-8859-1 en_HK &&
- localedef -i en_PH -f ISO-8859-1 en_PH &&
- localedef -i en_US -f ISO-8859-1 en_US &&
- localedef -i es_MX -f ISO-8859-1 es_MX &&
- localedef -i fr_FR -f ISO-8859-1 fr_FR &&
- localedef -i fr_FR@euro -f ISO-8859-15 fr_FR@euro &&
- localedef -i it_IT -f ISO-8859-1 it_IT &&
- localedef -i ja_JP -f EUC-JP ja_JP
复制代码 |
|