aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-07 12:58:39 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-07 12:58:39 -0400
commit2349bd2ffdd7b312c4b13e5794f12d2b7613f3b4 (patch)
tree9bc4011faf651549f12db329f548215415b13e2a
parentd737454d32981282b1dd9de44ebd03a2d0a39f0d (diff)
Added 64-bit compiling to Makefile
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 50c0863..dbbb640 100644
--- a/Makefile
+++ b/Makefile
@@ -39,7 +39,7 @@ LIBDIR = lib
LIBS = -L$(LIBDIR) -lSDL2 -lpthread -lentityx -ldl -lluajit -lGLEW -lGL -lSDL2_image -lSOIL
CXXFLAGS = -ggdb -std=c++17 -Wall -Wextra -Werror -pedantic \
- -Wno-class-memaccess -Wno-implicit-fallthrough
+ -Wno-class-memaccess -Wno-implicit-fallthrough -m64
CXXINCS = -Isrc -I$(LIBDIR)/LuaJIT/src -I$(LIBDIR)/entityx \
-I$(LIBDIR)/LuaBridge/Source -I$(LIBDIR)/sol2/include -I$(LIBDIR)/soil \