有人使用最新版本的 CodeGear/Embarcadero RAD Studio 成功构建了 libjpeg 吗?
它显然曾经使用 Borland 的 C++ Builder 进行编译,但那是很久以前的事了。现在我需要使用 bcc32 对其进行编译,以便在/打算/成为交叉编译器的一些代码中使用。
有人已经做过并想给我一些指点吗?
It apparently used to compile with Borland's C++ Builder, but that was a long time ago. Now I need to get it compiling with bcc32 for use in a bit of code that was /intended/ to be cross-compiler.
Anyone done it already and want to give me some pointers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
至少当前版本 (9c) 支持开箱即用的 C++ Builder(使用 10.1 进行测试)。
makefile.b32
并更改编译器名称为bcc32c
。"C:\Program Files (x86)\Embarcadero\Studio\
(将路径替换为 C++ Builder 安装目录的路径)18.0\bin\make" -f makefile.b32
项目所需的文件:
At least the current version (9c) supports C++ Builder out of the box (tested with 10.1).
makefile.b32
and change the compiler name tobcc32c
."C:\Program Files (x86)\Embarcadero\Studio\
(replace the path with path to C++ Builder install directory)18.0\bin\make" -f makefile.b32
Files you need for your project:
只需修改 makefile.bcc 中的 makefile 似乎就足够了。
Simply modifying the makefile in makefile.bcc appears to be sufficient.