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 of Python 3.2.2 fails on Solaris SPARC
Type: compile error Stage: resolved
Components: Build Versions: Python 3.2
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: eeiddne, iritkatriel, ned.deily, trent, vapier
Priority: normal Keywords:

Created on 2013-06-06 12:49 by eeiddne, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (4)
msg190713 - (view) Author: Donal Duane (eeiddne) Date: 2013-06-06 12:49
Hi,

I am trying to configure/make/make install Python 3.2.2 on Solaris SPARC.
The configure goes ok, but I am getting an error when doing make.

I am using GCC 3.4.6.

Error:

make/usr/local/bin/gcc -c -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I. -IInclude -I./Include -DPy_BUILD_CORE -o Modules/python.o ./Modules/python.cIn file included from Include/Python.h:50,from ./Modules/python.c:3:Include/pyport.h:257:13: #error "This platform's pyconfig.h needs to define PY_FORMAT_LONG_LONG"*** Error code 1make: Fatal error: Command failed for target `Modules/python.o'

Regards,
Donal
msg190771 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2013-06-07 19:53
Issue15050, which was closed without resolution, reported a similar issue.  Also, Issue15963 documents some suggestions and proposed changes to make builds easier to configure on legacy platforms like Solaris SPARC.  Perhaps they may be of help.  Also, Python 3.2.2 is quite out-of-date.  The current and final bug fix release of 3.2 is 3.2.5.  The current maintenance release for Python 3 is 3.3.2.  Please retry with these.

(I note you selected "Cross-Build" as a component; for python-dev, that refers to building a Python on one platform that is targeted to run on a different type of platform.  I assume that this is not the case here, e.g. you are building on Solaris SPARC to run on Solaris SPARC, and so Cross-Build does not apply.)
msg252967 - (view) Author: Mike Frysinger (vapier) Date: 2015-10-13 22:28
if the current builds fail, please make sure to include the config.log file as that includes a cross-compile test for this setting
msg380559 - (view) Author: Irit Katriel (iritkatriel) * (Python committer) Date: 2020-11-08 18:34
Python 3.2 is no longer maintained. If this issue existing in more recent versions please open a new issue for it.
History
Date User Action Args
2022-04-11 14:57:46adminsetgithub: 62348
2020-11-08 18:34:34iritkatrielsetstatus: open -> closed

nosy: + iritkatriel
messages: + msg380559

resolution: out of date
stage: resolved
2015-10-13 22:28:54vapiersetnosy: + vapier
messages: + msg252967
2013-06-07 19:53:29ned.deilysetnosy: + trent, ned.deily
messages: + msg190771
components: + Build, - Cross-Build
2013-06-06 12:49:37eeiddnecreate