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.

classification
Title: blake2: Use lowest-common denominator signature of #pragma pack
Type: compile error Stage: resolved
Components: Build Versions: Python 3.6
process
Status: closed Resolution: duplicate
Dependencies: Superseder: BETA report: Python-3.6 build messages to stderr: AIX and "not GCC"
View: 28290
Assigned To: Nosy List: christian.heimes, ericvw, martin.panter
Priority: normal Keywords: patch

Created on 2017-01-05 22:55 by ericvw, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
blake2-pragma-pack-1.patch ericvw, 2017-01-05 22:55
Messages (2)
msg284784 - (view) Author: Eric N. Vander Weele (ericvw) * Date: 2017-01-05 22:55
Solaris Studio emits the following during compilation:

    "/tmp/Python-3.6.0/Modules/_blake2/impl/blake2.h", line 89: warning: ignoring malformed #pragma pack(n)
    "/tmp/Python-3.6.0/Modules/_blake2/impl/blake2.h", line 119: warning: ignoring malformed #pragma pack(n)

To make the usage of '#pragma pack' more portable, change to the
optional, single argument form.
msg284793 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2017-01-06 02:03
FWIW Issue 28290 was also opened about this pragma directive being not recognized by a compiler called xlC on AIX.
History
Date User Action Args
2022-04-11 14:58:41adminsetgithub: 73358
2022-01-29 23:27:45iritkatrielsetstatus: open -> closed
superseder: BETA report: Python-3.6 build messages to stderr: AIX and "not GCC"
resolution: duplicate
stage: resolved
2017-01-06 02:03:07martin.pantersetnosy: + martin.panter
messages: + msg284793
2017-01-05 22:55:18ericvwcreate