search for: yusra

Displaying 2 results from an estimated 2 matches for "yusra".

Did you mean: yura
2020 Oct 02
2
[RFC] Adding a char set converter to Support library
...links against it. (There is really no need for us to depend on libiconv. If it is deemed to risky, then I can dropped it.) From: Anton Korobeynikov <anton at korobeynikov.info> To: Kai Peter Nacke <kai.nacke at de.ibm.com> Cc: llvm-dev <llvm-dev at lists.llvm.org>, Yusra Syeda <Yusra.Syeda at ibm.com> Date: 02.10.2020 19:08 Subject: [EXTERNAL] Re: [llvm-dev] [RFC] Adding a char set converter to Support library As far as I remember, libiconv is under LGPL. Will this cause any troubles? On Fri, Oct 2, 2020 at 7:13 PM Kai Peter Nacke via llvm-dev...
2020 Oct 02
2
[RFC] Adding a char set converter to Support library
Hi! On z/OS, there is the need to convert strings from EBCDIC to UTF-8 and vice versa. Using the POSIX iconv functions has some challenges, so I created a small wrapper around this functionality to get the same result on all platforms. This functionality is required for reading and writing GOFF object files and can also be used in the frontend. I put up the code on Phabricator