S
Steven D'Aprano
Before I bother Python-Dev with this, can anyone else confirm that
building Python 3.4 from source using the latest version in the source
repository fails?
# Get the source code
hg clone http://hg.python.org/cpython
# Build Python (on Unix, sorry Windows and Mac people, you're on your own)
../configure --with-pydebug && make -j2
I get the following errors:
libpython3.4dm.a(pythonrun.o): In function `_Py_InitializeEx_Private':
/home/steve/python/cpython/Python/pythonrun.c:459: undefined reference to
`_PyTraceMalloc_Init'
libpython3.4dm.a(pythonrun.o): In function `Py_Finalize':
/home/steve/python/cpython/Python/pythonrun.c:648: undefined reference to
`_PyTraceMalloc_Fini'
collect2: ld returned 1 exit status
make: *** [Modules/_testembed] Error 1
Thanks in advance,
building Python 3.4 from source using the latest version in the source
repository fails?
# Get the source code
hg clone http://hg.python.org/cpython
# Build Python (on Unix, sorry Windows and Mac people, you're on your own)
../configure --with-pydebug && make -j2
I get the following errors:
libpython3.4dm.a(pythonrun.o): In function `_Py_InitializeEx_Private':
/home/steve/python/cpython/Python/pythonrun.c:459: undefined reference to
`_PyTraceMalloc_Init'
libpython3.4dm.a(pythonrun.o): In function `Py_Finalize':
/home/steve/python/cpython/Python/pythonrun.c:648: undefined reference to
`_PyTraceMalloc_Fini'
collect2: ld returned 1 exit status
make: *** [Modules/_testembed] Error 1
Thanks in advance,