Skip to content

Commit 362cb6d

Browse files
committed
fix build: include cmake args in config signature to avoid stale cache issues
2 parents f6ab20f + bba4f35 commit 362cb6d

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/commands/BuildCommand.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -797,6 +797,10 @@ namespace vix::commands::BuildCommand
797797
oss << "vars:\n";
798798
oss << util::signature_join(plan.cmakeVars);
799799

800+
oss << "rawCMakeArgs:\n";
801+
for (const auto &arg : opt.cmakeArgs)
802+
oss << arg << "\n";
803+
800804
if (!opt.targetTriple.empty())
801805
{
802806
oss << "toolchain:\n";

0 commit comments

Comments
 (0)