omit frame pointer for secp256k1 (#6402)

This commit is contained in:
tersec 2024-07-03 22:06:10 +00:00 committed by GitHub
parent 814dcf595c
commit 0dc2447a58
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -215,7 +215,8 @@ put("server.always", "-fno-lto")
put("assembly.always", "-fno-lto")
# Secp256k1
put("secp256k1.always", "-fno-lto")
# -fomit-frame-pointer for https://github.com/status-im/nimbus-eth2/issues/6324
put("secp256k1.always", "-fno-lto -fomit-frame-pointer")
# BearSSL - only RNGs
put("aesctr_drbg.always", "-fno-lto")