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 ericvw
Recipients christian.heimes, ericvw
Date 2017-01-05.22:38:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1483655931.95.0.807787917048.issue29171@psf.upfronthosting.co.za>
In-reply-to
Content
Compilers are not required to elide static functions which are unused.

Some compilers, such as Solaris Studio, always emits the function, even
if the function does not get called within the translation unit.  This
becomes problematic when a static inline function calls a non-existent
function; thus, resulting in (dynamic or static) link time errors.

Given that 'blake2' is never referenced nor called, remove the
definition of this function to increase portability for non-Linux
toolchains.

https://blogs.oracle.com/d/entry/inline_functions_in_c also indicates that this is case for Solaris Studio as well.
History
Date User Action Args
2017-01-05 22:38:51ericvwsetrecipients: + ericvw, christian.heimes
2017-01-05 22:38:51ericvwsetmessageid: <1483655931.95.0.807787917048.issue29171@psf.upfronthosting.co.za>
2017-01-05 22:38:51ericvwlinkissue29171 messages
2017-01-05 22:38:51ericvwcreate