New submission from Michael Osipov <1983-01...@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 <rep...@bugs.python.org> <https://bugs.python.org/issue36734> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com