在实际操作中如果我们将静态编译嵌入Python生成了不依赖dll的exe的话,你就可以通过用vc2005 与python 2.5.4并用,来制造一个静态链接的exe的相关程序,以下是文章的具体内容的详细介绍。
1: 下载 python2.5.4版本源代码
2: 解压到 F:\study\python\Python-2.5.4
3: 进入F:\study\python\Python-2.5.4\PCbuild8 ,打开解决方案 pcbuild.sln
即用vc 2005打开 F:\study\python\Python-2.5.4\PCbuild8\pcbuild.sln
4: 打开pcbuild solution的configuration properties 将 要build的勾选,全部去掉,只勾选pythoncore工程。
5: 更改c/c++ 配置里的Code genration 类型为 /MT
6: 更改pythoncore configuration properties 的configuration type 为: static lib
7: 要实现静态编译嵌入Python生成不依赖dll的exevc2005 + python 2.5.4 制造一个 静态链接的exe程序中,你需要更改pythoncore工程 active release 的libray的 output file 为:$(OutDir)\python25.lib
8: 编译工程 ,生成F:\study\python\Python-2.5.4\PCbuild8\win32release\python25.lib
上面编译了一个静态链接的库python25.lib
9: 建立一个新解决方案F:\study\python\vc\test\test.sln
10: 添加一个文件main.cpp
内容如下
- #include <python.h>
- #include <stdio.h>
- int main()
- {
- Py_Initialize();
- PyRun_SimpleString("print 'i am a static python exe!!!'");
- Py_Finalize();
- getchar();
- return 0;
- }
以上就是对静态编译嵌入Python生成不依赖dll的exe@@@@相关的内容的介绍,望你会有所收获。