bump nim-libbacktrace (#1769)

* bump nim-libbacktrace

so it works with LTO

* macOS fix
This commit is contained in:
Ștefan Talpalaru 2020-09-28 21:23:53 +02:00 committed by GitHub
parent f6b8e26567
commit de1b3315e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

View File

@ -4,26 +4,26 @@ if defined(arm64):
# https://twitter.com/EthereumOnARM/status/1309477357938499585?s=20 # https://twitter.com/EthereumOnARM/status/1309477357938499585?s=20
# https://github.com/supranational/blst/issues/31 # https://github.com/supranational/blst/issues/31
switch("define", "BLS_FORCE_BACKEND=miracl") switch("define", "BLS_FORCE_BACKEND=miracl")
# --------------------------------------------------- # ---------------------------------------------------
if defined(release): when defined(release):
switch("nimcache", "nimcache/release/$projectName") let nimCachePath = "nimcache/release/" & projectName()
else: else:
switch("nimcache", "nimcache/debug/$projectName") let nimCachePath = "nimcache/debug/" & projectName()
switch("nimcache", nimCachePath)
# `-flto` gives a significant improvement in processing speed, specially hash tree and state transition (basically any CPU-bound code implemented in nim) # `-flto` gives a significant improvement in processing speed, specially hash tree and state transition (basically any CPU-bound code implemented in nim)
# With LTO enabled, optimization flags should be passed to both compiler and linker! # With LTO enabled, optimization flags should be passed to both compiler and linker!
if defined(release) and not defined(disableLTO): if defined(release) and not defined(disableLTO):
if defined(macosx): # Clang if defined(macosx): # Clang
switch("passC", "-flto=thin") switch("passC", "-flto=thin")
switch("passL", "-flto=thin") switch("passL", "-flto=thin -Wl,-object_path_lto," & nimCachePath & "/lto")
elif defined(linux): elif defined(linux):
switch("passC", "-flto=auto") switch("passC", "-flto=auto")
switch("passL", "-flto=auto") switch("passL", "-flto=auto")
else: else:
# On windows, LTO needs more love and attention so the right linkers # On windows, LTO needs more love and attention so "gcc-ar" and "gcc-ranlib" are
# are used # used for static libraries.
discard discard
if defined(windows): if defined(windows):

@ -1 +1 @@
Subproject commit dc2c199d41dc90de75043d1ee4efe5e0323932bf Subproject commit 8121c08e0e7bdf92f86012b4af2330434fa7ed5d