diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-10-12 23:29:32 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-10-12 23:29:32 +0300 |
commit | 818b727df58685c19d9072154f73f7ad3db023db (patch) | |
tree | 2903477f8388a037621f12a5b41750cb35721a37 /tests | |
parent | 89313128e8d0427b1f834fb262f52d6135b98f92 (diff) | |
download | ejit-818b727df58685c19d9072154f73f7ad3db023db.tar.gz ejit-818b727df58685c19d9072154f73f7ad3db023db.zip |
+ 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 'tests')
-rw-r--r-- | tests/makefile | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/makefile b/tests/makefile index 53115de..2328d0e 100644 --- a/tests/makefile +++ b/tests/makefile @@ -19,11 +19,6 @@ LTO ?= 0 LTOFLAGS != [ "$(LTO)" != "0" ] \ && echo "-flto=auto" -DEBUG ?= 1 -DEBUGFLAGS != [ "$(DEBUG)" != "0" ] \ - && echo "-DDEBUG=1" \ - || echo "-DNDEBUG=1" - OBFLAGS := -g WARNFLAGS := -Wall -Wextra INCLUDE_FLAGS := -I include |