Browse Source

Dont use LTO for windows CI builds for now

tags/v2.5.0
falkTX 2 years ago
parent
commit
30c59b14df
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      .github/workflows/build.yml

+ 4
- 2
.github/workflows/build.yml View File

@@ -128,7 +128,8 @@ jobs:
- name: make features - name: make features
run: make features run: make features
- name: make - name: make
run: make WITH_LTO=true -j $(nproc)
run: make -j $(nproc)
# FIXME WITH_LTO=true makes linker crash


ubuntu-mingw-win64: ubuntu-mingw-win64:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
@@ -152,4 +153,5 @@ jobs:
- name: make features - name: make features
run: make features run: make features
- name: make - name: make
run: make WITH_LTO=true -j $(nproc)
run: make -j $(nproc)
# FIXME WITH_LTO=true makes linker crash

Loading…
Cancel
Save