Switch back to gcc.

This commit is contained in:
David Given
2025-09-20 20:49:18 +02:00
parent 04f916741e
commit ab05db9040
2 changed files with 11 additions and 3 deletions

View File

@@ -94,6 +94,11 @@ jobs:
repository: 'davidgiven/fluxengine-testdata'
path: 'fluxengine-testdata'
- uses: actions/checkout@v4
with:
repository: 'abseil/abseil-cpp'
path: 'abseil'
- uses: msys2/setup-msys2@v2
with:
msystem: mingw64
@@ -102,8 +107,11 @@ jobs:
run: |
set -x
pacman -S --needed --noconfirm pactoys make python diffutils ninja
pacboy -S --needed --noconfirm protobuf:p pkg-config:p curl-winssl:p file:p glfw:p mbedtls:p sqlite:p freetype:p boost:p clang:p binutils:p
pacboy -S --needed --noconfirm protobuf:p pkg-config:p curl-winssl:p file:p glfw:p mbedtls:p sqlite:p freetype:p boost:p gcc:p binutils:p
- name: abseil
run: |
cd abseil && mkdir build && cd build &&
- name: run
run: |
make -C fluxengine BUILDTYPE=windows

View File

@@ -10,8 +10,8 @@ export BUILDTYPE
ifeq ($(BUILDTYPE),windows)
MINGW = x86_64-w64-mingw32-
CC = /mingw64/bin/clang
CXX = /mingw64/bin/clang++
CC = $(MINGW)gcc
CXX = $(MINGW)g++
CFLAGS += -g -O3 \
-ffunction-sections \
-fdata-sections \