Skip to content

Commit

Permalink
meson.build: enable LTO and -O3 for C schedulers
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnRTitor committed Jan 6, 2025
1 parent 35c4d7d commit 687dd4d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
project('sched_ext schedulers', 'c',
version: '1.0.8',
license: 'GPL-2.0',
meson_version : '>= 1.2.0',)
meson_version : '>= 1.2.0',
default_options : [
'optimization=3',
'b_lto=true',
])

fs = import('fs')

Expand Down

0 comments on commit 687dd4d

Please sign in to comment.