ctypes setuptools egg

Hi folks, I'd like to know if there is a source egg of ctypes (for Python 2.4.x) that can be built and deployed via setuptools... I need to be able to cross compile ctypes from an i686Linux box targeting both i686 and ppc Linux's. I'd like to deploy it with a python app that is also being built/pkg as an egg. I searched the archives, but found no pointers. Thanks, /venkat ____________________________________________________________________________________ Do you Yahoo!? Everyone is raving about the all-new Yahoo! Mail beta. http://new.mail.yahoo.com

Venkat Bommakanti schrieb:
Hi folks,
I'd like to know if there is a source egg of ctypes (for Python 2.4.x) that can be built and deployed via setuptools...
I need to be able to cross compile ctypes from an i686Linux box targeting both i686 and ppc Linux's. I'd like to deploy it with a python app that is also being built/pkg as an egg.
Please see the reply to this message on the ctypes-users list. Thomas

At 09:15 AM 2/15/2007 -0800, Venkat Bommakanti wrote:
Hi folks,
I'd like to know if there is a source egg of ctypes
There is no such thing as a "source egg". If you want to fetch an editable source distribution, simply use: easy_install -eb. ctypes And you'll get a ctypes directory in the current directory with the source. If you want to build an egg for your current platform and deposit it in the current directory, without installing scripts or dependencies, use: easy_install -zmxNd. ctypes
I need to be able to cross compile ctypes from an
distutils simply doesn't support cross-compiling; I'm afraid you're on your own there.
participants (3)
-
Phillip J. Eby
-
Thomas Heller
-
Venkat Bommakanti