Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2022-09-08 19:53:42 +0300
committerGitHub <noreply@github.com>2022-09-08 19:53:42 +0300
commit096bfdacdb08d0b0ea3adf06586a15b5fba1dc07 (patch)
treebca4cc7254c2c4c387945b3ef52ce2b4cc064467
parentcc73c7679b08158f91b02272efbb0e3e5dd9c9e4 (diff)
parentc510db7138f64f7b13426cf6a5f324a138e39b4b (diff)
Merge PR #5859: Backport "BUILD(build): Fix -mbig-obj test"
-rw-r--r--cmake/compiler.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/compiler.cmake b/cmake/compiler.cmake
index 6fbb67e33..e61ab6181 100644
--- a/cmake/compiler.cmake
+++ b/cmake/compiler.cmake
@@ -79,7 +79,7 @@ elseif(UNIX OR MINGW)
)
# Avoid "File too big" error
- check_cxx_compiler_flag("Wa,-mbig-obj" COMPILER_HAS_MBIG_OBJ)
+ check_cxx_compiler_flag("-Wa,-mbig-obj" COMPILER_HAS_MBIG_OBJ)
if (${COMPILER_HAS_MBIG_OBJ})
add_compile_options("-Wa,-mbig-obj")
endif()