From 30c59b14df5d067471679b8e3704cfb5bc8f535a Mon Sep 17 00:00:00 2001 From: falkTX Date: Thu, 14 Jul 2022 18:08:54 +0100 Subject: [PATCH] Dont use LTO for windows CI builds for now --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bd2270362..79ae35a51 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -128,7 +128,8 @@ jobs: - name: make features run: make features - name: make - run: make WITH_LTO=true -j $(nproc) + run: make -j $(nproc) + # FIXME WITH_LTO=true makes linker crash ubuntu-mingw-win64: runs-on: ubuntu-20.04 @@ -152,4 +153,5 @@ jobs: - name: make features run: make features - name: make - run: make WITH_LTO=true -j $(nproc) + run: make -j $(nproc) + # FIXME WITH_LTO=true makes linker crash