diff options
author | Bertrand Jacquin <bertrand@jacquin.bzh> | 2019-11-30 02:09:14 +0000 |
---|---|---|
committer | Bertrand Jacquin <bertrand@jacquin.bzh> | 2020-10-19 18:32:02 +0100 |
commit | ea1400129fa76ea66acc48e2a2f3ca1acb64711e (patch) | |
tree | 6e9754f84ee6021aa5e57ee7d87a6548d08822a5 | |
parent | Use gentoo dev-libs/randomx (diff) | |
download | monero-ea1400129fa76ea66acc48e2a2f3ca1acb64711e.tar.xz |
translations: use host compilerv0.17.1.1
Do not pass target compiler and compiler flags as
generate_translations_header need to be created using host compiler and
compiler flags
-rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 41f82e26c..63c6f2d4f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -468,7 +468,12 @@ ExternalProject_Add(generate_translations_header SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/translations" BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/translations" STAMP_DIR ${LRELEASE_PATH} - CMAKE_ARGS -DLRELEASE_PATH=${LRELEASE_PATH} + CMAKE_ARGS + -DCMAKE_C_COMPILER=$ENV{BUILD_CC} + -DCMAKE_CXX_COMPILER=$ENV{BUILD_CXX} + -DCMAKE_C_FLAGS=$ENV{BUILD_CFLAGS} + -DCMAKE_CXX_FLAGS=$ENV{BUILD_CXXFLAGS} + -DLRELEASE_PATH=${LRELEASE_PATH} INSTALL_COMMAND cmake -E echo "") include_directories("${CMAKE_CURRENT_BINARY_DIR}/translations") add_subdirectory(external) |