mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
CI: fix building for Windows MSVC x86
Fixes compilation for Win32 with Chocolatey LLVM installation, which was recently installed on GitHub runners and which defaults to x86_64-pc-windows-msvc target.
This commit is contained in:
parent
80f05c2278
commit
082e93aa9e
1 changed files with 4 additions and 4 deletions
8
.github/workflows/main.yml
vendored
8
.github/workflows/main.yml
vendored
|
@ -59,8 +59,8 @@ jobs:
|
|||
library-combo: ng-gnu-gnu
|
||||
runtime-version: gnustep-2.0
|
||||
configure-opts: --disable-tls
|
||||
CC: clang
|
||||
CXX: clang++
|
||||
CC: clang -m32
|
||||
CXX: clang++ -m32
|
||||
LDFLAGS: -fuse-ld=lld
|
||||
|
||||
- name: Windows MSVC Clang gnustep-2.0 x86_64
|
||||
|
@ -71,8 +71,8 @@ jobs:
|
|||
library-combo: ng-gnu-gnu
|
||||
runtime-version: gnustep-2.0
|
||||
configure-opts: --disable-tls
|
||||
CC: clang
|
||||
CXX: clang++
|
||||
CC: clang -m64
|
||||
CXX: clang++ -m64
|
||||
LDFLAGS: -fuse-ld=lld
|
||||
|
||||
env:
|
||||
|
|
Loading…
Reference in a new issue