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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey@blender.org>2020-10-20 17:18:12 +0300
committerSergey Sharybin <sergey@blender.org>2020-10-20 17:18:59 +0300
commit1c08ab45357ca0884107bbc5e159097c9c58cc19 (patch)
tree079d088f1b2413d3809d9c228cba577c32a64e16 /build_files
parent8319279fdbdd4299c34b986e786358fb7a0e9491 (diff)
CMake: Compile GMP library as fat library
The idea behind this is to compile all versions of functions, and let the library to pick the best at runtime. Attempting to fix T81835
Diffstat (limited to 'build_files')
-rw-r--r--build_files/build_environment/cmake/gmp.cmake1
1 files changed, 1 insertions, 0 deletions
diff --git a/build_files/build_environment/cmake/gmp.cmake b/build_files/build_environment/cmake/gmp.cmake
index 173f4df7e60..54250bad153 100644
--- a/build_files/build_environment/cmake/gmp.cmake
+++ b/build_files/build_environment/cmake/gmp.cmake
@@ -41,6 +41,7 @@ elseif(UNIX)
set(GMP_OPTIONS
${GMP_OPTIONS}
--with-pic
+ --enable-fat
)
endif()