aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2025-11-05 11:09:25 +0800
committerLi Jin <dragon-fly@qq.com>2025-11-05 11:09:25 +0800
commit4e7cf4d863804303a931d6e16df7de6616337909 (patch)
treeb7ca7d521c5e350ccbd160c8d4ff55269e998903 /makefile
parent3a830bd4dd003dbf90270ca22f40b517b7b576df (diff)
downloadyuescript-4e7cf4d863804303a931d6e16df7de6616337909.tar.gz
yuescript-4e7cf4d863804303a931d6e16df7de6616337909.tar.bz2
yuescript-4e7cf4d863804303a931d6e16df7de6616337909.zip
Removed the use of codecvt from C++ for it being removed in C++26.
Diffstat (limited to 'makefile')
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index 9c2f1da..7e183d1 100644
--- a/makefile
+++ b/makefile
@@ -11,7 +11,7 @@ SRC_PATH = ./src
11# Space-separated pkg-config libraries used by this project 11# Space-separated pkg-config libraries used by this project
12LIBS = 12LIBS =
13# General compiler flags 13# General compiler flags
14COMPILE_FLAGS = -std=c++17 -Wall -Wextra -Wno-deprecated-declarations 14COMPILE_FLAGS = -std=c++17 -Wall -Wextra -Wno-deprecated-declarations -DYUE_UTF8_IMPL
15# Additional release-specific flags 15# Additional release-specific flags
16RCOMPILE_FLAGS = -D NDEBUG -O3 16RCOMPILE_FLAGS = -D NDEBUG -O3
17# Additional debug-specific flags 17# Additional debug-specific flags