The compiler now has a native codegen on aarch64. LLVM backend is now optional, and is disabled by default. The full release note is too long to paste here. See: https://downloads.haskell.org/~ghc/9.2.1/docs/html/users_guide/9.2.1-notes.html
46 lines
1.5 KiB
C
46 lines
1.5 KiB
C
$NetBSD: patch-rts_ProfHeap.c,v 1.1 2022/02/06 05:36:16 pho Exp $
|
|
|
|
NetBSD does not have uselocale(3).
|
|
|
|
Sent to the upstream:
|
|
https://gitlab.haskell.org/ghc/ghc/-/merge_requests/5677
|
|
|
|
--- rts/ProfHeap.c.orig 2021-01-25 16:30:28.000000000 +0000
|
|
+++ rts/ProfHeap.c
|
|
@@ -69,7 +69,7 @@ static locale_t prof_locale = 0, saved_l
|
|
STATIC_INLINE void
|
|
init_prof_locale( void )
|
|
{
|
|
-#if !defined(mingw32_HOST_OS)
|
|
+#if !defined(mingw32_HOST_OS) && !defined(netbsd_HOST_OS)
|
|
if (! prof_locale) {
|
|
prof_locale = newlocale(LC_NUMERIC_MASK, "POSIX", 0);
|
|
if (! prof_locale) {
|
|
@@ -83,7 +83,7 @@ init_prof_locale( void )
|
|
STATIC_INLINE void
|
|
free_prof_locale( void )
|
|
{
|
|
-#if !defined(mingw32_HOST_OS)
|
|
+#if !defined(mingw32_HOST_OS) && !defined(netbsd_HOST_OS)
|
|
if (prof_locale) {
|
|
freelocale(prof_locale);
|
|
prof_locale = 0;
|
|
@@ -98,6 +98,9 @@ set_prof_locale( void )
|
|
prof_locale_per_thread = _configthreadlocale(_ENABLE_PER_THREAD_LOCALE);
|
|
saved_locale = setlocale(LC_NUMERIC, NULL);
|
|
setlocale(LC_NUMERIC, "C");
|
|
+#elif defined(netbsd_HOST_OS)
|
|
+ saved_locale = setlocale(LC_NUMERIC, NULL);
|
|
+ setlocale(LC_NUMERIC, "C");
|
|
#else
|
|
saved_locale = uselocale(prof_locale);
|
|
#endif
|
|
@@ -109,6 +112,8 @@ restore_locale( void )
|
|
#if defined(mingw32_HOST_OS)
|
|
_configthreadlocale(prof_locale_per_thread);
|
|
setlocale(LC_NUMERIC, saved_locale);
|
|
+#elif defined(netbsd_HOST_OS)
|
|
+ setlocale(LC_NUMERIC, saved_locale);
|
|
#else
|
|
uselocale(saved_locale);
|
|
#endif
|