Skip to content

Commit

Permalink
omit frame pointer for secp256k1 (#6402)
Browse files Browse the repository at this point in the history
  • Loading branch information
tersec authored Jul 3, 2024
1 parent 814dcf5 commit 0dc2447
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion config.nims
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 0dc2447

Please sign in to comment.