mailing list of musl libc
 help / color / mirror / code / Atom feed
From: Abdessattar Sassi <abde.sassi@gmail.com>
To: musl@lists.openwall.com
Subject: [musl] Implementation of built-in locale only allows for 'C.UTF-8' and fails with just 'C'
Date: Thu, 16 Jan 2020 17:53:42 +0400	[thread overview]
Message-ID: <CAJ4ifWB7Os21cPjgAeN23bO==ya-7b03b_MZexBYyo9T2=iOyw@mail.gmail.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 988 bytes --]

Hi,

I run into a problem compiling a C library into WASM using emscripten,
which in turn uses libmusl.

The library calls 'locale_t __newlocale(int mask, const char *name, locale_t
loc)' with name being "C".
the implementation in musl calls __get_locale() with val being "C":

https://github.com/emscripten-core/emscripten/blob/2bca083cbbd5a4133db61fbd74d04f7feecfa907/system/lib/libc/musl/src/locale/locale_map.c#L44
-- extracted from locale_map.c:

int builtin = (val[0]=='C' && !val[1])
>       || !strcmp(val, "C.UTF-8")
>       || !strcmp(val, "POSIX");
> if (builtin) {
>       if (cat == LC_CTYPE && val[1]=='.')
>             return (void *)&__c_dot_utf8;
>       return 0;
> }


If I understand that code correctly, it will return 0 (fail) if the name is
just "C" and not "C.UTF-8".

Is this the intended behavior? (note that glibc and others do NOT require
the .UTF-8, a simple 'C' works just fine and many existing code relies on
that).

Thank you.

*Please Cc: me in reply.*

[-- Attachment #2: Type: text/html, Size: 4378 bytes --]

             reply	other threads:[~2020-01-16 14:17 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-16 13:53 Abdessattar Sassi [this message]
2020-01-16 14:28 ` Rich Felker

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAJ4ifWB7Os21cPjgAeN23bO==ya-7b03b_MZexBYyo9T2=iOyw@mail.gmail.com' \
    --to=abde.sassi@gmail.com \
    --cc=musl@lists.openwall.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).