浏览代码

Merge pull request #4979 from ripopov/fix-tests-mingw-w64

tests: fix link failure and stack overflow on Mingw w64
Adam Cozzette 7 年之前
父节点
当前提交
3d62db3ecd
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. 7 0
      cmake/tests.cmake

+ 7 - 0
cmake/tests.cmake

@@ -206,6 +206,13 @@ endif()
 
 if(MINGW)
   set_source_files_properties(${tests_files} PROPERTIES COMPILE_FLAGS "-Wno-narrowing")
+
+  # required for tests on MinGW Win64
+  if (CMAKE_SIZEOF_VOID_P EQUAL 8)
+    set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--stack,16777216")
+    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wa,-mbig-obj")
+  endif()
+
 endif()
 
 add_executable(tests ${tests_files} ${common_test_files} ${tests_proto_files} ${lite_test_proto_files})