(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ext/module-defn-options.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ext/building-on-unix.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ext/distributing.html| ]]
|
Extending and Embedding the Python Interpreter
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ext/contents.html| ]]
|
|
|
Previous: 2.2 Module Definition Options Up: 2. Building C and Next: 2.4 Distributing your extension
2.3 Example
Here is a more complicated example from Modules/Setup.in:
GMP=/ufs/guido/src/gmp
mpz mpzmodule.c -I$(GMP) $(GMP)/libgmp.a
which could also be written as:
mpz mpzmodule.c -I$(GMP) -L$(GMP) -lgmp
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ext/module-defn-options.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ext/building-on-unix.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ext/distributing.html| ]]
|
Extending and Embedding the Python Interpreter
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ext/contents.html| ]]
|
|
|
Previous: 2.2 Module Definition Options Up: 2. Building C and Next: 2.4 Distributing your extension
See About this document... for information on suggesting changes.