mirror of
https://github.com/phoboslab/wipeout-rewrite
synced 2024-12-26 09:59:04 +01:00
Remove obsolete -rdynamic flag
This commit is contained in:
parent
6fcd669733
commit
e9f91c57f0
1 changed files with 0 additions and 4 deletions
4
Makefile
4
Makefile
|
@ -6,7 +6,6 @@ RENDERER ?= GL
|
|||
USE_GLX ?= false
|
||||
DEBUG ?= false
|
||||
|
||||
#L_FLAGS ?= -lm -rdynamic
|
||||
L_FLAGS ?= -lm
|
||||
C_FLAGS ?= -std=gnu99 -Wall -Wno-unused-variable
|
||||
|
||||
|
@ -38,7 +37,6 @@ endif
|
|||
# macOS ------------------------------------------------------------------------
|
||||
|
||||
ifeq ($(UNAME_S), Darwin)
|
||||
C_FLAGS := $(C_FLAGS) -rdynamic
|
||||
C_FLAGS := $(C_FLAGS) -x objective-c -I/opt/homebrew/include -D_THREAD_SAFE -w
|
||||
L_FLAGS := $(L_FLAGS) -L/opt/homebrew/lib -framework Foundation
|
||||
|
||||
|
@ -53,7 +51,6 @@ ifeq ($(UNAME_S), Darwin)
|
|||
# Linux ------------------------------------------------------------------------
|
||||
|
||||
else ifeq ($(UNAME_S), Linux)
|
||||
C_FLAGS := $(C_FLAGS) -rdynamic
|
||||
ifeq ($(RENDERER), GL)
|
||||
L_FLAGS := $(L_FLAGS) -lGLEW
|
||||
|
||||
|
@ -71,7 +68,6 @@ else ifeq ($(UNAME_S), Linux)
|
|||
|
||||
# Windows MSYS ------------------------------------------------------------------
|
||||
else ifeq ($(UNAME_O), Msys)
|
||||
# MSYS2 enviroment
|
||||
ifeq ($(RENDERER), GL)
|
||||
L_FLAGS := $(L_FLAGS) -lglew32 -lopengl32
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue