lib: prevent locale issues on build by setting LC_ALL

This commit is contained in:
Oscar Mira 2023-06-04 21:55:38 +02:00
parent aa5ea643cc
commit ca82726aa7

View File

@ -30,6 +30,9 @@ else()
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -flto")
endif()
# Prevent locale issues
set(ENV{LC_ALL} C)
# Common definitions across builds
include(cmake/toolchain.cmake)