I am running debian stretch on 64bit arm system. I am trying to install python 3.6.2. But facing errors in these tests while running make test.
I have installed these libraries :: apt install liblzma-dev libz-dev libreadline-dev libncursesw5-dev libssl-dev libgdbm-dev libsqlite3-dev libbz2-dev tk-dev libc6-dev libdb-dev libmpdec-dev
test_ctype test_pass_by_value is still a issue for aarch64 as I found here :: https://bugs.python.org/issue29804.
So is with test_ssl as mentioned here :: https://bugs.python.org/issue30714
But I have no idea why test_dbm is failing as I have installed req. libraries as stated here :: http://bugs.python.org/issue14120
As test_ctypes test_pass_by_value has been fixed [https://github.com/python/cpython/commit/a86339b83fbd0932e0529a3c91935e997a234582#diff-8e60f1d7697d458dee7303f92bc5a5c0L250 ]
in Python version 3.7.0 alpha 1 [https://github.com/python/cpython]. So I tried to build python 3.7.0. But this time only test_dbm and test_ssl failed showing same errors.
Please guide me , how to resolve these. |