Hi there,
We are the creators of the Crystal programming language, and we use nix to run our CI (). Long story short, when we upgraded one of the macOS images in our GH Actions infra, we noted that one spec was failing—one that attempted to build an executable with unicode characters.
The details can be seen in this issue, but the best way to describe the problem is to note that running the following command in a nix-shell
generates a wrong filename:
echo 'int main(void){}' > test.c && clang -o ×‽😂 test.c
The file it generates is $×‽360237230202
(among other things, the emoji is written with its codepoints in octal).
Tested with nix 2.11.0
I bet this deserves to open a ticket, but I wanted to run it first here. Thanks for your time!