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 gvanem
Recipients ethan smith, gregory.p.smith, gvanem, paul.moore, pmpp, steve.dower, tim.golden, tritium, zach.ware
Date 2020-01-15.12:39:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1579091962.33.0.0422172198691.issue33351@roundup.psfhosted.org>
In-reply-to
Content
I will add to this issue my *only* compile problem I had using clang-cl ver 9. It has an issue with parsing the `frame_t` structure in Modules/_tracemalloc.c:

Modules/_tracemalloc.c(64,11): error: declaration of anonymous struct must be a definition
  typedef struct
          ^
Modules/_tracemalloc.c(64,3): warning: typedef requires a name [-Wmissing-declarations]
  typedef struct
  ^~~~~~~
Modules/_tracemalloc.c(77,11): warning: #pragma pack(pop, ...) failed: stack empty [-Wignored-pragmas]
  #pragma pack(pop)
          ^
Modules/_tracemalloc.c(110,5): error: unknown type name 'frame_t'
    frame_t frames[1];
    ^
------------------

I commented on and suggested a fix for _tracemalloc.c here:
https://github.com/python/cpython/commit/8d59eb1b66c51b2b918da9881c57d07d08df43b7#r36794938
History
Date User Action Args
2020-01-15 12:39:22gvanemsetrecipients: + gvanem, gregory.p.smith, paul.moore, tim.golden, pmpp, zach.ware, steve.dower, tritium, ethan smith
2020-01-15 12:39:22gvanemsetmessageid: <1579091962.33.0.0422172198691.issue33351@roundup.psfhosted.org>
2020-01-15 12:39:22gvanemlinkissue33351 messages
2020-01-15 12:39:21gvanemcreate