如何创建像 Delphi 应用程序一样的独立(没有 DLL 文件依赖项)C++Builder 控制台应用程序?
当我创建 Delphi 控制台应用程序时,我可以部署生成的 EXE 文件,而不必担心外部 DLL 文件。但是如果我创建非常简单的 C++Builder (版本 2007)控制台应用程序(没有VCL) EXE 文件需要 CC3280MT.dll
文件才能运行。
如何避免我的 C++Builder 控制台应用程序需要 CC3280MT.dll
文件?
即使这个简单的代码也会导致这种依赖性:
#include <iostream.h>
#pragma hdrstop
#pragma argsused
int main(int argc, char* argv[])
{
cout << "Hello" << endl;
getchar();
return 0;
}
When I create a Delphi console application, I can deploy the generated EXE file without worrying about external DLL files. But if I create very simple C++Builder (version 2007) console application (no VCL) the EXE file requires the CC3280MT.dll
file to run.
How can I avoid which my C++Builder console application requires the CC3280MT.dll
file?
Even this simple code cause this dependence:
#include <iostream.h>
#pragma hdrstop
#pragma argsused
int main(int argc, char* argv[])
{
cout << "Hello" << endl;
getchar();
return 0;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还应该取消选中:
项目选项 -> C++ 链接器 ->与 Delphi 运行时库链接...
Also you should uncheck:
Project Options -> C++ Linker -> Link with the Delphi Runtime Library ...