Unix and Linux Discussions Tagged with python |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
13,956 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
88,063 |
Shell Programming and Scripting |
|
|
|
1 |
10,101 |
Programming |
|
|
|
1 |
7,625 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
10,116 |
OS X (Apple) |
|
|
|
8 |
16,315 |
Programming |
|
|
|
4 |
5,432 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
12,858 |
Programming |
|
|
|
0 |
18,476 |
OS X (Apple) |
|
|
|
13 |
27,478 |
Programming |
|
|
|
10 |
24,522 |
Programming |
|
|
|
1 |
17,681 |
Programming |
|
|
|
0 |
14,563 |
Programming |
|
|
|
1 |
14,123 |
Programming |
|
|
|
9 |
32,393 |
Programming |
|
|
|
1 |
3,607 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
10,149 |
Shell Programming and Scripting |
|
|
|
6 |
3,702 |
UNIX for Beginners Questions & Answers |
|
|
|
18 |
33,098 |
Programming |
|
|
|
9 |
23,322 |
Programming |
|
|
|
0 |
30,648 |
Programming |
|
|
|
2 |
19,388 |
Shell Programming and Scripting |
|
|
|
6 |
7,249 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
26,926 |
Shell Programming and Scripting |
|
|
|
1 |
8,224 |
Shell Programming and Scripting |
|
|
|
5 |
4,066 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
5,697 |
Programming |
|
|
|
10 |
7,417 |
Programming |
|
|
|
9 |
5,336 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
12,028 |
Programming |
|
|
|
0 |
89,757 |
News, Links, Events and Announcements |
|
|
|
6 |
6,060 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
13,675 |
Programming |
|
|
|
2 |
13,186 |
Programming |
|
|
|
4 |
7,348 |
Shell Programming and Scripting |
|
|
|
5 |
2,383 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
3,611 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
6,028 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
14,016 |
Shell Programming and Scripting |
|
|
|
0 |
21,021 |
Programming |
PYTHON-CONFIG(1) General Commands Manual PYTHON-CONFIG(1)
NAME
python-config - output build options for python C/C++ extensions or embedding
SYNOPSIS
python-config [ --prefix ] [ --exec-prefix ] [ --includes ] [ --libs ] [ --cflags ] [ --ldflags ] [ --help ]
DESCRIPTION
python-config helps compiling and linking programs, which embed the Python interpreter, or extension modules that can be loaded dynamically
(at run time) into the interpreter.
OPTIONS
--cflags
print the C compiler flags.
--ldflags
print the flags that should be passed to the linker.
--includes
similar to --cflags but only with -I options (path to python header files).
--libs similar to --ldflags but only with -l options (used libraries).
--prefix
prints the prefix (base directory) under which python can be found.
--exec-prefix
print the prefix used for executable program directories (such as bin, sbin, etc).
--help print the usage message.
EXAMPLES
To build the singe-file c program prog against the python library, use
gcc $(python-config --cflags --ldflags) progr.cpp -o progr.cpp
The same in a makefile:
CFLAGS+=$(shell python-config --cflags)
LDFLAGS+=$(shell python-config --ldflags)
all: progr
To build a dynamically loadable python module, use
gcc $(python-config --cflags --ldflags) -shared -fPIC progr.cpp -o progr.so
SEE ALSO
python (1)
http://docs.python.org/extending/extending.html
/usr/share/doc/python/faq/extending.html
AUTHORS
This manual page was written by Johann Felix Soden <johfel@gmx.de> for the Debian project (and may be used by others).
November 27, 2011 PYTHON-CONFIG(1)