aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorfusion32 <marcopuzziello@gmail.com>2026-05-28 23:56:29 -0300
committerfusion32 <marcopuzziello@gmail.com>2026-05-28 23:56:29 -0300
commite2ba7cd29617ae05087ad3d25c55a2eb8ce607a3 (patch)
tree2a93ee38c7cc9c83b3b89b3f0f7cbb6fcb8e8b3c /Makefile
parentd1c4dce3be82aa7e50ddb5b43f15ecc00a16f985 (diff)
downloadgame-e2ba7cd29617ae05087ad3d25c55a2eb8ce607a3.tar.gz
game-e2ba7cd29617ae05087ad3d25c55a2eb8ce607a3.zip
fix issues and warnings when compiling with glibc < 2.32 (#57, #58)
This also fixes some inconsistencies such as mixing both strerror and strerrordesc_np, and possible formatting issues.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 097c430..07f598a 100644
--- a/Makefile
+++ b/Makefile
@@ -4,13 +4,13 @@ OUTPUTEXE = game
CC = g++
CFLAGS = -m64 -fno-strict-aliasing -pedantic -Wall -Wextra -Wno-deprecated-declarations -Wno-unused-parameter -Wno-format-truncation -std=c++11 -pthread -DOS_LINUX=1 -DARCH_X64=1
-LFLAGS = -Wl,-t -lcrypto
+LFLAGS = -Wl,-t -lrt -lcrypto
DEBUG ?= 0
ifneq ($(DEBUG), 0)
- CFLAGS += -g -Og -DENABLE_ASSERTIONS=1
+ CFLAGS += -g -Og -DENABLE_ASSERTIONS=1
else
- CFLAGS += -O2
+ CFLAGS += -O2
endif
HEADERS = $(SRCDIR)/common.hh $(SRCDIR)/communication.hh $(SRCDIR)/config.hh $(SRCDIR)/connections.hh $(SRCDIR)/containers.hh $(SRCDIR)/cr.hh $(SRCDIR)/crypto.hh $(SRCDIR)/enums.hh $(SRCDIR)/houses.hh $(SRCDIR)/info.hh $(SRCDIR)/magic.hh $(SRCDIR)/map.hh $(SRCDIR)/moveuse.hh $(SRCDIR)/objects.hh $(SRCDIR)/operate.hh $(SRCDIR)/query.hh $(SRCDIR)/reader.hh $(SRCDIR)/script.hh $(SRCDIR)/threads.hh $(SRCDIR)/writer.hh