生成.res borland资源文件

问题描述 投票:0回答:1

经过多次挖掘后,我终于遇到了这个问题:Does the .res file need to be in source control?,我们从来没有把它包含在git中。现在我正在尝试从命令行的源代码构建项目。如果我在Borland打开文件,它会要求我重新创建所述文件,然后我就可以开始制作项目了。如果我删除所有生成的文件和rake,我会得到以下输出(为了清晰起见,展开了ruby任务)

$ bpr2mak_exe="#{ENV['BCB']}\\Bin\\bpr2mak.exe"
$ make_exe="#{ENV['BCB']}\\Bin\\make.exe"
$ puts `#{bpr2mak_exe} -omakefile MyProject.bpr`
Loading project file
Loading template
Generating Makefile
.........................................

& puts `#{make_exe} -fmakefile`
MAKE Version 5.2  Copyright (c) 1987, 2000 Borland
Fatal: 'MyProject.res' does not exist - don't know how to make it

我查看了所有命令行工具(专注于BRCC32.exe和GRC32.exe),它们都不像我需要的那样。我也尝试使用procmon来查看调用哪个程序来生成res文件。所以你们Borland / Embarcado的任何一个人都想管好吗? (如果有帮助,这里是命令行帮助屏幕)

$ "${BCB}\bin\BRC32.exe" -?

Syntax: BRC32 [options ...] filename
options marked with a '*' are on by default

-r                    compile only. Do not bind resources
-fofilename           set output res filename
-fefilename           set output exe filename
-v                    verbose
-ipath                set include path
-x                    ignore INCLUDE environment variable
-dname[=string]       define #define
-32                *  build 32-bit Windows compatible res/exe files
-16                   build 16-bit Windows compatible res/exe files
-Vd.d Mark the .exe file with Windows version provided (4.0 is the default)
-31  Provided for downward compatibility (build 16-bit res/exe files)
-w32 Provided for downward compatibility (build 32-bit res/exe files)
-k                    do not create fastload area (16 bit only)
-t                    (ignored, for compatibility)
-? or -h              display this message

$ "${BCB}\bin\BRCC32.exe" -?
Borland Resource Compiler  Version 5.40
Copyright (c) 1990, 1999 Inprise Corporation.  All rights reserved.

Syntax: BRCC32 [options ...] filename
options marked with a '*' are on by default

@<filename>        Take instructions from command file
-r                    (ignored for compatibility)
-16                   Build 16-bit Windows compatible .res file
-32                 * Build 32-bit Windows compatible .res file
-fofilename           Set output filename
-v                    Verbose
-ipath                Set include path
-dname[=string]       Define #define
-x                    Ignore INCLUDE environment variable
-m                    Enable multi-byte character support
-cdddd                set default code page to nnnn
-lxxxx                set default language to xxxx
-31   Provided for downward compatibility (build 16-bit .res file)
-w32  Provided for downward compatibility (build 16-bit .res file)
-? or -h              Display this message

为了好玩,我尝试对项目文件运行它们

$ "${BCB}\bin\BRC32.exe" -r MyProject.bpr

Borland Resource Compiler  Version 5.40
Copyright (c) 1990, 1999 Inprise Corporation.  All rights reserved.

Error MyProject.bpr 1 1: Expecting resource name or resource type name

$ "${BCB}\bin\BRCC32.exe" -r MyProject.bpr
Borland Resource Compiler  Version 5.40
Copyright (c) 1990, 1999 Inprise Corporation.  All rights reserved.

Error MyProject.bpr 1 1: Expecting resource name or resource type name
makefile borland-c++
1个回答
1
投票

IDE(而不是编译器)使用从项目文件中提取的版本信息生成默认的.res文件。对于您尝试进行命令行编译的内容,最好使用所需的资源数据定义创建自己的.rc脚本文件,然后使用.res将其编译为brcc32文件,然后使用ilink32链接到该文件。

但是,你真的不应该使用make来编译一个Borland项目。使用Borland的bcc32编译器或MS的msbuild框架(取决于您的C ++ Builder版本)并让它处理make将要做的所有事情。然后你可以编译你的.bpr.cproj文件,而不必先将它转换为.mak文件。

© www.soinside.com 2019 - 2024. All rights reserved.