mirror of
https://github.com/phoboslab/wipeout-rewrite
synced 2024-12-28 10:00:00 +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
|
USE_GLX ?= false
|
||||||
DEBUG ?= false
|
DEBUG ?= false
|
||||||
|
|
||||||
#L_FLAGS ?= -lm -rdynamic
|
|
||||||
L_FLAGS ?= -lm
|
L_FLAGS ?= -lm
|
||||||
C_FLAGS ?= -std=gnu99 -Wall -Wno-unused-variable
|
C_FLAGS ?= -std=gnu99 -Wall -Wno-unused-variable
|
||||||
|
|
||||||
|
@ -38,7 +37,6 @@ endif
|
||||||
# macOS ------------------------------------------------------------------------
|
# macOS ------------------------------------------------------------------------
|
||||||
|
|
||||||
ifeq ($(UNAME_S), Darwin)
|
ifeq ($(UNAME_S), Darwin)
|
||||||
C_FLAGS := $(C_FLAGS) -rdynamic
|
|
||||||
C_FLAGS := $(C_FLAGS) -x objective-c -I/opt/homebrew/include -D_THREAD_SAFE -w
|
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
|
L_FLAGS := $(L_FLAGS) -L/opt/homebrew/lib -framework Foundation
|
||||||
|
|
||||||
|
@ -53,7 +51,6 @@ ifeq ($(UNAME_S), Darwin)
|
||||||
# Linux ------------------------------------------------------------------------
|
# Linux ------------------------------------------------------------------------
|
||||||
|
|
||||||
else ifeq ($(UNAME_S), Linux)
|
else ifeq ($(UNAME_S), Linux)
|
||||||
C_FLAGS := $(C_FLAGS) -rdynamic
|
|
||||||
ifeq ($(RENDERER), GL)
|
ifeq ($(RENDERER), GL)
|
||||||
L_FLAGS := $(L_FLAGS) -lGLEW
|
L_FLAGS := $(L_FLAGS) -lGLEW
|
||||||
|
|
||||||
|
@ -71,7 +68,6 @@ else ifeq ($(UNAME_S), Linux)
|
||||||
|
|
||||||
# Windows MSYS ------------------------------------------------------------------
|
# Windows MSYS ------------------------------------------------------------------
|
||||||
else ifeq ($(UNAME_O), Msys)
|
else ifeq ($(UNAME_O), Msys)
|
||||||
# MSYS2 enviroment
|
|
||||||
ifeq ($(RENDERER), GL)
|
ifeq ($(RENDERER), GL)
|
||||||
L_FLAGS := $(L_FLAGS) -lglew32 -lopengl32
|
L_FLAGS := $(L_FLAGS) -lglew32 -lopengl32
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue