r199076 - [CMake] Move BUG_REPORT_URL from clang to llvm.

NAKAMURA Takumi geek4civic at gmail.com
Sun Jan 12 21:25:14 PST 2014


Author: chapuni
Date: Sun Jan 12 23:25:13 2014
New Revision: 199076

URL: http://llvm.org/viewvc/llvm-project?rev=199076&view=rev
Log:
[CMake] Move BUG_REPORT_URL from clang to llvm.

It was too late to set BUG_REPORT_URL after configure_file(config.h).
BUG_REPORT_URL in config.h.cmake would be updated at 2nd run of cmake.
It caused many recompilations.

FYI, configure handles BUG_REPORT_URL in llvm side.

Modified:
    cfe/trunk/CMakeLists.txt

Modified: cfe/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/CMakeLists.txt?rev=199076&r1=199075&r2=199076&view=diff
==============================================================================
--- cfe/trunk/CMakeLists.txt (original)
+++ cfe/trunk/CMakeLists.txt Sun Jan 12 23:25:13 2014
@@ -451,8 +451,5 @@ if( CLANG_BUILT_STANDALONE AND MSVC_VERS
   endif()
 endif()
 
-set(BUG_REPORT_URL "http://llvm.org/bugs/" CACHE STRING
-  "Default URL where bug reports are to be submitted.")
-
 set(CLANG_ORDER_FILE "" CACHE FILEPATH
   "Order file to use when compiling clang in order to improve startup time.")





More information about the cfe-commits mailing list