我在一个部分中多次调用一个宏。宏检查目录是否存在,如果不存在则创建该目录。
我的问题:我收到错误,因为我在一个部分内多次调用此宏。如何修复编译错误?
错误:“错误:标签”CreateDirThenInstall:“已在”
部分中声明你能告诉我如何在一个部分中多次使用这个宏吗?
Section "Install Plugin Files" MainSetup
!insertmacro ValidateDir "c:/blah"
setOutPath "c:/blah"
file "C:/blah/a.txt"
file "C:/blah/b.txt"
!insertmacro ValidateDir "c:/other"
setOutPath "c:/other"
file "c:/other/a.txt"
file "c:/other/b.txt"
sectionend
!macro ValidateDir dir
IfFileExists "$dir" ExitMacro CreateDirThenInstall
CreateDirThenInstall: # Error here: Error: label "CreateDirThenInstall:" already declared in section
createDirectory "${dir}"
ExitMacro:
!macroend
答案 0 :(得分:2)
问题在于标签,而不是宏。 您在该部分中使用了两次完全相同的标签,这是不可能的。
您可以使宏中的标签唯一(即使宏插入多次)。可以使用编译时命令${__LINE__}
。然后你可以这样写:
!macro ValidateDir dir
!define UniqueId1 ${__LINE__}
!define UniqueId2 ${__LINE__}
IfFileExists "${dir}" Exit_${UniqueId1} CreateDir_${UniqueId2}
CreateDir_${UniqueId2}:
createDirectory "${dir}"
Exit_${UniqueId1}:
!undef UniqueId1
!undef UniqueId2
!macroend
但在你的情况下,我认为上述内容并非必要。如果需要,SetOutPath
指令会创建目录。来自doc:
设置输出路径($ OUTDIR)并创建它(递归,如果 必要的),如果它不存在。
因此,如果您不需要了解创建的每个目录(并将其写入某处,例如在卸载期间使用它),您根本不需要这样做。