[Scummvm-git-logs] scummvm master -> 5ba0416765089cc370029b59575abfd9296a1b6c

SupSuper supsuper at gmail.com
Tue Aug 25 09:00:48 UTC 2020


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
5ba0416765 CI: Default to MSVC x64 toolset


Commit: 5ba0416765089cc370029b59575abfd9296a1b6c
    https://github.com/scummvm/scummvm/commit/5ba0416765089cc370029b59575abfd9296a1b6c
Author: SupSuper (supsuper at gmail.com)
Date: 2020-08-25T10:00:32+01:00

Commit Message:
CI: Default to MSVC x64 toolset

ScummVM has become too big for the 32-bit linker, so default to the 64-bit linker to avoid random failures and restarts.
This doesn't affect the architecture of the output (eg. a x64 compiler can build a x86 executable).

Changed paths:
    .github/workflows/ci.yml


diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 329c659d47..a1af3e0586 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -70,7 +70,7 @@ jobs:
         run: |
           cd build-scummvm
           ls
-          msbuild scummvm.sln /m /p:BuildInParallel=true /p:Configuration=Release /p:Platform=${{ matrix.platform }}
+          msbuild scummvm.sln /m /p:BuildInParallel=true /p:Configuration=Release /p:PreferredToolArchitecture=x64 /p:Platform=${{ matrix.platform }}
       - name: Upload scummvm
         uses: actions/upload-artifact at v2
         with:




More information about the Scummvm-git-logs mailing list