mirror of
https://github.com/scorpion-26/gBar.git
synced 2024-11-21 18:52:49 +00:00
Buildsystem: Remove LTO by default
LTO under gcc is suboptimal due to: 1. No thin LTO 2. Basically requires gcc-ar for static library support. Nix systems apparently don't have that. Fixes https://github.com/scorpion-26/gBar/issues/10
This commit is contained in:
parent
c536e43cd0
commit
6d3f1b64f4
1 changed files with 1 additions and 2 deletions
|
@ -6,8 +6,7 @@ project('gBar',
|
|||
default_options: ['c_std=c++17',
|
||||
'warning_level=3',
|
||||
'default_library=static',
|
||||
'buildtype=release',
|
||||
'b_lto=true'],
|
||||
'buildtype=release'],
|
||||
)
|
||||
|
||||
gtk = dependency('gtk+-3.0')
|
||||
|
|
Loading…
Reference in a new issue