aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/zstd.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-02-13 03:14:30 +0900
committerOphestra <cat@gensokyo.uk>2026-02-13 03:14:30 +0900
commitb746e352e546a0fdde9f26d124256afba33e30fb (patch)
tree9e5ddc15f88e7155a735e9759bfa85446f49e7e5 /internal/rosa/zstd.go
parentc620d88dce8b8a95a36542bbb76ff97c076cf10f (diff)
internal/rosa/zstd: fix libdir
CMake implicitly changes it to lib64 which is not supported. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/zstd.go')
-rw-r--r--internal/rosa/zstd.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/rosa/zstd.go b/internal/rosa/zstd.go
index 05164cf7..ccbd713b 100644
--- a/internal/rosa/zstd.go
+++ b/internal/rosa/zstd.go
@@ -16,6 +16,7 @@ func (t Toolchain) newZstd() pkg.Artifact {
Append: []string{"build", "cmake"},
Cache: [][2]string{
{"CMAKE_BUILD_TYPE", "Release"},
+ {"CMAKE_INSTALL_LIBDIR", "lib"},
},
})
}