This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gilles.bardoux
Recipients Oguz_eren, gilles.bardoux, ned.deily, pablogsal
Date 2019-10-21.19:12:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1571685150.46.0.980079307118.issue37930@roundup.psfhosted.org>
In-reply-to
Content
Hi Oguz,
You just need to change one line in Include/objimpl.h: replace "long double dummy" by "double dummy". Enjoy!

--- a/Include/objimpl.h
+++ b/Include/objimpl.h
@@ -248,7 +248,7 @@ typedef union _gc_head {
         union _gc_head *gc_prev;
         Py_ssize_t gc_refs;
     } gc;
-    long double dummy;  /* force worst-case alignment */
+    double dummy;  /* force worst-case alignment */
 } PyGC_Head;
 
 extern PyGC_Head *_PyGC_generation0;
History
Date User Action Args
2019-10-21 19:12:30gilles.bardouxsetrecipients: + gilles.bardoux, ned.deily, pablogsal, Oguz_eren
2019-10-21 19:12:30gilles.bardouxsetmessageid: <1571685150.46.0.980079307118.issue37930@roundup.psfhosted.org>
2019-10-21 19:12:30gilles.bardouxlinkissue37930 messages
2019-10-21 19:12:30gilles.bardouxcreate