We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c576b8 commit 3484846Copy full SHA for 3484846
.github/workflows/ci_tests.yml
@@ -145,7 +145,8 @@ jobs:
145
extraFlags="-DBoost_DEBUG=ON -DBoost_NO_BOOST_CMAKE=ON -DCMAKE_INSTALL_PREFIX=$HOME/local"
146
if ! [[ "${{matrix.generator}}" =~ "Visual Studio" ]]; then
147
# Enable warning to find missing defines, especially important for the standalone version
148
- extraFlags="$extraFlags -DCMAKE_CXX_FLAGS=-Wundef"
+ extraFlags+=" -DCMAKE_CXX_FLAGS=-Wundef"
149
+ extraFlags+=" -DBoost_ARCHITECTURE=-x64" # ABI tag for MinGW
150
fi
151
cmake -DCMAKE_BUILD_TYPE=${{matrix.buildType}} -DBUILD_SHARED_LIBS=${{matrix.shared_lib}} -G "${{matrix.generator}}" $extraFlags ..
152
- name: Build
0 commit comments