Skip to content
Advertisement

Tag: executable

Exporting functions from an executable using a def file

There is plenty of information available about how to export functions from a dll (which I’ve done many times), but I heard that it’s also possible to export functions from an executable, so that an external dll can call them. Although I’ve managed to get this working, it seems as though there’s some problem with the entry point: If it

Cython standalone executable on ubuntu

I want my cython program to be standalone executable on linux, not to be imported. After cython –embed i got a c file,now how can i make it executable? Answer I guess you have to compile the .c file you have obtained. Assuming you are using python 3.5 and don’t have to link to other libraries than python you can

Advertisement