[libcxx-commits] [PATCH] D88188: [libc++] Use runtime rather then compile-time glibc version check

Louis Dionne via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Thu Oct 8 07:32:37 PDT 2020


ldionne added a comment.

This broke the tests on MacOS: https://buildkite.com/llvm-project/libcxx-ci/builds/74#5d6d5ad0-27cc-4de5-b6d7-1b7b04d49464



================
Comment at: libcxx/test/std/localization/locale.categories/category.monetary/locale.moneypunct.byname/thousands_sep.pass.cpp:129
 #else
+    const char sep = ' ';
     // FIXME libc++ specifically works around \u00A0 by translating it into
----------------
On non-glibc, this changed the `wsep` from `L' ' ` to `L'\u00A0'` if I read this correctly.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D88188/new/

https://reviews.llvm.org/D88188



More information about the libcxx-commits mailing list