Distutils mit vorcompilierten Binaries
Hi, ich entwickle ein Python Modul, das eine native Dll bzw. Shared Library enthält, die nicht ganz einfach zu compilieren ist. Wie installiere ich so eine Library mit den Distutils OS unabhängig richtig? Hat jemand ein Beispiel? Gruß, Achim _______________________________________________ python-de maillist - python-de@python.net http://python.net/mailman/listinfo/python-de
On Thu, Nov 04, 2004 at 11:50:52AM +0100, Achim Domma (Procoders) wrote:
Hi,
ich entwickle ein Python Modul, das eine native Dll bzw. Shared Library enthält, die nicht ganz einfach zu compilieren ist. Wie installiere ich so eine Library mit den Distutils OS unabhängig richtig? Hat jemand ein Beispiel?
DCOracle2 macht so was, glaube ich. -- Gerhard -- A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What is the most annoying thing on usenet and in e-mail? _______________________________________________ python-de maillist - python-de@python.net http://python.net/mailman/listinfo/python-de
meine C-Extensions von Zope TextIndexNG machen das auch automatisch. -aj --On Donnerstag, 4. November 2004 11:50 Uhr +0100 "Achim Domma (Procoders)" <domma@procoders.net> wrote:
Hi,
ich entwickle ein Python Modul, das eine native Dll bzw. Shared Library enthält, die nicht ganz einfach zu compilieren ist. Wie installiere ich so eine Library mit den Distutils OS unabhängig richtig? Hat jemand ein Beispiel?
Gruß, Achim
_______________________________________________ python-de maillist - python-de@python.net http://python.net/mailman/listinfo/python-de
_______________________________________________ python-de maillist - python-de@python.net http://python.net/mailman/listinfo/python-de
Achim Domma (Procoders) wrote:
ich entwickle ein Python Modul, das eine native Dll bzw. Shared Library enthält, die nicht ganz einfach zu compilieren ist. Wie installiere ich so eine Library mit den Distutils OS unabhängig richtig? Hat jemand ein Beispiel?
Einfach ein Extension-Objekt erzeugen, und die Liste aller Extension-Objekte an setup(ext_modules=) übergeben. Siehe auch http://docs.python.org/dist/setup-script.html#SECTION000330000000000000000 Ciao, Martin _______________________________________________ python-de maillist - python-de@python.net http://python.net/mailman/listinfo/python-de
participants (4)
-
"Martin v. Löwis"
-
Achim Domma (Procoders)
-
Andreas Jung
-
Gerhard Haering