[llvm-commits] [llvm] r141662 - /llvm/trunk/cmake/modules/HandleLLVMOptions.cmake
NAKAMURA Takumi
geek4civic at gmail.com
Tue Oct 11 05:51:36 PDT 2011
Author: chapuni
Date: Tue Oct 11 07:51:36 2011
New Revision: 141662
URL: http://llvm.org/viewvc/llvm-project?rev=141662&view=rev
Log:
cmake/modules/HandleLLVMOptions.cmake: Reorder __STDC_CONSTANT_MACROS and __STDC_LIMIT_MACROS.
Modified:
llvm/trunk/cmake/modules/HandleLLVMOptions.cmake
Modified: llvm/trunk/cmake/modules/HandleLLVMOptions.cmake
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/cmake/modules/HandleLLVMOptions.cmake?rev=141662&r1=141661&r2=141662&view=diff
==============================================================================
--- llvm/trunk/cmake/modules/HandleLLVMOptions.cmake (original)
+++ llvm/trunk/cmake/modules/HandleLLVMOptions.cmake Tue Oct 11 07:51:36 2011
@@ -186,7 +186,7 @@
endif (LLVM_ENABLE_WERROR)
endif( MSVC )
-add_llvm_definitions( -D__STDC_LIMIT_MACROS )
add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
+add_llvm_definitions( -D__STDC_LIMIT_MACROS )
option(LLVM_INCLUDE_TESTS "Generate build targets for the LLVM unit tests." ON)
More information about the llvm-commits
mailing list