Skip to content

Commit

Permalink
cmake: fix UNICODE-escaped characters on aarch64
Browse files Browse the repository at this point in the history
Signed-off-by: Rama Malladi <[email protected]>
  • Loading branch information
RamaMalladiAWS committed Sep 11, 2024
1 parent 072ffe7 commit 3fd8b9d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ endif()
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
set(FLB_SYSTEM_LINUX On)
add_definitions(-DFLB_SYSTEM_LINUX)
if (CMAKE_SYSTEM_PROCESSOR MATCHES "^(arm64|aarch64)")
set(FLB_LINUX_ON_ARM On)
add_definitions(-DFLB_LINUX_ON_ARM)
endif()
endif()

# Update CFLAGS
Expand Down Expand Up @@ -150,6 +154,9 @@ option(FLB_WASM "Build with WASM runtime support" Yes)
option(FLB_WAMRC "Build with WASM AOT compiler executable" No)
option(FLB_WASM_STACK_PROTECT "Build with WASM runtime with strong stack protector flags" No)
option(FLB_ENFORCE_ALIGNMENT "Enable limited platform specific aligned memory access" No)
if (FLB_LINUX_ON_ARM)
option(FLB_PREFER_SIGNED_CHAR "Build with signed char (Linux on ARM only)" No)
endif()

# Native Metrics Support (cmetrics)
option(FLB_METRICS "Enable metrics support" Yes)
Expand Down Expand Up @@ -301,6 +308,14 @@ if (FLB_SYSTEM_LINUX)
include(cmake/s390x.cmake)
endif ()

# Enable signed char support on Linux ARM if specified
if (FLB_LINUX_ON_ARM)
if (FLB_PREFER_SIGNED_CHAR)
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsigned-char")
message(STATUS "Enabling signed char")
endif()
endif()

# Extract Git commit information for debug output.
# Note that this is only set when cmake is run, the intent here is to use in CI for verification of releases so is acceptable.
# For a better solution see https://jonathanhamberg.com/post/cmake-embedding-git-hash/ but this is simple and easy.
Expand Down

0 comments on commit 3fd8b9d

Please sign in to comment.