[CMAKE] Use -fcommon when using CLang

This commit is contained in:
Jérôme Gardou 2020-12-22 12:32:45 +01:00 committed by Jérôme Gardou
parent 5387a7ccb2
commit 56e56f8ecc

View file

@ -55,6 +55,11 @@ if(ARCH STREQUAL "i386")
endif()
endif()
# CLang default to -fno-common from version 11 onward. We are not rady for this now
if (USE_CLANG_CL)
add_compile_options(-fcommon)
endif()
# VS 12+ requires /FS when used in parallel compilations
if(NOT MSVC_IDE)
add_compile_options(/FS)