mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-01-18 23:41:38 +00:00
Pass -rdynamic to the linker on Linux
This fixes the backtrace output in the signal handler.
This commit is contained in:
parent
20110faeed
commit
3e294e5288
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -181,7 +181,7 @@ endif
|
|||
|
||||
# Base LDFLAGS.
|
||||
ifeq ($(OSTYPE),Linux)
|
||||
LDFLAGS := -L/usr/lib -lm -ldl
|
||||
LDFLAGS := -L/usr/lib -lm -ldl -rdynamic
|
||||
else ifeq ($(OSTYPE),FreeBSD)
|
||||
LDFLAGS := -L/usr/local/lib -lm
|
||||
else ifeq ($(OSTYPE),OpenBSD)
|
||||
|
|
Loading…
Reference in a new issue