diff options
| author | 2022-12-17 22:16:52 -0300 | |
|---|---|---|
| committer | 2022-12-17 17:16:52 -0800 | |
| commit | fd1ea0fd8463c65f3d266512cba04a5c9d0863da (patch) | |
| tree | 573d78a36a48d9cf439c5f65d96f5f1a63449128 /.ci/scripts/linux/docker.sh | |
| parent | Merge pull request #9456 from german77/virtual_gamepad (diff) | |
| download | yuzu-fd1ea0fd8463c65f3d266512cba04a5c9d0863da.tar.gz yuzu-fd1ea0fd8463c65f3d266512cba04a5c9d0863da.tar.xz yuzu-fd1ea0fd8463c65f3d266512cba04a5c9d0863da.zip | |
Enable compiler optimizations and enforce x86-64-v2 on GCC/Clang (#9442)
* Testing LTO (#4)
* Testing LTO
* clang
* linux
* Added the rest of Blinkhawk's optimizations
* Unlikely asserts
* Removing LTO from Linux builds - GCC
* Removing LTO from Linux builds - Clang
Diffstat (limited to '')
| -rwxr-xr-x | .ci/scripts/linux/docker.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.ci/scripts/linux/docker.sh b/.ci/scripts/linux/docker.sh index 35c4a4368..c8bc56c9a 100755 --- a/.ci/scripts/linux/docker.sh +++ b/.ci/scripts/linux/docker.sh | |||
| @@ -12,6 +12,7 @@ mkdir build || true && cd build | |||
| 12 | cmake .. \ | 12 | cmake .. \ |
| 13 | -DBoost_USE_STATIC_LIBS=ON \ | 13 | -DBoost_USE_STATIC_LIBS=ON \ |
| 14 | -DCMAKE_BUILD_TYPE=Release \ | 14 | -DCMAKE_BUILD_TYPE=Release \ |
| 15 | -DCMAKE_CXX_FLAGS="-march=x86-64-v2" \ | ||
| 15 | -DCMAKE_CXX_COMPILER=/usr/lib/ccache/g++ \ | 16 | -DCMAKE_CXX_COMPILER=/usr/lib/ccache/g++ \ |
| 16 | -DCMAKE_C_COMPILER=/usr/lib/ccache/gcc \ | 17 | -DCMAKE_C_COMPILER=/usr/lib/ccache/gcc \ |
| 17 | -DCMAKE_INSTALL_PREFIX="/usr" \ | 18 | -DCMAKE_INSTALL_PREFIX="/usr" \ |