***.c file compile as a python extension

I need to use ***.c gile file as a python extension file in Win7. is it posible with dev c++ compiler?
Dev-Cpp is not a compiler. It uses MinGW.
I do not understand what you want:

interpret *.c file as *.py one

writing a python extension in C language. This should be possible if the python itself was built with the same compiler.
For Windows you need to compile your .c or .cpp file(s) to a .pyd file, which is a DLL with a different extension. But you need to implement the correct entrypoints, which I've only ever done using the Boost.Python library. It was pretty easy, if I recall correctly.

If you don't use Boost, or something similar, then you'll need to implement the required entrypoints yourself, which will be more work.

The Python web site does state that:

You will still need the C compiler that was used to build Python; typically Microsoft Visual C++.

(I used Visual C++)

The Windows version is only relevevant if your extension relies on newer system features.

Andy

Boost.Python - 1.55.0
http://www.boost.org/doc/libs/1_55_0/libs/python/doc/

4. Building C and C++ Extensions on Windows
http://docs.python.org/2/extending/windows.html

Last edited on
Topic archived. No new replies allowed.