Disable RTTI on Windows.

Total size of bin\Release on disk goes from 83.6 MB to 81.8MB. (~2% saving)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120901 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Francois Pichet 2010-12-04 09:42:30 +00:00
parent c24130bade
commit a785a6b5c5

View File

@ -46,6 +46,8 @@ function(llvm_process_sources OUT_VAR)
if( NOT LLVM_REQUIRES_RTTI )
if( CMAKE_COMPILER_IS_GNUCXX )
add_definitions( -fno-rtti )
elseif( MSVC )
add_definitions( /GR- )
endif()
endif()