This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: make install fails on ARM
Type: crash Stage: resolved
Components: Build Versions: Python 2.7
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: iritkatriel, petevine
Priority: normal Keywords:

Created on 2017-01-08 15:52 by petevine, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg284994 - (view) Author: (petevine) Date: 2017-01-08 15:52
I've just tried installing 2.7.13 on my ARM machine but after a successful build, `make install` fails without any hint what's wrong:

Compiling /usr/lib/python2.7/xmllib.py ...
Compiling /usr/lib/python2.7/xmlrpclib.py ...
Compiling /usr/lib/python2.7/zipfile.py ...
make: *** [libinstall] Error 1

Python 3.5.2 installation was successful on the same machine a little earlier. At the very least, a hint should be provided on how to get more verbose info.
msg285001 - (view) Author: (petevine) Date: 2017-01-08 18:03
In case a clue might be gleaned right away from `make test`, I'm posting the final part of the output here:

[394/401/1] test_xmlrpc
../Python-2.7.13/Lib/threading.py:846: DeprecationWarning: sys.exc_clear() not supported in 3.x; use except clauses
  self.__exc_clear()
[395/401/1] test_xpickle
[396/401/1] test_xrange
[397/401/1] test_zipfile
[398/401/1] test_zipfile64
test_zipfile64 skipped -- test requires loads of disk-space bytes and a long time to run
[399/401/1] test_zipimport
[400/401/1] test_zipimport_support
[401/401/1] test_zlib
359 tests OK.
1 test failed:
    test_gdb
1 test altered the execution environment:
    test_import
40 tests skipped:
    test_aepack test_al test_applesingle test_bsddb test_bsddb185
    test_bsddb3 test_cd test_cl test_codecmaps_cn test_codecmaps_hk
    test_codecmaps_jp test_codecmaps_kr test_codecmaps_tw test_curses
    test_dl test_gl test_idle test_imgfile test_kqueue
    test_linuxaudiodev test_macos test_macostools test_msilib
    test_ossaudiodev test_scriptpackages test_smtpnet
    test_socketserver test_startfile test_sunaudiodev test_tcl
    test_timeout test_tk test_ttk_guionly test_ttk_textonly
    test_turtle test_urllib2net test_urllibnet test_winreg
    test_winsound test_zipfile64
8 skips unexpected on linux2:
    test_bsddb test_bsddb3 test_idle test_tcl test_tk test_ttk_guionly
    test_ttk_textonly test_turtle
make: *** [test] Error 1
msg381635 - (view) Author: Irit Katriel (iritkatriel) * (Python committer) Date: 2020-11-22 20:41
Python 2-only issue.
History
Date User Action Args
2022-04-11 14:58:41adminsetgithub: 73393
2020-11-22 20:41:57iritkatrielsetstatus: open -> closed

nosy: + iritkatriel
messages: + msg381635

resolution: out of date
stage: resolved
2017-01-08 18:03:41petevinesetmessages: + msg285001
2017-01-08 15:52:16petevinecreate