diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2022-10-11 01:04:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-11 01:04:02 +0200 |
commit | d9336860d742f672370ff9b57ae17e08d1b757d7 (patch) | |
tree | 7a0aa9123343702512b8e0292830f403f29a82a5 /.ci/scripts | |
parent | Merge pull request #9043 from german77/vector_data (diff) | |
parent | ci/windows: Revert to using GCC for MinGW builds (diff) | |
download | yuzu-d9336860d742f672370ff9b57ae17e08d1b757d7.tar yuzu-d9336860d742f672370ff9b57ae17e08d1b757d7.tar.gz yuzu-d9336860d742f672370ff9b57ae17e08d1b757d7.tar.bz2 yuzu-d9336860d742f672370ff9b57ae17e08d1b757d7.tar.lz yuzu-d9336860d742f672370ff9b57ae17e08d1b757d7.tar.xz yuzu-d9336860d742f672370ff9b57ae17e08d1b757d7.tar.zst yuzu-d9336860d742f672370ff9b57ae17e08d1b757d7.zip |
Diffstat (limited to '.ci/scripts')
-rwxr-xr-x | .ci/scripts/windows/docker.sh | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/.ci/scripts/windows/docker.sh b/.ci/scripts/windows/docker.sh index 6f522feed..0be3613aa 100755 --- a/.ci/scripts/windows/docker.sh +++ b/.ci/scripts/windows/docker.sh @@ -10,13 +10,9 @@ set -e ccache -sv mkdir -p build && cd build -export LDFLAGS="-fuse-ld=lld" -# -femulated-tls required due to an incompatibility between GCC and Clang -# TODO(lat9nq): If this is widespread, we probably need to add this to CMakeLists where appropriate -export CXXFLAGS="-femulated-tls" cmake .. \ -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_TOOLCHAIN_FILE="${PWD}/../CMakeModules/MinGWClangCross.cmake" \ + -DCMAKE_TOOLCHAIN_FILE="${PWD}/../CMakeModules/MinGWCross.cmake" \ -DDISPLAY_VERSION="$1" \ -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON \ -DENABLE_QT_TRANSLATION=ON \ |