-1

我已经下载了最新版本的 Borland C++ 5.5 编译器。我已经安装了exe文件,但程序没有运行。

我在安装包的 READ ME 文件中找到了这个,但我什么都弄不出来..

安装和运行命令行工具


  1. 运行freecommandlinetools.exe;选择要安装免费 C++Builder 5 命令行工具开发系统的驱动器和文件夹。

  2. 从您安装的 bin 目录中:将“c:\Borland\Bcc55”添加到现有路径 b. 创建一个 bcc32.cfg 文件,它将设置

    通过添加以下行来选择 Include 和 Lib 路径的编译器选项(-I 和 -L 切换到编译器): -I"c:\Borland\Bcc55\include" -L"c:\Borland\Bcc55\lib" c. 创建一个 ilink32.cfg 文件,该文件将通过添加以下行来设置 Lib 路径的链接器选项: -L"c:\Borland\Bcc55\lib"

请帮助我理解这一点。

4

2 回答 2

0

我建议至少使用 Borland C++ XE3、XE2 或 6.0。Borland 5.5 中有很多错误会让你感到困惑,或者给你的项目带来麻烦。

于 2015-02-26T02:30:20.177 回答
-1

Borland 5.5 is an extremely old compiler.

It doesn't even implement std::string properly.

Use a more modern compiler, like g++ or Visual C++ (they're both free).

Cheers & hth.,

于 2011-01-27T19:18:54.847 回答