summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorsisyphus <sisyphus@cpan.org>2022-02-18 13:15:04 +1100
committerKarl Williamson <khw@cpan.org>2022-03-04 09:05:37 -0700
commit1e2aa9cdc0f7d9ce8de83083d78d75630b330e4e (patch)
treed83bd7be6d2a0958cebab71830b195fecf56f517 /perl.h
parent670bc824d15678f6d15b9a723c7a288b23317e73 (diff)
downloadperl-1e2aa9cdc0f7d9ce8de83083d78d75630b330e4e.tar.gz
enable x64 -Duselongdouble build for all mingw-runtime versions.
See https://github.com/Perl/perl5/issues/18363
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl.h b/perl.h
index d05cc2928c..c23e9e8953 100644
--- a/perl.h
+++ b/perl.h
@@ -2188,7 +2188,7 @@ You probably want to be using L<C</INT2PTR>> instead.
here, so no allowance is being made for mingw.org
compilers at this stage. -- sisyphus January 2021
*/
-#if defined(USE_QUADMATH) && defined(__MINGW64__)
+#if (defined(USE_LONG_DOUBLE) || defined(USE_QUADMATH)) && defined(__MINGW64__)
/* 64-bit build, mingw-w64 compiler only */
typedef NVTYPE NV __attribute__ ((aligned(8)));
#else