如何创建像 Delphi 应用程序一样的独立(没有 DLL 文件依赖项)C++Builder 控制台应用程序?

发布于 2024-12-10 02:17:53 字数 590 浏览 0 评论 0原文

当我创建 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

没企图 2024-12-17 02:17:53
  1. 项目选项中,取消选中链接器选项“动态RTL”。
  2. 选项中,取消选中“与运行时包链接”。
  1. In the project options, uncheck the linker option "Dynamic RTL".
  2. In the packages options, uncheck "Link with runtime packages".
辞旧 2024-12-17 02:17:53

您还应该取消选中:

项目选项 -> C++ 链接器 ->与 Delphi 运行时库链接...

Also you should uncheck:

Project Options -> C++ Linker -> Link with the Delphi Runtime Library ...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文