Merge pull request #1315 from cmcginty/dev
Add build define to manually enable -rdynamic LD flagdev
commit
b287b8f7c6
|
@ -40,8 +40,6 @@ CPPFLAGS+= -I$(ZSTDDIR) -I$(ZSTDDIR)/common -I$(ZSTDDIR)/compress \
|
||||||
-DXXH_NAMESPACE=ZSTD_
|
-DXXH_NAMESPACE=ZSTD_
|
||||||
ifeq ($(OS),Windows_NT) # MinGW assumed
|
ifeq ($(OS),Windows_NT) # MinGW assumed
|
||||||
CPPFLAGS += -D__USE_MINGW_ANSI_STDIO # compatibility with %zu formatting
|
CPPFLAGS += -D__USE_MINGW_ANSI_STDIO # compatibility with %zu formatting
|
||||||
else
|
|
||||||
DEBUGFLAGS_LD+= -rdynamic # Enable backtrace symbol names for Linux/Darwin
|
|
||||||
endif
|
endif
|
||||||
CFLAGS ?= -O3
|
CFLAGS ?= -O3
|
||||||
DEBUGFLAGS+=-Wall -Wextra -Wcast-qual -Wcast-align -Wshadow \
|
DEBUGFLAGS+=-Wall -Wextra -Wcast-qual -Wcast-align -Wshadow \
|
||||||
|
@ -134,6 +132,15 @@ else
|
||||||
LZ4_MSG := $(NO_LZ4_MSG)
|
LZ4_MSG := $(NO_LZ4_MSG)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# enable backtrace symbol names for Linux/Darwin
|
||||||
|
ALL_SYMBOLS := 0
|
||||||
|
ifeq (,$(filter Windows%, $(OS)))
|
||||||
|
ifeq ($(ALL_SYMBOLS), 1)
|
||||||
|
DEBUGFLAGS_LD+=-rdynamic
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
.PHONY: default
|
.PHONY: default
|
||||||
default: zstd-release
|
default: zstd-release
|
||||||
|
|
||||||
|
|
|
@ -61,6 +61,13 @@ There are however other Makefile targets that create different variations of CLI
|
||||||
In which case, linking stage will fail if `lz4` library cannot be found.
|
In which case, linking stage will fail if `lz4` library cannot be found.
|
||||||
This is useful to prevent silent feature disabling.
|
This is useful to prevent silent feature disabling.
|
||||||
|
|
||||||
|
- __ALL_SYMBOLS__ : `zstd` can display a stack backtrace if the execution
|
||||||
|
generates a runtime exception. By default, this feature may be
|
||||||
|
degraded/disabled on some platforms unless additional compiler directives are
|
||||||
|
applied. When triaging a runtime issue, enabling this feature can provided
|
||||||
|
more context to determine the location of the fault.
|
||||||
|
Example : `make zstd ALL_SYMBOLS=1`
|
||||||
|
|
||||||
|
|
||||||
#### Aggregation of parameters
|
#### Aggregation of parameters
|
||||||
CLI supports aggregation of parameters i.e. `-b1`, `-e18`, and `-i1` can be joined into `-b1e18i1`.
|
CLI supports aggregation of parameters i.e. `-b1`, `-e18`, and `-i1` can be joined into `-b1e18i1`.
|
||||||
|
|
Loading…
Reference in New Issue