Skip to content

Commit

Permalink
Merge pull request #3854 from vodorok/arch_fix
Browse files Browse the repository at this point in the history
[fix] Pass arch flag correctly
  • Loading branch information
bruntib committed Mar 13, 2023
2 parents f545691 + 171d8f1 commit eac25bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def construct_analyzer_cmd(self, result_handler):

if not has_flag('-arch', analyzer_cmd) and \
self.buildaction.arch != "":
analyzer_cmd.extend(["-arch ", self.buildaction.arch])
analyzer_cmd.extend(["-arch", self.buildaction.arch])

if not has_flag('-std', analyzer_cmd) and \
self.buildaction.compiler_standard != "":
Expand Down

0 comments on commit eac25bc

Please sign in to comment.