[New-bugs-announce] [issue36734] Modules/faulthandler.c does not compile on HP-UX due to bpo-35214/1584a0081500d35dc93ff88e5836df35faf3e3e2

Michael Osipov report at bugs.python.org
Fri Apr 26 07:29:08 EDT 2019


New submission from Michael Osipov <1983-01-06 at gmx.net>:

> /opt/aCC/bin/aCC -Ae  -O      -I./Include/internal  -I. -I./Include -I/opt/ports/include -I/opt/ports/include  -DPy_BUILD_CORE_BUILTIN  -c ./Modules/faulthandler.c -o Modules/faulthandler.o
> "./Modules/faulthandler.c", line 1373: error #2029: expected an expression
>           stack_t current_stack = {};

The fix is trivial:
> stack_t current_stack = {0};

Can also provide a PR for that.

----------
components: Build
messages: 340913
nosy: gregory.p.smith, michael-o
priority: normal
severity: normal
status: open
title: Modules/faulthandler.c does not compile on HP-UX due to bpo-35214/1584a0081500d35dc93ff88e5836df35faf3e3e2
type: compile error
versions: Python 3.8

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue36734>
_______________________________________


More information about the New-bugs-announce mailing list