This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: AIX iconv testsuite fails


>>>>> Zack Weinberg writes:

>> cc1plus: conversion from iso-8859-1 to UTF-8 not supported by iconv
>> /gcc/dje/src/libstdc++-v3/testsuite/22_locale/collate/transform/wchar_t/wrapped_locale.cc:26:29: conversion from iso-8859-1 to UTF-8 not supported by iconv

Zack> Well, we can put back the custom converter for this, but - could you
Zack> check whether this iconv() does do this transformation under a
Zack> different name?

	AIX wants iso-8859-1 written ISO8859-1.

rios0 10> iconv -f iso-8859-1 -t UTF-8 < /dev/null > /dev/null
iconv: 0791-004 cannot open converter
rios0 11> iconv -f iso8859-1 -t UTF-8 < /dev/null > /dev/null
iconv: 0791-004 cannot open converter
rios0 12> iconv -f ISO-8859-1 -t UTF-8 < /dev/null > /dev/null
iconv: 0791-004 cannot open converter
rios0 13> iconv -f ISO8859-1 -t UTF-8 < /dev/null > /dev/null
rios0 14>

	How do we change the code name to one that is spelled the way the
converter expects?

Thanks, David


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]