Caveat--I know virtually nothing about Windows development and don't even own a (working) Windows box...
On Dec 29, 2009, at 12:20 PM, Dan Stromberg wrote: > > I'm trying to create a little standalone executable to help > troubleshoot a problem on a windows system. The intent is not > (necessarily) to have a fast program, but rather to have a > single .exe without a bunch of dll's, so we don't have to copy more > than one new file onto this production server. Another option would be to use distutils to package everything into a .tar, so you only would have to move one file no matter how complicated your application (though you'd still have to unpack it on the other side). > Do I need to build my program with the same C compiler that my > Python distribution was built with? I've heard of people resolving issues by doing this, but I don't know if it's always necessary. > BTW, does distutils support building a --embed executable? Distutils knows nothing about --embed. However, you might take a look at http://hg.cython.org/cython-devel/file/tip/Demos/freeze/README.txt as well. - Robert _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
