1

我在一个部分中多次调用宏。宏检查目录是否存在,如果不存在,则创建该目录。

我的问题:我收到一个错误,因为我在一个部分内多次调用此宏。如何修复我的编译错误?

错误: “错误:标签“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
4

1 回答 1

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如果需要,说明会为您创建目录。来自文档:

如果不存在,则设置输出路径 ($OUTDIR) 并创建它(必要时递归)。

因此,如果您不需要了解创建的每个目录(并将其写入某处,例如在卸载期间使用它),您根本不必这样做。

于 2012-05-07T06:52:41.660 回答