mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-04-14 15:09:06 +02:00
Merge pull request #6105 from liviu-ln/master
make: don't optimize debug binaries
This commit is contained in:
commit
2aad76aea9
5
Makefile
5
Makefile
@ -53,6 +53,7 @@ make_ldflags = $(2) -X $(PKG)/build.Commit=$(COMMIT) \
|
||||
-X $(PKG)/build.GoVersion=$(GOVERSION) \
|
||||
-X $(PKG)/build.RawTags=$(shell echo $(1) | sed -e 's/ /,/g')
|
||||
|
||||
DEV_GCFLAGS := -gcflags "all=-N -l"
|
||||
LDFLAGS := -ldflags "$(call make_ldflags, ${tags}, -s -w)"
|
||||
DEV_LDFLAGS := -ldflags "$(call make_ldflags, $(DEV_TAGS))"
|
||||
ITEST_LDFLAGS := -ldflags "$(call make_ldflags, $(ITEST_TAGS))"
|
||||
@ -116,8 +117,8 @@ $(GOFUZZ_DEP_BIN):
|
||||
|
||||
build:
|
||||
@$(call print, "Building debug lnd and lncli.")
|
||||
$(GOBUILD) -tags="$(DEV_TAGS)" -o lnd-debug $(DEV_LDFLAGS) $(PKG)/cmd/lnd
|
||||
$(GOBUILD) -tags="$(DEV_TAGS)" -o lncli-debug $(DEV_LDFLAGS) $(PKG)/cmd/lncli
|
||||
$(GOBUILD) -tags="$(DEV_TAGS)" -o lnd-debug $(DEV_GCFLAGS) $(DEV_LDFLAGS) $(PKG)/cmd/lnd
|
||||
$(GOBUILD) -tags="$(DEV_TAGS)" -o lncli-debug $(DEV_GCFLAGS) $(DEV_LDFLAGS) $(PKG)/cmd/lncli
|
||||
|
||||
build-itest:
|
||||
@$(call print, "Building itest btcd and lnd.")
|
||||
|
@ -19,6 +19,10 @@
|
||||
* [Allow disabling migrations if the database backend passed to `channeldb` was
|
||||
opened in read-only mode](https://github.com/lightningnetwork/lnd/pull/6084).
|
||||
|
||||
* [Disable compiler optimizations](https://github.com/lightningnetwork/lnd/pull/6105)
|
||||
when building `lnd-debug` and `lncli-debug`. It helps when stepping through the code
|
||||
with a debugger like Delve.
|
||||
|
||||
## RPC Server
|
||||
|
||||
* [Add value to the field
|
||||
@ -41,4 +45,5 @@
|
||||
* Andreas Schjønhaug
|
||||
* Daniel McNally
|
||||
* ErikEk
|
||||
* Liviu
|
||||
* Torkel Rogstad
|
||||
|
Loading…
x
Reference in New Issue
Block a user