Skip to content

Commit

Permalink
fix: disable lto by default in conan recipe
Browse files Browse the repository at this point in the history
Disable lto by default

#242

I hereby agree to the terms of the CLA available at: https://yandex.ru/legal/cla/

Tests: протестировано CI
8d6da950fac0d2dd020b334ce68867c312dc16a2

Pull Request resolved: #516
  • Loading branch information
pavelbezpravel authored and segoon committed Apr 2, 2024
1 parent 281f816 commit ec99803
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class UserverConan(ConanFile):
default_options = {
'shared': False,
'fPIC': True,
'lto': True,
'lto': False,
'with_jemalloc': True,
'with_mongodb': True,
'with_postgresql': True,
Expand Down

0 comments on commit ec99803

Please sign in to comment.