diff options
| author | 2021-04-18 00:19:25 -0700 | |
|---|---|---|
| committer | 2021-04-18 00:19:25 -0700 | |
| commit | 9e7713c150d4d0596ef60ec005fecb4544314c1f (patch) | |
| tree | 4c4c36bc74f6d380928f5c529d086401fc6bdd16 | |
| parent | Merge pull request #6204 from lat9nq/sdl2-external (diff) | |
| parent | ci: linux: Link Boost statically (diff) | |
| download | yuzu-9e7713c150d4d0596ef60ec005fecb4544314c1f.tar.gz yuzu-9e7713c150d4d0596ef60ec005fecb4544314c1f.tar.xz yuzu-9e7713c150d4d0596ef60ec005fecb4544314c1f.zip | |
Merge pull request #6208 from lat9nq/boost-static
ci: linux: Link Boost statically
| -rwxr-xr-x | .ci/scripts/linux/docker.sh | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/.ci/scripts/linux/docker.sh b/.ci/scripts/linux/docker.sh index 39b1f77d7..1af5ded3d 100755 --- a/.ci/scripts/linux/docker.sh +++ b/.ci/scripts/linux/docker.sh | |||
| @@ -8,7 +8,17 @@ cd /yuzu | |||
| 8 | ccache -s | 8 | ccache -s |
| 9 | 9 | ||
| 10 | mkdir build || true && cd build | 10 | mkdir build || true && cd build |
| 11 | cmake .. -DDISPLAY_VERSION=$1 -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/lib/ccache/gcc -DCMAKE_CXX_COMPILER=/usr/lib/ccache/g++ -DYUZU_ENABLE_COMPATIBILITY_REPORTING=${ENABLE_COMPATIBILITY_REPORTING:-"OFF"} -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DUSE_DISCORD_PRESENCE=ON -DENABLE_QT_TRANSLATION=ON -DCMAKE_INSTALL_PREFIX="/usr" | 11 | cmake .. \ |
| 12 | -DBoost_USE_STATIC_LIBS=ON \ | ||
| 13 | -DCMAKE_BUILD_TYPE=Release \ | ||
| 14 | -DCMAKE_CXX_COMPILER=/usr/lib/ccache/g++ \ | ||
| 15 | -DCMAKE_C_COMPILER=/usr/lib/ccache/gcc \ | ||
| 16 | -DCMAKE_INSTALL_PREFIX="/usr" \ | ||
| 17 | -DDISPLAY_VERSION=$1 \ | ||
| 18 | -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON \ | ||
| 19 | -DENABLE_QT_TRANSLATION=ON \ | ||
| 20 | -DUSE_DISCORD_PRESENCE=ON \ | ||
| 21 | -DYUZU_ENABLE_COMPATIBILITY_REPORTING=${ENABLE_COMPATIBILITY_REPORTING:-"OFF"} | ||
| 12 | 22 | ||
| 13 | make -j$(nproc) | 23 | make -j$(nproc) |
| 14 | 24 | ||