Author: akhaldi Date: Wed Sep 10 16:03:22 2014 New Revision: 64107
URL: http://svn.reactos.org/svn/reactos?rev=64107&view=rev Log: [RICHED20] * Fall back to gas with some source files until http://llvm.org/bugs/show_bug.cgi?id=19027 is fixed. CORE-8516
Modified: trunk/reactos/dll/win32/riched20/CMakeLists.txt
Modified: trunk/reactos/dll/win32/riched20/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/riched20/CMakeLis... ============================================================================== --- trunk/reactos/dll/win32/riched20/CMakeLists.txt [iso-8859-1] (original) +++ trunk/reactos/dll/win32/riched20/CMakeLists.txt [iso-8859-1] Wed Sep 10 16:03:22 2014 @@ -33,6 +33,11 @@ list(APPEND SOURCE txthost.c txtsrv.c) endif()
+if(CMAKE_C_COMPILER_ID STREQUAL "Clang") + #FIXME: http://llvm.org/bugs/show_bug.cgi?id=19027 + set_property(SOURCE txthost.c txtsrv.c APPEND_STRING PROPERTY COMPILE_FLAGS " -no-integrated-as") +endif() + list(APPEND ADDITIONAL_SOURCE version.rc ${CMAKE_CURRENT_BINARY_DIR}/riched20.def)