Re: /bin/ls -l cannot handle printable Unicode characters outside the BMP ...

2024-11-24 Thread Thomas Wolff via Cygwin
Am 23.11.2024 um 15:01 schrieb Christian Franke via Cygwin: Cedric Blancher via Cygwin wrote: On Sat, 23 Nov 2024 at 11:44, Cedric Blancher wrote: Good morning! /bin/ls -l cannot handle printable Unicode characters outside the BMP Example using '𝒯' bash -c 'printf "\U0001D4AF\n"' # MATHEMAT

Re: Thread memory allocation issue

2024-11-24 Thread Mark Geisert via Cygwin
Hi Teemu, On 11/18/2024 10:59 PM, Teepean via Cygwin wrote: 2. Compile BWA with rpmalloc and the following patch: // In thread worker function: #ifdef __CYGWIN__ rpmalloc_thread_initialize(); #endif // ... thread work ... #ifdef __CYGWIN__ rpmalloc_thread_finalize(1); #endif How, exactly,

Re: /bin/ls -l cannot handle printable Unicode characters outside the BMP ...

2024-11-24 Thread jojelino via Cygwin
On 11/23/2024 7:44 PM, Cedric Blancher via Cygwin wrote: Looks like the Cygwin locale has a problem with non-BMP chars. You can tell your coworker that following alias of ls would do the trick in Cygwin. alias ls="ls -N --show-control-chars" -- Problem reports: https://cygwin.com/problem