File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -304,7 +304,7 @@ jobs:
304304 # so we need to set some extra cmake flags to disable this.
305305 # -DLIBXML2_LIBRARIES=/c/vcpkg/packages/libxml2_x64-windows-static/lib/libxml2.lib \
306306 # -DLIBXML2_INCLUDE_DIR=/c/vcpkg/packages/libxml2_x64-windows-static/include/libxml2 \
307- cmake --debug-trycompile -G Ninja -S llvm -B ${{ steps.setup-stage.outputs.build-prefix }}/build \
307+ cmake --trace-expand -- debug-trycompile -G Ninja -S llvm -B ${{ steps.setup-stage.outputs.build-prefix }}/build \
308308 ${{ needs.prepare.outputs.target-cmake-flags }} \
309309 -DLLVM_ENABLE_LIBXML2=FORCE_ON \
310310 -DLIBXML2_DEFINITIONS=-DLIBXML_STATIC \
Original file line number Diff line number Diff line change @@ -210,6 +210,7 @@ if(LLVM_ENABLE_ZSTD)
210210endif ()
211211
212212if (LLVM_ENABLE_LIBXML2)
213+ message ("LIBRARIES BEFORE: ${LIBXML2_LIBRARIES} WIN32: ${WIN32} " )
213214 if (LLVM_ENABLE_LIBXML2 STREQUAL FORCE_ON)
214215 find_package (LibXml2 REQUIRED)
215216 elseif (NOT LLVM_USE_SANITIZER MATCHES "Memory.*" )
@@ -219,6 +220,7 @@ if(LLVM_ENABLE_LIBXML2)
219220 # Check if libxml2 we found is usable; for example, we may have found a 32-bit
220221 # library on a 64-bit system which would result in a link-time failure.
221222 message ("LIBRARIES: ${LIBXML2_LIBRARIES} " )
223+ message ("DEFINITIONS: ${LIBXML2_DEFINITIONS} " )
222224 cmake_push_check_state()
223225 list (APPEND CMAKE_REQUIRED_INCLUDES ${LIBXML2_INCLUDE_DIRS} )
224226 list (APPEND CMAKE_REQUIRED_LIBRARIES LibXml2::LibXml2 ${LIBXML2_LIBRARIES} )
You can’t perform that action at this time.
0 commit comments