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 skrah
Recipients Michael.Felt, skrah
Date 2020-06-10.22:13:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1591827239.42.0.908144998122.issue40878@roundup.psfhosted.org>
In-reply-to
Content
Thanks for this information. The buildbot, however, fails to compile
C99 extern inline functions. Example:

ld: 0711-317 ERROR: Undefined symbol: .mpd_issnan


I understand the C99 extern inline feature like in this explanation:

https://www.greenend.org.uk/rjk/tech/inline.html


"""
In this example, one of the declarations does not mention inline:

// a declaration not mentioning inline
int max(int a, int b);

// a definition mentioning inline
inline int max(int a, int b) {
  return a > b ? a : b;
}

In either example, the function will be callable from other files.
"""



This is the scheme that libmpdec uses and that compilers understood
at the time I wrote it.
History
Date User Action Args
2020-06-10 22:13:59skrahsetrecipients: + skrah, Michael.Felt
2020-06-10 22:13:59skrahsetmessageid: <1591827239.42.0.908144998122.issue40878@roundup.psfhosted.org>
2020-06-10 22:13:59skrahlinkissue40878 messages
2020-06-10 22:13:59skrahcreate