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:
authorRay Molenkamp <github@lazydodo.com>2020-10-20 22:04:53 +0300
committerRay Molenkamp <github@lazydodo.com>2020-10-20 22:04:53 +0300
commit43e4d6e5b1425860d5820e866c012a6ebd046a19 (patch)
tree5688179b485f14a3198e89ad317ef028a4c75c4a /build_files
parent0c1c6e7ecf407b447904885a0b436a0a6a7ca39a (diff)
CMake/Windows: Compile GMP library as fat library
Diffstat (limited to 'build_files')
-rw-r--r--build_files/build_environment/cmake/gmp.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/build_environment/cmake/gmp.cmake b/build_files/build_environment/cmake/gmp.cmake
index 54250bad153..7e3bb3258a4 100644
--- a/build_files/build_environment/cmake/gmp.cmake
+++ b/build_files/build_environment/cmake/gmp.cmake
@@ -20,7 +20,7 @@ set(GMP_EXTRA_ARGS -enable-cxx)
if(WIN32)
# Shared for windows because static libs will drag in a libgcc dependency.
- set(GMP_OPTIONS --disable-static --enable-shared --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32)
+ set(GMP_OPTIONS --disable-static --enable-shared --enable-fat --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32)
else()
set(GMP_OPTIONS --enable-static --disable-shared )
endif()