summaryrefslogtreecommitdiffstats
path: root/GNUmakefile
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-04-07 21:28:32 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-04-07 21:28:32 +0200
commit499962029a94074ecd007a1be5f760337ff9ffbb (patch)
treec084157866783cc18ef8c9844e0ee09edf38a7b7 /GNUmakefile
parentFixed bug in entities movement: Corrected proper flooring of double values for the relative move packet, and teleport packet. Also, made the velocity packet to be sent first than the positions packets. (diff)
downloadcuberite-499962029a94074ecd007a1be5f760337ff9ffbb.tar
cuberite-499962029a94074ecd007a1be5f760337ff9ffbb.tar.gz
cuberite-499962029a94074ecd007a1be5f760337ff9ffbb.tar.bz2
cuberite-499962029a94074ecd007a1be5f760337ff9ffbb.tar.lz
cuberite-499962029a94074ecd007a1be5f760337ff9ffbb.tar.xz
cuberite-499962029a94074ecd007a1be5f760337ff9ffbb.tar.zst
cuberite-499962029a94074ecd007a1be5f760337ff9ffbb.zip
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 43e0332ce..6e29f0a8b 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -41,7 +41,7 @@ ifeq ($(release),1)
################
CC_OPTIONS = -s -g -O3 -DNDEBUG
CXX_OPTIONS = -s -g -O3 -DNDEBUG
-LNK_OPTIONS = -lstdc++ -pthread -O3
+LNK_OPTIONS = -lstdc++ -ldl -pthread -O3
BUILDDIR = build/release/
else
@@ -51,7 +51,7 @@ ifeq ($(profile),1)
################
CC_OPTIONS = -s -g -ggdb -O3 -pg -DNDEBUG
CXX_OPTIONS = -s -g -ggdb -O3 -pg -DNDEBUG
-LNK_OPTIONS = -lstdc++ -pthread -ggdb -O3 -pg
+LNK_OPTIONS = -lstdc++ -ldl -pthread -ggdb -O3 -pg
BUILDDIR = build/profile/
else
@@ -61,7 +61,7 @@ ifeq ($(pedantic),1)
################
CC_OPTIONS = -s -g -ggdb -D_DEBUG -Wall -Wextra -pedantic -ansi -Wno-long-long
CXX_OPTIONS = -s -g -ggdb -D_DEBUG -Wall -Wextra -pedantic -ansi -Wno-long-long
-LNK_OPTIONS = -lstdc++ -pthread -ggdb
+LNK_OPTIONS = -lstdc++ -ldl -pthread -ggdb
BUILDDIR = build/pedantic/
else
@@ -71,7 +71,7 @@ else
################
CC_OPTIONS = -s -ggdb -g -D_DEBUG -O3
CXX_OPTIONS = -s -ggdb -g -D_DEBUG
-LNK_OPTIONS = -lstdc++ -pthread -g -ggdb
+LNK_OPTIONS = -lstdc++ -ldl -pthread -g -ggdb
BUILDDIR = build/debug/
endif
endif