aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-10-12 23:29:32 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2025-10-12 23:29:32 +0300
commit818b727df58685c19d9072154f73f7ad3db023db (patch)
tree2903477f8388a037621f12a5b41750cb35721a37 /scripts
parent89313128e8d0427b1f834fb262f52d6135b98f92 (diff)
downloadejit-818b727df58685c19d9072154f73f7ad3db023db.tar.gz
ejit-818b727df58685c19d9072154f73f7ad3db023db.zip
fix compilation on openbsdHEADmaster
+ Labels require expressions after them when compiled with clang + CFLAGS is predefined by bmake to use DEBUG, remove it since it was kind of pointless anyway + Tests don't yet pass, apparently openbsd disagrees with some of my runtime type decisions
Diffstat (limited to 'scripts')
-rw-r--r--scripts/makefile10
1 files changed, 3 insertions, 7 deletions
diff --git a/scripts/makefile b/scripts/makefile
index 6e3b972..39ac062 100644
--- a/scripts/makefile
+++ b/scripts/makefile
@@ -6,12 +6,8 @@ OPTFLAGS != [ "$(RELEASE)" != "0" ] \
LTO ?= 0
LTOFLAGS != [ "$(LTO)" != "0" ] \
- && echo "-flto=auto"
-
-DEBUG ?= 1
-DEBUGFLAGS != [ "$(DEBUG)" != "0" ] \
- && echo "-DDEBUG=1" \
- || echo "-DNDEBUG=1"
+ && echo "-flto=auto" \
+ || echo
DEPFLAGS = -MT $@ -MMD -MP -MF $@.d
LINTFLAGS := -fsyntax-only
@@ -43,7 +39,7 @@ OBFLAGS := -g
WARNFLAGS := -Wall -Wextra
COMPILE_FLAGS := $(CFLAGS) $(WARNFLAGS) $(OPTFLAGS) $(LTOFLAGS) \
- $(OBFLAGS) $(DEBUGFLAGS)
+ $(OBFLAGS)
INCLUDE_FLAGS := -I include -I deps/conts/include