File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7272 - name : Install dependencies and generate project files
7373 run : |
7474 call %GITHUB_WORKSPACE%\.github\setup-msvc-env.bat
75+ echo ==== Compiler diagnostics before configure ====
76+ where cl || echo cl not found on PATH
77+ where cc || echo cc not found on PATH
78+ where c++.exe || echo c++.exe not found on PATH
79+ echo CC=%CC%
80+ echo CXX=%CXX%
7581 mkdir build
7682 cd build
7783 cmake -S .. -G Ninja -DCMAKE_C_COMPILER=cl -DCMAKE_CXX_COMPILER=cl -DBUILD_TESTS=ON -DBUILD_EXAMPLES=ON -DBUILD_TOOLS=ON -DCMAKE_TOOLCHAIN_FILE=${{env.VCPKG_ROOT}}/scripts/buildsystems/vcpkg.cmake -DUSE_CRYPTO=${{matrix.crypto}}
84+ echo ==== CMake compiler cache ====
85+ findstr /R "^CMAKE_C_COMPILER:.*" CMakeCache.txt
86+ findstr /R "^CMAKE_CXX_COMPILER:.*" CMakeCache.txt
7887 shell : cmd
7988
8089 - name : Build projects
You can’t perform that action at this time.
0 commit comments