Lets say I want to use gcc
from the command line in order to compile a C extension of Python. I'd structure the call something like this:
gcc -o applesauce.pyd -I C:/Python35/include -L C:/Python35/libs -l python35 applesauce.c
I noticed that the -I
, -L
, and -l
options are absolutely necessary, or else you will get an error that looks something like this. These commands tell gcc where to look for the headers (-I
), where to look for the static libraries (-L
), and which static library to actually use (python35
, which actually translates to libpython35.a
).
Now, this is obviously really easy to get the libs
and include
directories if its your machine, as they never change if you don't want them to. However, I was writing a program that calls gcc
from the command line, that other people will be using. The line where this call occurs looks something like this:
from subprocess import call
import sys
filename = applesauce.c
include_directory = os.path.join(sys.exec_prefix, 'include')
libs_directory = os.path.join(sys.exec_prefix, 'libs')
call(['gcc', ..., '-I', include_direcory, '-L', libs_directory, ...])
However, others will have different platforms and different Python installation structures, so just joining the paths won't always work.
Instead, I need a solution from within Python that will reliably return the include
and libs
directories.
Edit:
I looked at the module distutils.ccompiler
, and found many useful functions that would in part use distutils, but make it customizable for me to make my compiler entirely cross platform. The only thing is, I need to pass it the include and runtime libraries...
Edit 2:
I looked at distutils.sysconfig
an I am able to reliably return the 'include' directory including all the header files. I still have no idea how to get the runtime library.
The distutils.ccompiler
docs are here
The program that needs this functionality is named Cyther