diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-09-15 23:09:41 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-09-15 23:09:41 +0200 |
commit | 5b5de30ac0baf416078cd339af694d0ec70db37a (patch) | |
tree | 23ffbde410bd1d7282e6195b84fee5576c5c3a32 /Makefile.native.inc | |
parent | f8948b833688f3622b0c0d2e2fba03f5db6ee7a5 (diff) |
Added ::from_unicode to convert unicode strings to ansi string in kernel mode.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'Makefile.native.inc')
-rw-r--r-- | Makefile.native.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.native.inc b/Makefile.native.inc index e782d61..b24425a 100644 --- a/Makefile.native.inc +++ b/Makefile.native.inc @@ -22,7 +22,7 @@ AR = /usr/bin/ar CFLAGS := -Wall -Wextra -Wno-sign-compare -Wno-strict-aliasing -Wno-c++20-compat \ -m64 -fPIC -fvisibility=hidden \ -ffunction-sections -fdata-sections \ - -I$(DPP_ROOT)/CRT + -I$(DPP_ROOT)/CRT -DNATIVE=1 ifneq ($(WERROR),) CFLAGS += -Werror endif |