- Jul 04, 2014
-
-
NAKAMURA Takumi authored
For now, its user is configure_lit_site_cfg(). llvm-svn: 212314
-
NAKAMURA Takumi authored
llvm-svn: 212313
-
- Jun 27, 2014
-
-
Reid Kleckner authored
By default, CMake will set NDEBUG in Rel* builds and leave it off in debug builds, so we shouldn't need to do anything ourselves. Before this change, it was possible to a Debug build without assertions (aka Debug-Asserts in the autoconf system) by configuring with -DLLVM_ENABLE_ASSERTIONS=OFF, but this configuration isn't very useful. You can still get the same effect by explicitly adding -DNDEBUG to CFLAGS. Differential Revision: http://reviews.llvm.org/D4257 Patch by Janusz Sobczak! llvm-svn: 211919
-
- May 21, 2014
-
-
Greg Fitzgerald authored
llvm-svn: 209308
-
- May 19, 2014
-
-
Reid Kleckner authored
This silences ~7 warnings on .c files in the LLVM build. llvm-svn: 209163
-
- May 06, 2014
-
-
Evgeniy Stepanov authored
GCC version of -Wcomment is not compatible with ascii art graph diagrams. Reverts r207629. llvm-svn: 208073
-
- Apr 29, 2014
-
-
Dan Liew authored
option. llvm-svn: 207450
-
- Apr 18, 2014
-
-
Reid Kleckner authored
The option LLVM_ENABLE_SPHINX option enables the "docs-llvm-html", "docs-llvm-man" targets but does not build them by default. The following CMake options have been added that control what targets are made available SPHINX_OUTPUT_HTML SPHINX_OUTPUT_MAN If LLVM_BUILD_DOCS is enabled then the enabled docs-llvm-* targets will be built by default and if ``make install`` is run then docs-llvm-html and docs-llvm-man will be installed (tested on Linux only). The add_sphinx_target function is in its own file so it can be included by other projects that use Sphinx for their documentation. Patch by Daniel Liew <daniel.liew@imperial.ac.uk>! llvm-svn: 206655
-
- Apr 17, 2014
-
-
Eric Christopher authored
Patch by Brad King llvm-svn: 206426
-
Eric Christopher authored
Patch by Brad King llvm-svn: 206425
-
- Apr 10, 2014
-
-
NAKAMURA Takumi authored
- LLVMSupport.dll - libLLVMSupport.dll.a llvm-svn: 205969
-
- Mar 25, 2014
-
-
Yaron Keren authored
but keep the MSVC11 (Visual C++ 2012) support. llvm-svn: 204706
-
Yaron Keren authored
it has no value for us. llvm-svn: 204704
-
- Mar 16, 2014
-
-
NAKAMURA Takumi authored
It doesn't make sense even with --export-all-symbols. llvm-svn: 204017
-
- Mar 13, 2014
-
-
Alexey Samsonov authored
add_definitions shouldn't really be used for compiler flags, and the variable LLVM_DEFINITIONS is not appropriately used at the moment, e.g. it's not exported to LLVMConfig.cmake llvm-svn: 203792
-
Ted Kremenek authored
[CMake] Enable a bunch of Xcode build settings that correspond to warnings that are for the most part enabled by default either by Clang or -Wall. I personally build with these settings enabled all the time, and it is clearer to see the actual warning flags (e.g., -Wuninitialized) get passed by Xcode rather than seeing -Wno-uninitialized followed by -Wall (the latter canceling out the former) and figuring out what is going on. Xcode will ignore build settings it doesn't understand, so this will work on possibly older versions of Xcode that don't support all of these settings. llvm-svn: 203760
-
- Mar 12, 2014
-
-
Rafael Espindola authored
Without this common features like off_t and strdup are missing. This should bring back those bots. Configure bits by Meador Inge. llvm-svn: 203701
-
- Mar 04, 2014
-
-
NAKAMURA Takumi authored
llvm-svn: 202862
-
- Mar 01, 2014
-
-
Chandler Carruth authored
LLVM_ENABLE_CXX1Y (default *off*). =D C++98 is dead. Long live C++11. I don't exactly recommend using C++1y just yet though... llvm-svn: 202567
-
- Feb 28, 2014
-
-
Rafael Espindola authored
llvm-svn: 202510
-
NAKAMURA Takumi authored
llvm-svn: 202454
-
- Feb 26, 2014
-
-
NAKAMURA Takumi authored
FIXME: It may be PRIVATE since SO knows its dependent libs. llvm-svn: 202261
-
NAKAMURA Takumi authored
[CMake] Move LLVMBUILD_LIB_DEPS stuff from add_llvm_library (and LLVm-Config) to llvm_add_library to centralize target_link_libraries. llvm-svn: 202260
-
NAKAMURA Takumi authored
[CMake] Use target_link_libraries(INTERFACE|PRIVATE) on CMake-2.8.12 to increase opportunity for parallel build. target_link_libraries(INTERFACE) doesn't bring inter-target dependencies in add_library, although final targets have dependencies to whole dependent libraries. It makes most libraries can be built in parallel. target_link_libraries(PRIVATE) is used to shaared library. Each dependent library is linked to the target.so, and its user will not see its grandchildren. For example, - libclang.so has sufficient libclang*.a(s). - c-index-test requires just only libclang.so. FIXME: lld is tweaked minimally. Adding INTERFACE in each library would be better thing. llvm-svn: 202241
-
- Feb 23, 2014
-
-
NAKAMURA Takumi authored
llvm-svn: 201972
-
NAKAMURA Takumi authored
The LLVMSupport library implementation consolidates all dependencies on system libraries. Move the logic gathering system libraries out of 'cmake/modules/LLVM-Config.cmake' and into 'lib/Support/CMakeLists.txt'. Use the target_link_libraries() command there to tell CMake about the link dependencies of the LLVMSupport implementation. CMake will automatically propagate this to all targets that link LLVMSupport directly or indirectly. We still need to build knowledge of system library dependencies into 'llvm-config'. Store the list of libraries needed in a property on LLVMSupport and teach 'tools/llvm-config/CMakeLists.txt' to retrieve it from there. Drop all calls to 'link_system_libs' and 'get_system_libs' from our CMake code. Replace their implementations with a warning that explains the calls are no longer necessary. Also drop from 'LLVMConfig.cmake' the HAVE_* and related variables that were published there only to allow 'get_system_libs' to run outside our build process. Contributed by Brad King. llvm-svn: 201969
-
- Feb 22, 2014
-
-
NAKAMURA Takumi authored
llvm-svn: 201932
-
- Feb 21, 2014
-
-
NAKAMURA Takumi authored
http://www.cmake.org/Bug/view.php?id=14747 llvm-svn: 201855
-
NAKAMURA Takumi authored
[CMake] Introduce "llvm_add_library(SHARED STATIC)" to build both shared lib and static lib simulataneously. llvm_add_library(foo SHARED STATIC DEPENDS <dependent targets...> LINK_LIBS <required libraries...> ) It generates both foo (foo.so) and foo_static(foo.a) and both of them depend on DEPENDS and LINK_LIBS. Then, also obj.foo is generated. obj.foo depends on DEPENDS, but doesn't depend on LINK_LIBS. llvm-svn: 201854
-
NAKAMURA Takumi authored
The module still needs to collect the list of all available libraries in order to satisfy the 'all' component. Provide this in the package configuration file, 'LLVMConfig.cmake', as a LLVM_AVAILABLE_LIBS variable. (A variable is scoped better than a global property.) Since this won't be set for our own build, fall back to looking up the LLVM_LIBS property to get the value when it is not set. Contributed by Brad King. llvm-svn: 201853
-
NAKAMURA Takumi authored
LLVM library names are now available as logical CMake targets both to our own build and to application CMake code. Replace use of 'list(FIND)' with a simple 'if(TARGET)' to determine whether a library is available. Contributed by Brad King. llvm-svn: 201852
-
- Feb 20, 2014
-
-
NAKAMURA Takumi authored
add_public_tablegen_target is used somewhere. llvm-svn: 201787
-
- Feb 16, 2014
-
-
NAKAMURA Takumi authored
llvm-svn: 201489
-
NAKAMURA Takumi authored
FIXME: gtest might be included if external project could refer to the build tree. llvm-svn: 201488
-
- Feb 13, 2014
-
-
NAKAMURA Takumi authored
On unsupported platforms, llvm_add_library(MODULE) doesn't create any targets. Caller may be responsible to check and add extra target properties. llvm-svn: 201320
-
NAKAMURA Takumi authored
llvm-svn: 201318
-
NAKAMURA Takumi authored
[CMake] llvm_add_library(MODULE) may use CMAKE_MODULE_LINKER_FLAGS instead of target property LINK_FLAGS. I mis-dropped Darwin's link flags (in clang side) since r201073. llvm-svn: 201317
-
NAKAMURA Takumi authored
[CMake] LLVM_PLUGIN_EXT: Use CMAKE_SHARED_LIBRARY_SUFFIX rather than CMAKE_SHARED_MODULE_SUFFIX in llvm tree. FIXME: llvm/test may be aware of LLVM_PLUGIN_EXT, like as clang/test does. FIXME: CMAKE_*_SUFFIX may be set in HandleLLVMOptions if those variables could be writable, rather than to set one as target properties. llvm-svn: 201316
-
NAKAMURA Takumi authored
[CMake] llvm_add_library: Add handling of the parameter ADDITIONAL_HEADERS to pass through to process_source. I was insightless then about unknown optional parameters. (Consider that LINK_LIBS foo bar ADDITIONAL_HEADERS qux quux) Suggested by Michael Kruse. Thanks! llvm-svn: 201283
-
- Feb 12, 2014
-
-
NAKAMURA Takumi authored
This macro depends on several variables to be set in the calling context. Check them and report an error if they are not set. Without this, custom commands may be silently specified that will fail at build time. Patch by Brad King. llvm-svn: 201229
-