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: Cross Compiling Python
Type: Stage: resolved
Components: Build Versions: Python 2.4
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: ajaksu2, yegnesh
Priority: normal Keywords: patch

Created on 2007-07-25 06:09 by yegnesh, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg52943 - (view) Author: Yegnesh (yegnesh) Date: 2007-07-25 06:09
Hi,

I am cross compiling python 2.4 for powerpc-860.
Steps I followed are :
$ patch -p3 < ./python-patch
$ ./configure --host=powerpc-860-linux-gnu --build=i686-pc-linux-gnu
$ make

Error found is listed below:

ar cr libpython2.4.a Modules/config.o Modules/getpath.o Modules/main.o Modules/gcmodule.o
ar: Modules/config.o: No such file or directory
make[1]: *** [libpython2.4.a] Error 1

Though the file is existing in the directory listing.
Can you suggest any reason why this error occurs?

Thanks in advance,
Yegnesh
msg85682 - (view) Author: Daniel Diniz (ajaksu2) * (Python triager) Date: 2009-04-07 04:03
Closing as invalid, please reopen if you can explain what 'python-patch'
is and how this is a Python issue.
History
Date User Action Args
2022-04-11 14:56:25adminsetgithub: 45242
2009-04-07 04:03:43ajaksu2setstatus: open -> closed

components: + Build, - None

nosy: + ajaksu2
messages: + msg85682
resolution: not a bug
stage: resolved
2007-07-25 06:09:40yegneshcreate