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 3254b9a commit 2531d64Copy full SHA for 2531d64
CMakeLists.txt
@@ -430,6 +430,14 @@ if(FLB_SMALL)
430
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Os -g0 ${strip_flag} -fno-stack-protector -fomit-frame-pointer -DNDEBUG -U_FORTIFY_SOURCE")
431
endif()
432
433
+# simdutf
434
+if(FLB_UNICODE_ENCODER)
435
+ if (NOT FLB_USE_SIMDUTF)
436
+ message(STATUS "FLB_USE_SIMDUTF is disabled. Disabling FLB_UNICODE_ENCODER support.")
437
+ set(FLB_UNICODE_ENCODER OFF)
438
+ endif()
439
+endif()
440
+
441
if(FLB_COVERAGE)
442
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -O0 --coverage -fprofile-arcs -ftest-coverage")
443
if (FLB_UNICODE_ENCODER)
0 commit comments