We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 640ccec commit 71f6d99Copy full SHA for 71f6d99
Make.inc
@@ -29,6 +29,7 @@ USE_SYSTEM_ZLIB=0
29
USE_SYSTEM_GRISU=0
30
USE_SYSTEM_RMATH=0
31
USE_SYSTEM_LIBUV=0
32
+USE_SYSTEM_UTF8PROC=0
33
USE_SYSTEM_MOJIBAKE=0
34
35
# Link to the LLVM shared library
@@ -534,7 +535,11 @@ endif
534
535
ifeq ($(USE_SYSTEM_MOJIBAKE), 1)
536
LIBMOJIBAKE = -lmojibake
537
else
- LIBMOJIBAKE = $(build_libdir)/libmojibake.a
538
+ ifeq ($(USE_SYSTEM_UTF8PROC), 1)
539
+ LIBMOJIBAKE = -lutf8proc
540
+ else
541
+ LIBMOJIBAKE = $(build_libdir)/libmojibake.a
542
+ endif
543
endif
544
545
# OS specific stuff
0 commit comments