We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
lib64
1 parent cc5c4c9 commit 249054eCopy full SHA for 249054e
1 file changed
cmake/wasi-sdk-toolchain.cmake
@@ -173,6 +173,12 @@ if(WASI_SDK_LLDB)
173
list(APPEND libxml_cmake_args -DLIBXML2_WITH_ICONV=OFF)
174
endif()
175
176
+ # Our AlmaLinux:8 container ends up using `lib64` instead of `lib` by default
177
+ # which doesn't match LLVM, so specifically use the same dir as LLVM.
178
+ if (CMAKE_HOST_SYSTEM_NAME STREQUAL "Linux")
179
+ list(APPEND libxml_cmake_args -DCMAKE_INSTALL_LIBDIR=lib)
180
+ endif()
181
+
182
if (WASI_SDK_LIBXML2)
183
ExternalProject_Add(libxml2
184
URL https://download.gnome.org/sources/libxml2/2.15/libxml2-2.15.2.tar.xz
0 commit comments