From dd64edd58fe25ec74ae5958128cf3f74b0692f3b Mon Sep 17 00:00:00 2001 From: Li Jin Date: Wed, 28 Jan 2026 18:43:14 +0800 Subject: Fixed compiler issues and added 800+ test cases. --- makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index dac835a..3a99b06 100644 --- a/makefile +++ b/makefile @@ -11,7 +11,8 @@ SRC_PATH = ./src # Space-separated pkg-config libraries used by this project LIBS = # General compiler flags -COMPILE_FLAGS = -std=c++17 -Wall -Wextra -DYUE_UTF8_IMPL +COMPILE_FLAGS = -Wall -Wextra +CXXFLAGS = -std=c++17 -DYUE_UTF8_IMPL # Additional release-specific flags RCOMPILE_FLAGS = -DNDEBUG -O3 # Additional debug-specific flags @@ -80,7 +81,7 @@ endif ifeq ($(IS_TERMUX),true) ifeq ($(NO_WATCHER),) NO_WATCHER := true - $(info Detected Android Termux environment, automatically setting NO_WATCHER=true) + $(info Detected Android Termux environment, automatically setting NO_WATCHER=true) endif endif -- cgit v1.2.3-55-g6feb