[issue40244] AIX: build: _PyObject_GC_TRACK Asstertion failure

Michael Felt report at bugs.python.org
Mon Apr 13 07:46:43 EDT 2020


Michael Felt <aixtools at felt.demon.nl> added the comment:

After my build I have the following:

$ ./python -m test.pythoninfo|grep -E 'CFLAGS|CC|OPT|LDFLAGS'
Objects/genobject.c:127: _PyObject_GC_TRACK: Assertion "!(((PyGC_Head
*)(op)-1)->_gc_next != 0)" failed: object already tracked by the garbage
collector
Enable tracemalloc to get the memory block allocation traceback

object address  : 30084150
object refcount : 0
object type     : 20013710
object type name: generator
object repr     : <refcnt 0 at 30084150>

Fatal Python error: _PyObject_AssertFailed: _PyObject_AssertFailed
Python runtime state: core initialized

Current thread 0x00000001 (most recent call first):
  File "<frozen importlib._bootstrap_external>", line 1593 in _setup
  File "<frozen importlib._bootstrap_external>", line 1634 in _install
  File "<frozen importlib._bootstrap>", line 1189 in
_install_external_importers
ksh: 22151670 IOT/Abort trap(coredump)

See attached file for the script capture.

On 11/04/2020 15:13, Batuhan Taskaya wrote:
> Batuhan Taskaya <batuhanosmantaskaya at gmail.com> added the comment:
>
> I've just compiled python with (xlc 16.1.0, debug build) and can't experience that compile failure, can you give a specific spot that failure happens?
>
> -bash-4.4$ ./python -m test.pythoninfo|grep -E 'CFLAGS|CC|OPT|LDFLAGS'
> sysconfig[CC]: /opt/IBM/xlc/16.1.0/bin/xlc_r
> sysconfig[CFLAGS]: -DNDEBUG -O
> sysconfig[CONFIG_ARGS]: 'CC=/opt/IBM/xlc/16.1.0/bin/xlc_r'
> sysconfig[OPT]: -DNDEBUG -O
> sysconfig[PY_CFLAGS]: -DNDEBUG -O
> sysconfig[PY_CFLAGS_NODIST]: -I./Include/internal
> sysconfig[PY_STDMODULE_CFLAGS]: -DNDEBUG -O -I./Include/internal -I. -I./Include
>
> ----------
>
> _______________________________________
> Python tracker <report at bugs.python.org>
> <https://bugs.python.org/issue40244>
> _______________________________________
>

----------
Added file: https://bugs.python.org/file49058/issue40170.txt

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue40244>
_______________________________________
-------------- next part --------------
Script command is started on Mon Apr 13	06:29:37 CDT 2020.
$ .kxlc16-envc166xlc16
$ echo $PATH $CC
/opt/IBM/xlc/16.1.0/bin:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin:/usr/java7_64/jre/bin:/usr/java7_64/bin:/home/aixtools/bin xlc_r
$ updategit
Checking out files: 100% (160/160), done.
Previous HEAD position was 0003c2d... bpo-40096: Support __attribute__((__noreturn__)) on xlc (GH-19204)
Switched to branch 'master'
Your branch is up-to-date with 'upstream/master'.
remote:	Enumerating objects: 610, done.K
remote:	Counting objects: 100% (610/610), done.K
remote:	Compressing objects: 100% (2/2), done.K
remote:nTotale775:(delta(608),7reused 609 (delta 608), pack-reused 165K
Receiving objects: 100%	(775/775), 533.45 KiB |	0 bytes/s, done.
Resolving deltas: 100% (645/645), completed with 287 local objects.
>From https://github.com/python/cpython
   38aefc5..0c13e1f  master	-> upstream/master
   8a0a500..7a41638  2.7	-> upstream/2.7
   44c1cdd..0a9ec9f  3.7	-> upstream/3.7
   f7b0259..ee691b0  3.8	-> upstream/3.8
 * [new	tag]	     v2.7.18rc1	-> v2.7.18rc1
>From https://github.com/python/cpython
 * branch	     master	-> FETCH_HEAD
Updating 38aefc5..0c13e1f
Checking out files: 100% (195/195), done.
Fast-forward
 Doc/c-api/gcsupport.rst						     |	 18 
 Doc/howto/unicode.rst							     |	  5 
 Doc/library/dis.rst							     |	  6 
 Doc/library/multiprocessing.rst					     |	 13 
 Doc/library/socket.rst							     |	 11 
 Doc/library/ssl.rst							     |	  3 
 Doc/library/threading.rst						     |	  8 -
 Doc/whatsnew/3.9.rst							     |	 28 
 Include/Python.h							     |	  1 
 Include/cpython/abstract.h						     |	 10 
 Include/cpython/objimpl.h						     |	111 
 Include/cpython/pystate.h						     |	  7 
 Include/errcode.h							     |	  1 
 Include/genericaliasobject.h						     |	 14 
 Include/internal/pycore_abstract.h					     |	 22 
 Include/internal/pycore_ceval.h					     |	 11 
 Include/internal/pycore_gc.h						     |	 69 ++
 Include/internal/pycore_interp.h					     |	183 ++++
 Include/internal/pycore_object.h					     |	 11 
 Include/internal/pycore_pymem.h					     |	  3 
 Include/internal/pycore_pystate.h					     |	298 -----
 Include/internal/pycore_runtime.h					     |	143 +++
 Include/object.h							     |	  6 
 Include/objimpl.h							     |	 72 
 Include/pythread.h							     |	  9 
 Lib/_collections_abc.py						     |	 27 
 Lib/concurrent/futures/_base.py					     |	  3 
 Lib/concurrent/futures/thread.py					     |	  3 
 Lib/contextlib.py							     |	  6 
 Lib/ctypes/__init__.py							     |	  3 
 Lib/ctypes/test/test_loading.py					     |	  7 
 Lib/difflib.py								     |	  4 
 Lib/filecmp.py								     |	  4 
 Lib/fileinput.py							     |	  3 
 Lib/http/cookies.py							     |	  3 
 Lib/ipaddress.py							     |	  6 
 Lib/multiprocessing/managers.py					     |	  3 
 Lib/multiprocessing/pool.py						     |	  3 
 Lib/multiprocessing/queues.py						     |	  3 
 Lib/multiprocessing/shared_memory.py					     |	  3 
 Lib/os.py								     |	  5 
 Lib/queue.py								     |	  5 
 Lib/subprocess.py							     |	 24 
 Lib/symtable.py							     |	  2 
 Lib/tempfile.py							     |	 15 
 Lib/test/lock_tests.py							     |	 30 
 Lib/test/support/__init__.py						     |	  4 
 Lib/test/test_c_locale_coercion.py					     |	  4 
 Lib/test/test_descrtut.py						     |	  1 
 Lib/test/test_doctest.py						     |	  2 
 Lib/test/test_fstring.py						     |	  9 
 Lib/test/test_genericalias.py						     |	249 +++++
 Lib/test/test_os.py							     |	  3 
 Lib/test/test_subprocess.py						     |	  5 
 Lib/test/test_symtable.py						     |	  6 
 Lib/test/test_sys.py							     |	  4 
 Lib/test/test_tempfile.py						     |	  5 
 Lib/test/test_threading.py						     |	 42 
 Lib/test/test_types.py							     |	  1 
 Lib/test/test_typing.py						     |	 47 
 Lib/test/test_xml_etree.py						     |	  5 
 Lib/test/test_xml_etree_c.py						     |	 15 
 Lib/threading.py							     |	 25 
 Lib/types.py								     |	  3 
 Lib/typing.py								     |	145 --
 Lib/unittest/case.py							     |	  2 
 Lib/unittest/mock.py							     |	 74 
 Lib/unittest/test/testmock/testpatch.py				     |	  2 
 Lib/urllib/parse.py							     |	  3 
 Lib/xml/dom/minidom.py							     |	 23 
 Lib/xml/etree/ElementTree.py						     |	 14 
 Makefile.pre.in							     |	  4 
 Misc/ACKS								     |	  1 
 Misc/NEWS.d/next/C API/2020-04-04-23-51-59.bpo-40170.uXQ701.rst	     |	  3 
 Misc/NEWS.d/next/C API/2020-04-05-00-02-13.bpo-40170.IFsGZ-.rst	     |	  3 
 Misc/NEWS.d/next/C API/2020-04-05-00-21-38.bpo-40170.Tx0vy6.rst	     |	  4 
 Misc/NEWS.d/next/C API/2020-04-05-00-37-34.bpo-40170.Seuh3D.rst	     |	  4 
 Misc/NEWS.d/next/C API/2020-04-10-19-43-04.bpo-40241.Xm3w-1.rst	     |	  4 
 Misc/NEWS.d/next/C API/2020-04-13-02-56-24.bpo-40241._FOf7E.rst	     |	  1 
 Misc/NEWS.d/next/Core and Builtins/2020-01-28-17-19-18.bpo-39481.rqSeGl.rst |	  1 
 Misc/NEWS.d/next/Core and Builtins/2020-04-07-15-44-29.bpo-37388.stlxBq.rst |	  4 
 Misc/NEWS.d/next/Core and Builtins/2020-04-08-22-33-24.bpo-40082.WI3-lu.rst |	  2 
 Misc/NEWS.d/next/Core and Builtins/2020-04-11-17-52-03.bpo-40246.vXPze5.rst |	  1 
 Misc/NEWS.d/next/Documentation/2019-09-25-23-20-55.bpo-13743.5ToLDy.rst     |	  1 
 Misc/NEWS.d/next/Library/2017-10-14-21-02-40.bpo-31758.563ZZb.rst	     |	  2 
 Misc/NEWS.d/next/Library/2020-02-12-01-48-51.bpo-39011.hGve_t.rst	     |	  3 
 Misc/NEWS.d/next/Library/2020-03-19-16-33-03.bpo-39953.yy5lC_.rst	     |	  1 
 Misc/NEWS.d/next/Library/2020-03-27-08-57-46.bpo-25780.kIjVge.rst	     |	  1 
 Misc/NEWS.d/next/Library/2020-03-27-16-54-29.bpo-40089.VTq_8s.rst	     |	  6 
 Misc/NEWS.d/next/Library/2020-04-04-00-47-40.bpo-40126.Y-bTNP.rst	     |	  3 
 Misc/NEWS.d/next/Library/2020-04-06-11-05-13.bpo-40196.Jqowse.rst	     |	  2 
 Misc/NEWS.d/next/Library/2020-04-07-18-06-38.bpo-40149.mMU2iu.rst	     |	  1 
 Misc/NEWS.d/next/Library/2020-04-10-16-13-47.bpo-40234.tar4d_.rst	     |	  2 
 Misc/NEWS.d/next/Tests/2020-04-09-16-29-18.bpo-31904.ej348T.rst	     |	  1 
 Modules/_abc.c								     |	 26 
 Modules/_collectionsmodule.c						     |	  4 
 Modules/_csv.c								     |	  8 
 Modules/_ctypes/_ctypes.c						     |	 10 
 Modules/_ctypes/callproc.c						     |	  2 
 Modules/_ctypes/cfield.c						     |	  4 
 Modules/_curses_panel.c						     |	  2 
 Modules/_cursesmodule.c						     |	 10 
 Modules/_decimal/_decimal.c						     |	  4 
 Modules/_elementtree.c							     |	 28 
 Modules/_io/_iomodule.c						     |	  3 
 Modules/_io/bytesio.c							     |	  4 
 Modules/_io/iobase.c							     |	  3 
 Modules/_io/textio.c							     |	 15 
 Modules/_json.c							     |	 18 
 Modules/_localemodule.c						     |	  2 
 Modules/_operator.c							     |	  2 
 Modules/_pickle.c							     |	  2 
 Modules/_queuemodule.c							     |	  2 
 Modules/_sqlite/connection.c						     |	  4 
 Modules/_sre.c								     |	 24 
 Modules/_ssl.c								     |	  2 
 Modules/_ssl_data.h							     | 6499 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------
 Modules/_struct.c							     |	  4 
 Modules/_testcapimodule.c						     |	  3 
 Modules/_testinternalcapi.c						     |	 17 
 Modules/_threadmodule.c						     |	 91 
 Modules/_tkinter.c							     |	  4 
 Modules/cjkcodecs/cjkcodecs.h						     |	  2 
 Modules/cjkcodecs/multibytecodec.c					     |	  6 
 Modules/cjkcodecs/multibytecodec.h					     |	  2 
 Modules/clinic/_threadmodule.c.h					     |	 22 -
 Modules/gcmodule.c							     |	 18 
 Modules/itertoolsmodule.c						     |	  2 
 Modules/main.c								     |	  4 
 Modules/mmapmodule.c							     |	  2 
 Modules/posixmodule.c							     |	  5 
 Modules/pyexpat.c							     |	  2 
 Modules/readline.c							     |	  4 
 Modules/signalmodule.c							     |	 27 
 Modules/socketmodule.c							     |	  3 
 Modules/sre.h								     |	 14 
 Modules/sre_lib.h							     |	 28 
 Modules/unicodedata.c							     |	  6 
 Objects/abstract.c							     |	 34 
 Objects/bytearrayobject.c						     |	 14 
 Objects/bytes_methods.c						     |	  3 
 Objects/bytesobject.c							     |	 37 
 Objects/capsule.c							     |	  2 
 Objects/codeobject.c							     |	  2 
 Objects/descrobject.c							     |	  2 
 Objects/dictobject.c							     |	  1 
 Objects/enumobject.c							     |	  2 
 Objects/exceptions.c							     |	  4 
 Objects/fileobject.c							     |	  2 
 Objects/genericaliasobject.c						     |	507 +++++++++
 Objects/genobject.c							     |	  2 
 Objects/interpreteridobject.c						     |	  5 
 Objects/listobject.c							     |	  6 
 Objects/longobject.c							     |	  2 
 Objects/memoryobject.c							     |	  8 
 Objects/moduleobject.c							     |	  4 
 Objects/object.c							     |	 19 
 Objects/rangeobject.c							     |	  5 
 Objects/setobject.c							     |	  2 
 Objects/sliceobject.c							     |	  3 
 Objects/stringlib/codecs.h						     |	  2 
 Objects/stringlib/join.h						     |	  4 
 Objects/tupleobject.c							     |	  4 
 Objects/typeobject.c							     |	 60 
 Objects/unicodeobject.c						     |	326 +++---
 PC/_msi.c								     |	  8 
 PC/python3.def								     |	  2 
 PC/winreg.c								     |	  2 
 PCbuild/pythoncore.vcxproj						     |	  4 
 PCbuild/pythoncore.vcxproj.filters					     |	  9 
 Parser/tokenizer.c							     |	  4 
 Python/_warnings.c							     |	  4 
 Python/ast.c								     |	  2 
 Python/bltinmodule.c							     |	  2 
 Python/ceval.c								     |	219 ++--
 Python/ceval_gil.h							     |	 16 
 Python/codecs.c							     |	 26 
 Python/compile.c							     |	  4 
 Python/dynload_hpux.c							     |	  3 
 Python/fileutils.c							     |	  2 
 Python/formatter_unicode.c						     |	  6 
 Python/getargs.c							     |	  2 
 Python/import.c							     |	 12 
 Python/initconfig.c							     |	  4 
 Python/modsupport.c							     |	  3 
 Python/pylifecycle.c							     |	 78 
 Python/pystate.c							     |	 54 
 Python/pythonrun.c							     |	  7 
 Python/sysmodule.c							     |	 15 
 Python/thread_pthread.h						     |	 20 
 Python/traceback.c							     |	  4 
 Tools/ssl/make_ssl_data.py						     |	 27 
 configure								     |	 30 
 configure.ac								     |	 10 
 pyconfig.h.in								     |	  3 
 195 files changed, 8182 insertions(+),	2379 deletions(-)
 create	mode 100644 Include/genericaliasobject.h
 create	mode 100644 Include/internal/pycore_abstract.h
 create	mode 100644 Include/internal/pycore_gc.h
 create	mode 100644 Include/internal/pycore_interp.h
 create	mode 100644 Include/internal/pycore_runtime.h
 create	mode 100644 Lib/test/test_genericalias.py
 create	mode 100644 Misc/NEWS.d/next/C API/2020-04-04-23-51-59.bpo-40170.uXQ701.rst
 create	mode 100644 Misc/NEWS.d/next/C API/2020-04-05-00-02-13.bpo-40170.IFsGZ-.rst
 create	mode 100644 Misc/NEWS.d/next/C API/2020-04-05-00-21-38.bpo-40170.Tx0vy6.rst
 create	mode 100644 Misc/NEWS.d/next/C API/2020-04-05-00-37-34.bpo-40170.Seuh3D.rst
 create	mode 100644 Misc/NEWS.d/next/C API/2020-04-10-19-43-04.bpo-40241.Xm3w-1.rst
 create	mode 100644 Misc/NEWS.d/next/C API/2020-04-13-02-56-24.bpo-40241._FOf7E.rst
 create	mode 100644 Misc/NEWS.d/next/Core and Builtins/2020-01-28-17-19-18.bpo-39481.rqSeGl.rst
 create	mode 100644 Misc/NEWS.d/next/Core and Builtins/2020-04-07-15-44-29.bpo-37388.stlxBq.rst
 create	mode 100644 Misc/NEWS.d/next/Core and Builtins/2020-04-08-22-33-24.bpo-40082.WI3-lu.rst
 create	mode 100644 Misc/NEWS.d/next/Core and Builtins/2020-04-11-17-52-03.bpo-40246.vXPze5.rst
 create	mode 100644 Misc/NEWS.d/next/Documentation/2019-09-25-23-20-55.bpo-13743.5ToLDy.rst
 create	mode 100644 Misc/NEWS.d/next/Library/2017-10-14-21-02-40.bpo-31758.563ZZb.rst
 create	mode 100644 Misc/NEWS.d/next/Library/2020-02-12-01-48-51.bpo-39011.hGve_t.rst
 create	mode 100644 Misc/NEWS.d/next/Library/2020-03-19-16-33-03.bpo-39953.yy5lC_.rst
 create	mode 100644 Misc/NEWS.d/next/Library/2020-03-27-08-57-46.bpo-25780.kIjVge.rst
 create	mode 100644 Misc/NEWS.d/next/Library/2020-03-27-16-54-29.bpo-40089.VTq_8s.rst
 create	mode 100644 Misc/NEWS.d/next/Library/2020-04-04-00-47-40.bpo-40126.Y-bTNP.rst
 create	mode 100644 Misc/NEWS.d/next/Library/2020-04-06-11-05-13.bpo-40196.Jqowse.rst
 create	mode 100644 Misc/NEWS.d/next/Library/2020-04-07-18-06-38.bpo-40149.mMU2iu.rst
 create	mode 100644 Misc/NEWS.d/next/Library/2020-04-10-16-13-47.bpo-40234.tar4d_.rst
 create	mode 100644 Misc/NEWS.d/next/Tests/2020-04-09-16-29-18.bpo-31904.ej348T.rst
 delete	mode 100644 Modules/clinic/_threadmodule.c.h
 create	mode 100644 Objects/genericaliasobject.c
$ make distclean
make: 1254-002 Cannot find a rule to create target distclean from dependencies.
Stop.
$ ls -l	Makefile
ls: 0653-341 The file Makefile does not	exist.
$ pwd
/home/aixtools/python/cpython-master
$ ./configuree--without-computed-gotoso--with-pydebugc&&ptime-makes-j10ith-pydebugg&&&timeemakee-j10000000000000000000000
checking for git... found
checking build system type... powerpc-ibm-aix7.2.0.0
checking host system type... powerpc-ibm-aix7.2.0.0
checking for python3.9... no
checking for python3...	python3
checking for --enable-universalsdk... no
checking for --with-universal-archs... no
checking MACHDEP... "aix"
checking for gcc... xlc_r
checking whether the C compiler	works... yes
checking for C compiler	default	output file name... a.out
checking for suffix of executables...
checking whether we are	cross compiling... no
checking for suffix of object files... o
checking whether we are	using the GNU C	compiler... no
checking whether xlc_r accepts -g... yes
checking for xlc_r option to accept ISO	C89... none needed
checking how to	run the	C preprocessor... xlc_r	-E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for a sed that	does not truncate output... /usr/bin/sed
checking for --with-cxx-main=<compiler>... no
checking for c++... c++
configure:

  By default, distutils	will build C++ extension modules with "c++".
  If this is not intended, then	set CXX	on the configure command line.

checking for the platform triplet based	on compiler characteristics... none
checking for -Wl,--no-as-needed... no
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h	usability... no
checking minix/config.h	presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__...	yes
checking for the Android API level... not Android
checking for --with-suffix...
checking for case-insensitive build directory... no
checking LIBRARY... libpython$(VERSION)$(ABIFLAGS).a
checking LINKCC... $(srcdir)/Modules/makexp_aix	Modules/python.exp . $(LIBRARY); $(PURIFY) $(MAINCC)
checking for GNU ld... no
checking for --enable-shared...	no
checking for --enable-profiling... no
checking LDLIBRARY... libpython$(VERSION)$(ABIFLAGS).a
checking for ar... ar
checking for readelf...	no
checking for a BSD-compatible install... ./install-sh -c
checking for a thread-safe mkdir -p... ./install-sh -c -d
checking for --with-pydebug... yes
checking for --with-trace-refs... no
checking for --with-assertions... implied by --with-pydebug
checking for --enable-optimizations... no
checking PROFILE_TASK... -m test --pgo
checking for --with-lto... no
checking for llvm-profdata... no
checking whether pthreads are available	without	options... yes
checking whether c++ also accepts flags	for thread support... no
checking for ANSI C header files... (cached) yes
checking asm/types.h usability... no
checking asm/types.h presence... no
checking for asm/types.h... no
checking crypt.h usability... yes
checking crypt.h presence... yes
checking for crypt.h...	yes
checking conio.h usability... no
checking conio.h presence... no
checking for conio.h...	no
checking direct.h usability... no
checking direct.h presence... no
checking for direct.h... no
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h...	yes
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h...	yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h...	yes
checking grp.h usability... yes
checking grp.h presence... yes
checking for grp.h... yes
checking ieeefp.h usability... no
checking ieeefp.h presence... no
checking for ieeefp.h... no
checking io.h usability... no
checking io.h presence... no
checking for io.h... no
checking langinfo.h usability... yes
checking langinfo.h presence...	yes
checking for langinfo.h... yes
checking libintl.h usability...	yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking process.h usability...	no
checking process.h presence... no
checking for process.h... no
checking pthread.h usability...	yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking sched.h usability... yes
checking sched.h presence... yes
checking for sched.h...	yes
checking shadow.h usability... no
checking shadow.h presence... no
checking for shadow.h... no
checking signal.h usability... yes
checking signal.h presence... yes
checking for signal.h... yes
checking stropts.h usability...	yes
checking stropts.h presence... yes
checking for stropts.h... yes
checking termios.h usability...	yes
checking termios.h presence... yes
checking for termios.h... yes
checking utime.h usability... yes
checking utime.h presence... yes
checking for utime.h...	yes
checking poll.h	usability... yes
checking poll.h	presence... yes
checking for poll.h... yes
checking sys/devpoll.h usability... no
checking sys/devpoll.h presence... no
checking for sys/devpoll.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking sys/poll.h usability... yes
checking sys/poll.h presence...	yes
checking for sys/poll.h... yes
checking sys/audioio.h usability... no
checking sys/audioio.h presence... no
checking for sys/audioio.h... no
checking sys/xattr.h usability... no
checking sys/xattr.h presence... no
checking for sys/xattr.h... no
checking sys/bsdtty.h usability... no
checking sys/bsdtty.h presence... no
checking for sys/bsdtty.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/file.h usability... yes
checking sys/file.h presence...	yes
checking for sys/file.h... yes
checking sys/ioctl.h usability... yes
checking sys/ioctl.h presence... yes
checking for sys/ioctl.h... yes
checking sys/kern_control.h usability... no
checking sys/kern_control.h presence...	no
checking for sys/kern_control.h... no
checking sys/loadavg.h usability... no
checking sys/loadavg.h presence... no
checking for sys/loadavg.h... no
checking sys/lock.h usability... yes
checking sys/lock.h presence...	yes
checking for sys/lock.h... yes
checking sys/mkdev.h usability... no
checking sys/mkdev.h presence... no
checking for sys/mkdev.h... no
checking sys/modem.h usability... no
checking sys/modem.h presence... no
checking for sys/modem.h... no
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/random.h usability... no
checking sys/random.h presence... no
checking for sys/random.h... no
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking sys/sendfile.h	usability... no
checking sys/sendfile.h	presence... no
checking for sys/sendfile.h... no
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/statvfs.h usability... yes
checking sys/statvfs.h presence... yes
checking for sys/statvfs.h... yes
checking for sys/stat.h... (cached) yes
checking sys/syscall.h usability... no
checking sys/syscall.h presence... no
checking for sys/syscall.h... no
checking sys/sys_domain.h usability... no
checking sys/sys_domain.h presence... no
checking for sys/sys_domain.h... no
checking sys/termio.h usability... yes
checking sys/termio.h presence... yes
checking for sys/termio.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence...	yes
checking for sys/time.h... yes
checking sys/times.h usability... yes
checking sys/times.h presence... yes
checking for sys/times.h... yes
checking for sys/types.h... (cached) yes
checking sys/uio.h usability...	yes
checking sys/uio.h presence... yes
checking for sys/uio.h... yes
checking sys/un.h usability... yes
checking sys/un.h presence... yes
checking for sys/un.h... yes
checking sys/utsname.h usability... yes
checking sys/utsname.h presence... yes
checking for sys/utsname.h... yes
checking sys/wait.h usability... yes
checking sys/wait.h presence...	yes
checking for sys/wait.h... yes
checking pty.h usability... no
checking pty.h presence... no
checking for pty.h... no
checking libutil.h usability...	no
checking libutil.h presence... no
checking for libutil.h... no
checking sys/resource.h	usability... yes
checking sys/resource.h	presence... yes
checking for sys/resource.h... yes
checking netpacket/packet.h usability... no
checking netpacket/packet.h presence...	no
checking for netpacket/packet.h... no
checking sysexits.h usability... yes
checking sysexits.h presence...	yes
checking for sysexits.h... yes
checking bluetooth.h usability... no
checking bluetooth.h presence... no
checking for bluetooth.h... no
checking linux/tipc.h usability... no
checking linux/tipc.h presence... no
checking for linux/tipc.h... no
checking linux/random.h	usability... no
checking linux/random.h	presence... no
checking for linux/random.h... no
checking spawn.h usability... yes
checking spawn.h presence... yes
checking for spawn.h...	yes
checking util.h	usability... no
checking util.h	presence... no
checking for util.h... no
checking alloca.h usability... yes
checking alloca.h presence... yes
checking for alloca.h... yes
checking endian.h usability... no
checking endian.h presence... no
checking for endian.h... no
checking sys/endian.h usability... no
checking sys/endian.h presence... no
checking for sys/endian.h... no
checking sys/sysmacros.h usability... yes
checking sys/sysmacros.h presence... yes
checking for sys/sysmacros.h...	yes
checking linux/memfd.h usability... no
checking linux/memfd.h presence... no
checking for linux/memfd.h... no
checking linux/wait.h usability... no
checking linux/wait.h presence... no
checking for linux/wait.h... no
checking sys/memfd.h usability... no
checking sys/memfd.h presence... no
checking for sys/memfd.h... no
checking sys/mman.h usability... yes
checking sys/mman.h presence...	yes
checking for sys/mman.h... yes
checking for dirent.h that defines DIR... yes
checking for library containing	opendir... none	required
checking whether sys/types.h defines makedev...	no
checking for sys/mkdev.h... (cached) no
checking for sys/sysmacros.h...	(cached) yes
checking bluetooth/bluetooth.h usability... no
checking bluetooth/bluetooth.h presence... no
checking for bluetooth/bluetooth.h... no
checking for net/if.h... yes
checking for linux/netlink.h...	no
checking for linux/qrtr.h... no
checking for linux/vm_sockets.h... no
checking for linux/can.h... no
checking for linux/can/raw.h...	no
checking for linux/can/bcm.h...	no
checking for clock_t in	time.h... yes
checking for makedev...	yes
checking for le64toh...	no
checking for mode_t... yes
checking for off_t... yes
checking for pid_t... yes
checking for size_t... yes
checking for uid_t in sys/types.h... yes
checking for ssize_t...	yes
checking for __uint128_t... no
checking size of int...	4
checking size of long... 4
checking size of long long... 8
checking size of void *... 4
checking size of short... 2
checking size of float... 4
checking size of double... 8
checking size of fpos_t... 8
checking size of size_t... 4
checking size of pid_t... 4
checking size of uintptr_t... 4
checking for long double... yes
checking size of long double...	8
checking size of _Bool... 1
checking size of off_t... 8
checking whether to enable large file support... yes
checking size of time_t... 4
checking for pthread_t... yes
checking size of pthread_t... 4
checking size of pthread_key_t... 4
checking whether pthread_key_t is compatible with int... yes
checking for --enable-framework... no
checking for dyld... no
checking the extension of shared libraries... .so
checking LDSHARED... $(LIBPL)/ld_so_aix	$(CC) -bI:$(LIBPL)/python.exp
checking CCSHARED...
checking LINKFORSHARED... -Wl,-bE:Modules/python.exp -lld
checking CFLAGSFORSHARED...
checking SHLIBS... $(LIBS)
checking for sendfile in -lsendfile... no
checking for dlopen in -ldl... yes
checking for shl_load in -ldld... no
checking uuid/uuid.h usability... no
checking uuid/uuid.h presence... no
checking for uuid/uuid.h... no
checking uuid.h	usability... yes
checking uuid.h	presence... yes
checking for uuid.h... yes
checking for uuid_generate_time_safe...	no
checking for uuid_create... yes
checking for uuid_enc_be... no
checking for library containing	sem_init... none required
checking for textdomain	in -lintl... yes
checking for genuine AIX C++ extensions	support... yes
checking for the system	builddate... 1543
checking aligned memory	access is required... no
checking for --with-hash-algorithm... default
checking for --with-address-sanitizer... no
checking for --with-memory-sanitizer...	no
checking for --with-undefined-behavior-sanitizer... no
checking for t_open in -lnsl...	no
checking for socket in -lsocket... no
checking for --with-libs... no
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least	version	0.9.0... yes
checking for --with-system-expat... no
checking for --with-system-ffi... yes
checking for --with-system-libmpdec... no
checking for --with-decimal-contextvar... yes
checking for --enable-loadable-sqlite-extensions... no
checking for --with-tcltk-includes... default
checking for --with-tcltk-libs... default
checking for --with-dbmliborder...
checking if PTHREAD_SCOPE_SYSTEM is supported... yes
checking for pthread_sigmask...	yes
checking for pthread_getcpuclockid... yes
checking if --enable-ipv6 is specified... yes
checking if RFC2553 API	is available...	yes
checking ipv6 stack type... unknown
checking for CAN_RAW_FD_FRAMES... no
checking for CAN_RAW_JOIN_FILTERS... no
checking for --with-doc-strings... yes
checking for --with-pymalloc...	yes
checking for --with-c-locale-coercion... yes
checking for --with-valgrind...	no
checking for --with-dtrace... no
checking for dlopen... yes
checking DYNLOADFILE...	dynload_shlib.o
checking MACHDEP_OBJS... none
checking for alarm... yes
checking for accept4...	no
checking for setitimer... yes
checking for getitimer... yes
checking for bind_textdomain_codeset...	yes
checking for chown... yes
checking for clock... yes
checking for confstr...	yes
checking for copy_file_range...	no
checking for ctermid...	yes
checking for dup3... no
checking for execv... yes
checking for explicit_bzero... no
checking for explicit_memset...	no
checking for faccessat... yes
checking for fchmod... yes
checking for fchmodat... yes
checking for fchown... yes
checking for fchownat... yes
checking for fdwalk... no
checking for fexecve...	yes
checking for fdopendir... yes
checking for fork... yes
checking for fpathconf... yes
checking for fstatat...	yes
checking for ftime... yes
checking for ftruncate... yes
checking for futimesat... no
checking for futimens... yes
checking for futimes...	no
checking for gai_strerror... yes
checking for getentropy... no
checking for getgrgid_r... yes
checking for getgrnam_r... yes
checking for getgrouplist... no
checking for getgroups... yes
checking for getlogin... yes
checking for getloadavg... no
checking for getpeername... yes
checking for getpgid...	yes
checking for getpid... yes
checking for getpriority... yes
checking for getresuid... no
checking for getresgid... no
checking for getpwent... yes
checking for getpwnam_r... yes
checking for getpwuid_r... yes
checking for getspnam... no
checking for getspent... no
checking for getsid... yes
checking for getwd... yes
checking for if_nameindex... yes
checking for initgroups... yes
checking for kill... yes
checking for killpg... yes
checking for lchown... yes
checking for lockf... yes
checking for linkat... yes
checking for lstat... yes
checking for lutimes...	no
checking for mmap... yes
checking for memrchr...	no
checking for mbrtowc...	yes
checking for mkdirat...	yes
checking for mkfifo... yes
checking for madvise...	yes
checking for mkfifoat... yes
checking for mknod... yes
checking for mknodat...	yes
checking for mktime... yes
checking for mremap... no
checking for nice... yes
checking for openat... yes
checking for pathconf... yes
checking for pause... yes
checking for pipe2... no
checking for plock... yes
checking for poll... yes
checking for posix_fallocate...	yes
checking for posix_fadvise... yes
checking for posix_spawn... yes
checking for posix_spawnp... yes
checking for pread... yes
checking for preadv... yes
checking for preadv2...	no
checking for pthread_condattr_setclock... yes
checking for pthread_init... yes
checking for pthread_kill... yes
checking for pwrite... yes
checking for pwritev...	yes
checking for pwritev2... no
checking for readlink... yes
checking for readlinkat... yes
checking for readv... yes
checking for realpath... yes
checking for renameat... yes
checking for sem_open... yes
checking for sem_timedwait... yes
checking for sem_getvalue... yes
checking for sem_unlink... yes
checking for sendfile... no
checking for setegid...	yes
checking for seteuid...	yes
checking for setgid... yes
checking for sethostname... yes
checking for setlocale... yes
checking for setregid... yes
checking for setreuid... yes
checking for setresuid... no
checking for setresgid... no
checking for setsid... yes
checking for setpgid...	yes
checking for setpgrp...	yes
checking for setpriority... yes
checking for setuid... yes
checking for setvbuf...	yes
checking for sched_get_priority_max... yes
checking for sched_setaffinity... no
checking for sched_setscheduler... yes
checking for sched_setparam... yes
checking for sched_rr_get_interval... yes
checking for sigaction... yes
checking for sigaltstack... yes
checking for sigfillset... yes
checking for siginterrupt... yes
checking for sigpending... yes
checking for sigrelse... yes
checking for sigtimedwait... yes
checking for sigwait...	yes
checking for sigwaitinfo... yes
checking for snprintf... yes
checking for strftime... yes
checking for strlcpy...	no
checking for strsignal... yes
checking for symlinkat... yes
checking for sync... yes
checking for sysconf...	yes
checking for tcgetpgrp... yes
checking for tcsetpgrp... yes
checking for tempnam...	yes
checking for timegm... no
checking for times... yes
checking for tmpfile...	yes
checking for tmpnam... yes
checking for tmpnam_r... no
checking for truncate... yes
checking for uname... yes
checking for unlinkat... yes
checking for utimensat... yes
checking for utimes... yes
checking for waitid... yes
checking for waitpid...	yes
checking for wait3... yes
checking for wait4... yes
checking for wcscoll...	yes
checking for wcsftime... yes
checking for wcsxfrm...	yes
checking for wmemcmp...	yes
checking for writev... yes
checking for _getpty...	no
checking for rtpSpawn... no
checking for lchmod... no
checking whether dirfd is declared... yes
checking for chroot... yes
checking for link... yes
checking for symlink...	yes
checking for fchdir... yes
checking for fsync... yes
checking for fdatasync... yes
checking for epoll... no
checking for epoll_create1... no
checking for kqueue... no
checking for prlimit...	no
checking for memfd_create... no
checking for ctermid_r... no
checking for flock declaration... yes
checking for flock... no
checking for flock in -lbsd... yes
checking for getpagesize... yes
checking for broken unsetenv...	no
checking for true... true
checking for inet_aton in -lc... yes
checking for chflags...	no
checking for lchflags... no
checking for inflateCopy in -lz... yes
checking for hstrerror... no
checking for inet_aton... yes
checking for inet_pton... yes
checking for setgroups... yes
checking for openpty...	no
checking for openpty in	-lutil... no
checking for openpty in	-lbsd... no
checking for forkpty...	no
checking for forkpty in	-lutil... no
checking for forkpty in	-lbsd... no
checking for fseek64...	no
checking for fseeko... yes
checking for fstatvfs... yes
checking for ftell64...	no
checking for ftello... yes
checking for statvfs...	yes
checking for dup2... yes
checking for strdup... yes
checking for getpgrp...	yes
checking for setpgrp...	(cached) yes
checking for library containing	crypt... none required
checking for library containing	crypt_r... none	required
checking for crypt_r...	yes
checking for clock_gettime... yes
checking for clock_getres... yes
checking for clock_settime... yes
checking for major... yes
checking for getaddrinfo... yes
checking getaddrinfo bug... no
checking for getnameinfo... yes
checking whether time.h	and sys/time.h may both	be included... yes
checking whether struct	tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... no
checking whether tzname	is declared... yes
checking for tzname... yes
checking for struct stat.st_rdev... yes
checking for struct stat.st_blksize... yes
checking for struct stat.st_flags... no
checking for struct stat.st_gen... yes
checking for struct stat.st_birthtime... no
checking for struct stat.st_blocks... yes
checking for struct passwd.pw_gecos... yes
checking for struct passwd.pw_passwd...	yes
checking for siginfo_t.si_band... yes
checking for time.h that defines altzone... no
checking whether sys/select.h and sys/time.h may both be included... yes
checking for addrinfo... yes
checking for sockaddr_storage... yes
checking for sockaddr_alg... no
checking whether char is unsigned... yes
checking for an	ANSI C-conforming const... yes
checking for working signed char... yes
checking for prototypes... yes
checking for variable length prototypes	and stdarg.h...	yes
checking for socketpair... yes
checking if sockaddr has sa_len	member... yes
checking for gethostbyname_r...	yes
checking gethostbyname_r with 6	args...	no
checking gethostbyname_r with 5	args...	no
checking gethostbyname_r with 3	args...	yes
checking for __fpu_control... no
checking for __fpu_control in -lieee...	no
checking for --with-libm=STRING... default LIBM="-lm"
checking for --with-libc=STRING... default LIBC=""
checking for x64 gcc inline assembler... no
checking whether float word ordering is	bigendian... yes
checking whether we can	use gcc	inline assembler to get	and set	x87 control word... no
checking whether we can	use gcc	inline assembler to get	and set	mc68881	fpcr...	no
checking for x87-style double rounding... no
checking for acosh... yes
checking for asinh... yes
checking for atanh... yes
checking for copysign... yes
checking for erf... yes
checking for erfc... yes
checking for expm1... yes
checking for finite... yes
checking for gamma... yes
checking for hypot... yes
checking for lgamma... yes
checking for log1p... yes
checking for log2... yes
checking for round... yes
checking for tgamma... yes
checking whether isinf is declared... yes
checking whether isnan is declared... yes
checking whether isfinite is declared... yes
checking whether POSIX semaphores are enabled... yes
checking for broken sem_getvalue... no
checking whether RTLD_LAZY is declared... yes
checking whether RTLD_NOW is declared... yes
checking whether RTLD_GLOBAL is	declared... yes
checking whether RTLD_LOCAL is declared... yes
checking whether RTLD_NODELETE is declared... no
checking whether RTLD_NOLOAD is	declared... no
checking whether RTLD_DEEPBIND is declared... no
checking whether RTLD_MEMBER is	declared... yes
checking digit size for	Python's longs... no value specified
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h...	yes
checking size of wchar_t... 2
checking for UCS-4 tcl... no
checking whether wchar_t is signed... no
checking whether wchar_t is usable... yes
checking whether byte ordering is bigendian... yes
checking ABIFLAGS... d
checking SOABI... cpython-39d
checking LDVERSION... $(VERSION)$(ABIFLAGS)
checking for --with-platlibdir... no
checking whether right shift extends the sign bit... yes
checking for getc_unlocked() and friends... yes
checking how to	link readline libs... -lreadline
checking for rl_pre_input_hook in -lreadline...	no
checking for rl_completion_display_matches_hook	in -lreadline... no
checking for rl_resize_terminal	in -lreadline... yes
checking for rl_completion_matches in -lreadline... yes
checking for append_history in -lreadline... yes
checking for broken nice()... no
checking for broken poll()... no
checking for working tzset()...	yes
checking for tv_nsec in	struct stat... yes
checking for tv_nsec2 in struct	stat...	no
checking curses.h usability... yes
checking curses.h presence... yes
checking for curses.h... yes
checking ncurses.h usability...	no
checking ncurses.h presence... no
checking for ncurses.h... no
checking for term.h... yes
checking whether mvwdelch is an	expression... yes
checking whether WINDOW	has _flags... yes
checking for is_pad... no
checking for is_term_resized...	no
checking for resize_term... no
checking for resizeterm... no
checking for immedok...	yes
checking for syncok... yes
checking for wchgat... yes
checking for filter... yes
checking for has_key...	no
checking for typeahead... yes
checking for use_env...	yes
configure: checking for	device files
checking for /dev/ptmx... no
checking for /dev/ptc... yes
checking for %zd printf() format support... yes
checking for socklen_t... yes
checking for broken mbstowcs...	no
checking for --with-computed-gotos... no
checking whether xlc_r supports	computed gotos... yes
checking for build directories... done
checking for -O2... yes
checking for glibc _FORTIFY_SOURCE/memmove bug... no
checking for stdatomic.h... no
checking for GCC >= 4.7	__atomic builtins... no
checking for ensurepip... upgrade
checking if the	dirent structure of a d_type field... no
checking for the Linux getrandom() syscall... no
checking for the getrandom() function... no
checking for library containing	shm_open... none required
checking for sys/mman.h... (cached) yes
checking for shm_open... yes
checking for shm_unlink... yes
checking for pkg-config... /usr/bin/pkg-config
checking whether compiling and linking against OpenSSL works...	yes
checking for X509_VERIFY_PARAM_set1_host in libssl... yes
checking for --with-ssl-default-suites... python
configure: creating ./config.status
config.status: creating	Makefile.pre
config.status: creating	Misc/python.pc
config.status: creating	Misc/python-embed.pc
config.status: creating	Misc/python-config.sh
config.status: creating	Modules/ld_so_aix
config.status: creating	pyconfig.h
creating Modules/Setup.local
creating Makefile
$ make
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Programs/python.o ./Programs/python.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Parser/acceler.o Parser/acceler.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Parser/grammar1.o Parser/grammar1.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Parser/listnode.o Parser/listnode.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Parser/node.o Parser/node.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Parser/parser.o	Parser/parser.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Parser/token.o Parser/token.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Parser/myreadline.o Parser/myreadline.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Parser/parsetok.o Parser/parsetok.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Parser/tokenizer.o Parser/tokenizer.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/abstract.o Objects/abstract.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/accu.o Objects/accu.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/boolobject.o Objects/boolobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/bytes_methods.o	Objects/bytes_methods.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/bytearrayobject.o Objects/bytearrayobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/bytesobject.o Objects/bytesobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/call.o Objects/call.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/capsule.o Objects/capsule.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/cellobject.o Objects/cellobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/classobject.o Objects/classobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/codeobject.o Objects/codeobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/complexobject.o	Objects/complexobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/descrobject.o Objects/descrobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/enumobject.o Objects/enumobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/exceptions.o Objects/exceptions.c
    1500-030: (I) INFORMATION: _PyExc_Init: Additional optimization may	be attained by recompiling and specifying MAXMEM option	with a value greater than 8192.
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/genericaliasobject.o Objects/genericaliasobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/genobject.o Objects/genobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/fileobject.o Objects/fileobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/floatobject.o Objects/floatobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/frameobject.o Objects/frameobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/funcobject.o Objects/funcobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/interpreteridobject.o Objects/interpreteridobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/iterobject.o Objects/iterobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/listobject.o Objects/listobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/longobject.o Objects/longobject.c
    1500-030: (I) INFORMATION: long_to_decimal_string_internal:	Additional optimization	may be attained	by recompiling and specifying MAXMEM option with a value greater than 8192.
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/dictobject.o Objects/dictobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/odictobject.o Objects/odictobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/memoryobject.o Objects/memoryobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/methodobject.o Objects/methodobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/moduleobject.o Objects/moduleobject.c
"Objects/moduleobject.c", line 281.20: 1506-068	(W) Operation between types "struct _object*(*)(struct _object*,struct PyModuleDef*)" and "void*" is not allowed.
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/namespaceobject.o Objects/namespaceobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/object.o Objects/object.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/obmalloc.o Objects/obmalloc.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/picklebufobject.o Objects/picklebufobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/rangeobject.o Objects/rangeobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/setobject.o Objects/setobject.c
    1500-030: (I) INFORMATION: test_c_api: Additional optimization may be attained by recompiling and specifying MAXMEM	option with a value greater than 8192.
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/sliceobject.o Objects/sliceobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/structseq.o Objects/structseq.c
"Objects/structseq.c", line 465.45: 1506-196 (W) Initialization	between	types "void*" and "void(*)(struct _object*)" is	not allowed.
"Objects/structseq.c", line 466.42: 1506-196 (W) Initialization	between	types "void*" and "struct _object*(*)(struct _object*)"	is not allowed.
"Objects/structseq.c", line 469.41: 1506-196 (W) Initialization	between	types "void*" and "struct _object*(*)(struct _typeobject*,struct _object*,struct _object*)" is not allowed.
"Objects/structseq.c", line 471.46: 1506-196 (W) Initialization	between	types "void*" and "int(*)(struct _object*,int(*)(struct	_object*,void*),void*)"	is not allowed.
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/tupleobject.o Objects/tupleobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/typeobject.o Objects/typeobject.c
    1500-030: (I) INFORMATION: type_new: Additional optimization may be	attained by recompiling	and specifying MAXMEM option with a value greater than 8192.
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/unicodeobject.o	Objects/unicodeobject.c
    1500-030: (I) INFORMATION: _copy_characters: Additional optimization may be	attained by recompiling	and specifying MAXMEM option with a value greater than 8192.
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/unicodectype.o Objects/unicodectype.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Objects/weakrefobject.o	Objects/weakrefobject.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/_warnings.o Python/_warnings.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/Python-ast.o Python/Python-ast.c
"Python/Python-ast.c", line 1103.24: 1506-196 (W) Initialization between types "void(*)(void*)"	and "void*" is not allowed.
"Python/Python-ast.c", line 1202.21: 1506-196 (W) Initialization between types "void*" and "void(*)(struct {...}*)" is not allowed.
"Python/Python-ast.c", line 1203.22: 1506-196 (W) Initialization between types "void*" and "struct _object*(*)(struct _object*,struct _object*)" is not	allowed.
"Python/Python-ast.c", line 1204.22: 1506-196 (W) Initialization between types "void*" and "int(*)(struct _object*,struct _object*,struct _object*)" is	not allowed.
"Python/Python-ast.c", line 1205.22: 1506-196 (W) Initialization between types "void*" and "int(*)(struct {...}*,int(*)(struct _object*,void*),void*)" is not allowed.
"Python/Python-ast.c", line 1206.19: 1506-196 (W) Initialization between types "void*" and "int(*)(struct {...}*)" is not allowed.
"Python/Python-ast.c", line 1210.18: 1506-196 (W) Initialization between types "void*" and "int(*)(struct _object*,struct _object*,struct _object*)" is	not allowed.
"Python/Python-ast.c", line 1211.19: 1506-196 (W) Initialization between types "void*" and "struct _object*(*)(struct _typeobject*,long)" is not allowed.
"Python/Python-ast.c", line 1212.17: 1506-196 (W) Initialization between types "void*" and "struct _object*(*)(struct _typeobject*,struct _object*,struct _object*)" is	not allowed.
"Python/Python-ast.c", line 1213.18: 1506-196 (W) Initialization between types "void*" and "void(*)(void*)" is not allowed.
    1500-030: (I) INFORMATION: init_identifiers: Additional optimization may be	attained by recompiling	and specifying MAXMEM option with a value greater than 8192.
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/asdl.o Python/asdl.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/ast.o Python/ast.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/ast_opt.o Python/ast_opt.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/ast_unparse.o Python/ast_unparse.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/bltinmodule.o Python/bltinmodule.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/ceval.o Python/ceval.c
    1500-030: (I) INFORMATION: _PyEval_EvalFrameDefault: Additional optimization may be	attained by recompiling	and specifying MAXMEM option with a value greater than 8192.
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/codecs.o	Python/codecs.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/compile.o Python/compile.c
    1500-030: (I) INFORMATION: _Py_Mangle: Additional optimization may be attained by recompiling and specifying MAXMEM	option with a value greater than 8192.
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/context.o Python/context.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/dynamic_annotations.o Python/dynamic_annotations.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/errors.o	Python/errors.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/frozenmain.o Python/frozenmain.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/future.o	Python/future.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/getargs.o Python/getargs.c
    1500-030: (I) INFORMATION: convertsimple: Additional optimization may be attained by recompiling and specifying MAXMEM option with a value greater than 8192.
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/getcompiler.o Python/getcompiler.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/getcopyright.o Python/getcopyright.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -DPLATFORM='"aix"'	-o Python/getplatform.o	./Python/getplatform.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/getversion.o Python/getversion.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/graminit.o Python/graminit.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/hamt.o Python/hamt.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/import.o	Python/import.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -I. -o Python/importdl.o ./Python/importdl.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/initconfig.o Python/initconfig.c
    1500-030: (I) INFORMATION: config_as_dict: Additional optimization may be attained by recompiling and specifying MAXMEM option with	a value	greater	than 8192.
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/marshal.o Python/marshal.c
    1500-030: (I) INFORMATION: r_object: Additional optimization may be	attained by recompiling	and specifying MAXMEM option with a value greater than 8192.
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/modsupport.o Python/modsupport.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/mysnprintf.o Python/mysnprintf.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/mystrtoul.o Python/mystrtoul.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/pathconfig.o Python/pathconfig.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/peephole.o Python/peephole.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/preconfig.o Python/preconfig.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/pyarena.o Python/pyarena.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/pyctype.o Python/pyctype.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/pyfpe.o Python/pyfpe.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/pyhash.o	Python/pyhash.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/pylifecycle.o Python/pylifecycle.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/pymath.o	Python/pymath.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/pystate.o Python/pystate.c
"Python/pystate.c", line 63.26:	1506-196 (W) Initialization between types "void*" and "struct _object*(*)(struct _object*,void*)" is not allowed.
"Python/pystate.c", line 69.29:	1506-068 (W) Operation between types "struct _object*(*)(struct	_object*,void*)" and "void*" is	not allowed.
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/pythonrun.o Python/pythonrun.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/pytime.o	Python/pytime.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/bootstrap_hash.o	Python/bootstrap_hash.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/structmember.o Python/structmember.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/symtable.o Python/symtable.c
    1500-030: (I) INFORMATION: symtable_visit_stmt: Additional optimization may	be attained by recompiling and specifying MAXMEM option	with a value greater than 8192.
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE  -DABIFLAGS='"d"'	-DPLATLIBDIR='"lib"'	-o Python/sysmodule.o ./Python/sysmodule.c
    1500-030: (I) INFORMATION: _PySys_InitCore:	Additional optimization	may be attained	by recompiling and specifying MAXMEM option with a value greater than 8192.
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/thread.o	Python/thread.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/traceback.o Python/traceback.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/getopt.o	Python/getopt.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/pystrcmp.o Python/pystrcmp.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/pystrtod.o Python/pystrtod.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/pystrhex.o Python/pystrhex.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE  -o Python/dtoa.o Python/dtoa.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/formatter_unicode.o Python/formatter_unicode.c
    1500-030: (I) INFORMATION: format_complex_internal:	Additional optimization	may be attained	by recompiling and specifying MAXMEM option with a value greater than 8192.
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/fileutils.o Python/fileutils.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE  -DSOABI='"cpython-39d"'  -o Python/dynload_shlib.o ./Python/dynload_shlib.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Modules/config.o Modules/config.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -DPYTHONPATH='""'	-DPREFIX='"/usr/local"'	 -DEXEC_PREFIX='"/usr/local"'  -DVERSION='"3.9"'  -DVPATH='""'	-DPLATLIBDIR='"lib"'  -o Modules/getpath.o ./Modules/getpath.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Modules/main.o Modules/main.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Modules/gcmodule.o Modules/gcmodule.c
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -DPy_BUILD_CORE_BUILTIN -I./Include/internal	-c ./Modules/posixmodule.c -o Modules/posixmodule.o
"./Modules/posixmodule.c", line	6372.11: 1506-131 (W) Explicit dimension specification or initializer required for an auto or static array.
"./Modules/posixmodule.c", line	12681.24: 1506-196 (W) Initialization between types "void(*)(void*)" and "void*" is not	allowed.
"./Modules/posixmodule.c", line	12985.17: 1506-196 (W) Initialization between types "void*" and	"struct	_object*(*)(struct _typeobject*,struct _object*,struct _object*)" is not allowed.
"./Modules/posixmodule.c", line	12986.21: 1506-196 (W) Initialization between types "void*" and	"void(*)(struct	{...}*)" is not	allowed.
"./Modules/posixmodule.c", line	12987.18: 1506-196 (W) Initialization between types "void*" and	"struct	_object*(*)(struct {...}*)" is not allowed.
"./Modules/posixmodule.c", line	13400.24: 1506-196 (W) Initialization between types "void(*)(void*)" and "void*" is not	allowed.
"./Modules/posixmodule.c", line	13413.17: 1506-196 (W) Initialization between types "void*" and	"struct	_object*(*)(struct _typeobject*,struct _object*,struct _object*)" is not allowed.
"./Modules/posixmodule.c", line	13414.21: 1506-196 (W) Initialization between types "void*" and	"void(*)(struct	{...}*)" is not	allowed.
"./Modules/posixmodule.c", line	13415.22: 1506-196 (W) Initialization between types "void*" and	"void(*)(struct	{...}*)" is not	allowed.
"./Modules/posixmodule.c", line	13416.18: 1506-196 (W) Initialization between types "void*" and	"struct	_object*(*)(struct _object*)" is not allowed.
"./Modules/posixmodule.c", line	13417.22: 1506-196 (W) Initialization between types "void*" and	"struct	_object*(*)(struct {...}*)" is not allowed.
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -c ./Modules/errnomodule.c -o Modules/errnomodule.o
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -c ./Modules/pwdmodule.c -o Modules/pwdmodule.o
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -c ./Modules/_sre.c -o Modules/_sre.o
    1500-030: (I) INFORMATION: sre_ucs1_count: Additional optimization may be attained by recompiling and specifying MAXMEM option with	a value	greater	than 8192.
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -c ./Modules/_codecsmodule.c	-o Modules/_codecsmodule.o
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -c ./Modules/_weakref.c -o Modules/_weakref.o
"./Modules/_weakref.c",	line 171.19: 1506-196 (W) Initialization between types "void*" and "int(*)(struct _object*)" is	not allowed.
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -DPy_BUILD_CORE_BUILTIN -I./Include/internal	-c ./Modules/_functoolsmodule.c	-o Modules/_functoolsmodule.o
"./Modules/_functoolsmodule.c",	line 1446.19: 1506-196 (W) Initialization between types	"void*"	and "int(*)(struct _object*)" is not allowed.
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -c ./Modules/_operator.c -o Modules/_operator.o
"./Modules/_operator.c", line 1769.19: 1506-196	(W) Initialization between types "void*" and "int(*)(struct _object*)" is not allowed.
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -c ./Modules/_collectionsmodule.c -o	Modules/_collectionsmodule.o
"./Modules/_collectionsmodule.c", line 2587.19:	1506-196 (W) Initialization between types "void*" and "int(*)(struct _object*)"	is not allowed.
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -c ./Modules/_abc.c -o Modules/_abc.o
"./Modules/_abc.c", line 101.17: 1506-196 (W) Initialization between types "void*" and "struct _object*(*)(struct _typeobject*,struct _object*,struct _object*)" is not	allowed.
"./Modules/_abc.c", line 102.21: 1506-196 (W) Initialization between types "void*" and "void(*)(struct {...}*)"	is not allowed.
"./Modules/_abc.c", line 103.22: 1506-196 (W) Initialization between types "void*" and "int(*)(struct {...}*,int(*)(struct _object*,void*),void*)" is not allowed.
"./Modules/_abc.c", line 104.19: 1506-196 (W) Initialization between types "void*" and "int(*)(struct {...}*)" is not allowed.
"./Modules/_abc.c", line 884.19: 1506-196 (W) Initialization between types "void*" and "int(*)(struct _object*)" is not	allowed.
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -c ./Modules/itertoolsmodule.c -o Modules/itertoolsmodule.o
"./Modules/itertoolsmodule.c", line 4718.19: 1506-196 (W) Initialization between types "void*" and "int(*)(struct _object*)" is	not allowed.
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -c ./Modules/atexitmodule.c -o Modules/atexitmodule.o
"./Modules/atexitmodule.c", line 335.19: 1506-196 (W) Initialization between types "void*" and "int(*)(struct _object*)" is not	allowed.
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -DPy_BUILD_CORE_BUILTIN -I./Include/internal	-c ./Modules/signalmodule.c -o Modules/signalmodule.o
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -c ./Modules/_stat.c	-o Modules/_stat.o
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -DPy_BUILD_CORE_BUILTIN -I./Include/internal	-c ./Modules/timemodule.c -o Modules/timemodule.o
"./Modules/timemodule.c", line 1834.19:	1506-196 (W) Initialization between types "void*" and "int(*)(struct _object*)"	is not allowed.
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -DPy_BUILD_CORE_BUILTIN -I./Include/internal	-c ./Modules/_threadmodule.c -o	Modules/_threadmodule.o
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -DPy_BUILD_CORE_BUILTIN -c ./Modules/_localemodule.c	-o Modules/_localemodule.o
"./Modules/_localemodule.c", line 784.19: 1506-196 (W) Initialization between types "void*" and	"int(*)(struct _object*)" is not allowed.
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -DPy_BUILD_CORE_BUILTIN -I./Include/internal	-I./Modules/_io	-c ./Modules/_io/_iomodule.c -o	Modules/_iomodule.o
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -DPy_BUILD_CORE_BUILTIN -I./Include/internal	-I./Modules/_io	-c ./Modules/_io/iobase.c -o Modules/iobase.o
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -DPy_BUILD_CORE_BUILTIN -I./Include/internal	-I./Modules/_io	-c ./Modules/_io/fileio.c -o Modules/fileio.o
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -DPy_BUILD_CORE_BUILTIN -I./Include/internal	-I./Modules/_io	-c ./Modules/_io/bytesio.c -o Modules/bytesio.o
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -DPy_BUILD_CORE_BUILTIN -I./Include/internal	-I./Modules/_io	-c ./Modules/_io/bufferedio.c -o Modules/bufferedio.o
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -DPy_BUILD_CORE_BUILTIN -I./Include/internal	-I./Modules/_io	-c ./Modules/_io/textio.c -o Modules/textio.o
    1500-030: (I) INFORMATION: _io_TextIOWrapper_tell_impl: Additional optimization may	be attained by recompiling and specifying MAXMEM option	with a value greater than 8192.
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -DPy_BUILD_CORE_BUILTIN -I./Include/internal	-I./Modules/_io	-c ./Modules/_io/stringio.c -o Modules/stringio.o
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -c ./Modules/faulthandler.c -o Modules/faulthandler.o
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -c ./Modules/_tracemalloc.c -o Modules/_tracemalloc.o
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -c ./Modules/hashtable.c -o Modules/hashtable.o
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -c ./Modules/symtablemodule.c -o Modules/symtablemodule.o
	xlc_r  -O  -O	 -I./Include/internal  -I. -I./Include	  -DPy_BUILD_CORE_BUILTIN  -c ./Modules/xxsubtype.c -o Modules/xxsubtype.o
"./Modules/xxsubtype.c", line 293.19: 1506-196 (W) Initialization between types	"void*"	and "int(*)(struct _object*)" is not allowed.
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE  -DGITVERSION="\"`LC_ALL=C	git --git-dir ./.git rev-parse --short HEAD`\""	 -DGITTAG="\"`LC_ALL=C git --git-dir ./.git describe --all --always --dirty`\""	 -DGITBRANCH="\"`LC_ALL=C git --git-dir	./.git name-rev	--name-only HEAD`\""  -o Modules/getbuildinfo.o	./Modules/getbuildinfo.c
	xlc_r -c  -O  -O    -I./Include/internal  -I. -I./Include    -DPy_BUILD_CORE -o	Python/frozen.o	Python/frozen.c
	rm -f libpython3.9d.a
	ar rcs libpython3.9d.a Modules/getbuildinfo.o  Parser/acceler.o	 Parser/grammar1.o  Parser/listnode.o  Parser/node.o  Parser/parser.o  Parser/token.o	Parser/myreadline.o Parser/parsetok.o Parser/tokenizer.o  Objects/abstract.o  Objects/accu.o  Objects/boolobject.o  Objects/bytes_methods.o  Objects/bytearrayobject.o	Objects/bytesobject.o  Objects/call.o  Objects/capsule.o  Objects/cellobject.o	Objects/classobject.o  Objects/codeobject.o  Objects/complexobject.o  Objects/descrobject.o  Objects/enumobject.o  Objects/exceptions.o	 Objects/genericaliasobject.o  Objects/genobject.o  Objects/fileobject.o  Objects/floatobject.o	 Objects/frameobject.o	Objects/funcobject.o  Objects/interpreteridobject.o  Objects/iterobject.o  Objects/listobject.o	 Objects/longobject.o  Objects/dictobject.o  Objects/odictobject.o  Objects/memoryobject.o  Objects/methodobject.o  Objects/moduleobject.o  Objects/namespaceobject.o  Objects/object.o	 Objects/obmalloc.o  Objects/picklebufobject.o	Objects/rangeobject
 .o  Objects/setobject.o  Objects/sliceobject.o  Objects/structseq.o	Objects/tupleobject.o  Objects/typeobject.o  Objects/unicodeobject.o  Objects/unicodectype.o  Objects/weakrefobject.o  Python/_warnings.o  Python/Python-ast.o	Python/asdl.o  Python/ast.o  Python/ast_opt.o  Python/ast_unparse.o  Python/bltinmodule.o  Python/ceval.o  Python/codecs.o  Python/compile.o  Python/context.o	Python/dynamic_annotations.o  Python/errors.o  Python/frozenmain.o  Python/future.o  Python/getargs.o  Python/getcompiler.o  Python/getcopyright.o  Python/getplatform.o  Python/getversion.o  Python/graminit.o  Python/hamt.o	 Python/import.o  Python/importdl.o  Python/initconfig.o  Python/marshal.o  Python/modsupport.o	 Python/mysnprintf.o  Python/mystrtoul.o  Python/pathconfig.o  Python/peephole.o  Python/preconfig.o  Python/pyarena.o	Python/pyctype.o  Python/pyfpe.o  Python/pyhash.o  Python/pylifecycle.o	 Python/pymath.o  Python/pystate.o  Python/pythonrun.o	Python/pytime.o	 Python/bootstrap_hash.o  Pyt
 hon/structmember.o	 Python/symtable.o  Python/sysmodule.o	Python/thread.o	 Python/traceback.o  Python/getopt.o  Python/pystrcmp.o	 Python/pystrtod.o  Python/pystrhex.o  Python/dtoa.o  Python/formatter_unicode.o  Python/fileutils.o  Python/dynload_shlib.o	    Modules/config.o  Modules/getpath.o	 Modules/main.o	 Modules/gcmodule.o  Modules/posixmodule.o  Modules/errnomodule.o  Modules/pwdmodule.o	Modules/_sre.o	Modules/_codecsmodule.o	 Modules/_weakref.o  Modules/_functoolsmodule.o	 Modules/_operator.o  Modules/_collectionsmodule.o  Modules/_abc.o  Modules/itertoolsmodule.o  Modules/atexitmodule.o  Modules/signalmodule.o  Modules/_stat.o	Modules/timemodule.o  Modules/_threadmodule.o  Modules/_localemodule.o	Modules/_iomodule.o Modules/iobase.o Modules/fileio.o Modules/bytesio.o	Modules/bufferedio.o Modules/textio.o Modules/stringio.o  Modules/faulthandler.o  Modules/_tracemalloc.o Modules/hashtable.o  Modules/symtablemodule.o	Modules/xxsubtype.o  Python/frozen.o
	./Modules/makexp_aix Modules/python.exp	. libpython3.9d.a;  xlc_r     -Wl,-bE:Modules/python.exp -lld -o python	Programs/python.o libpython3.9d.a -lintl -ldl  -lm   -l
	 ./python -E -S	-m sysconfig --generate-posix-vars ; if	test $?	-ne 0 ;	then  echo "generate-posix-vars	failed"	;  rm -f ./pybuilddir.txt ;  exit 1 ;  fi
Objects/genobject.c:127: _PyObject_GC_TRACK: Assertion "!(((PyGC_Head *)(op)-1)->_gc_next != 0)" failed: object	already	tracked	by the garbage collector
Enable tracemalloc to get the memory block allocation traceback

object address	: 30084150
object refcount	: 0
object type	: 20013710
object type name: generator
object repr	: <refcnt 0 at 30084150>

Fatal Python error: _PyObject_AssertFailed: _PyObject_AssertFailed
Python runtime state: core initialized

Current	thread 0x00000001 (most	recent call first):
  File "<frozen	importlib._bootstrap_external>", line 1593 in _setup
  File "<frozen	importlib._bootstrap_external>", line 1634 in _install
  File "<frozen	importlib._bootstrap>",	line 1189 in _install_external_importers
/bin/sh: 26542810 IOT/Abort trap(coredump)
make: 1254-004 The error code from the last command is 134.


Stop.
$

Script command is complete on Mon Apr 13 06:38:26 CDT 2020.


More information about the Python-bugs-list mailing list