summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Liew <dan@su-root.co.uk>2014-07-28 13:39:56 +0000
committerDan Liew <dan@su-root.co.uk>2014-07-28 13:39:56 +0000
commit86aeb8ca4a84b486c383d3081d34f3e2d8034d73 (patch)
treea1bd0cdcf2c5abd584ce10bf1ffce1f07b618177
parentd7c60873d11a68c81af663a3add38cae19c6c3e5 (diff)
downloadllvm-86aeb8ca4a84b486c383d3081d34f3e2d8034d73.tar.gz
Merging r214078:
------------------------------------------------------------------------ r214078 | delcypher | 2014-07-28 14:36:50 +0100 (Mon, 28 Jul 2014) | 6 lines Emit a warning if llvm_map_components_to_libraries() is used noting that its use is deprecated in favour of llvm_map_components_to_libnames() Although message(DEPRECATION "msg") would probably be a better fit this does nothing if CMAKE_ERROR_DEPRECATED and CMAKE_WARNING_DEPRECATED are both off, which is the default. ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_35@214080 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--cmake/modules/LLVM-Config.cmake4
1 files changed, 3 insertions, 1 deletions
diff --git a/cmake/modules/LLVM-Config.cmake b/cmake/modules/LLVM-Config.cmake
index faba6dfd597b..8ae1d23e4eea 100644
--- a/cmake/modules/LLVM-Config.cmake
+++ b/cmake/modules/LLVM-Config.cmake
@@ -51,12 +51,14 @@ function(explicit_llvm_config executable)
endfunction(explicit_llvm_config)
-# This is a variant intended for the final user:
+# This is Deprecated
function(llvm_map_components_to_libraries OUT_VAR)
+ message(AUTHOR_WARNING "Using llvm_map_components_to_libraries() is deprecated. Use llvm_map_components_to_libnames() instead")
explicit_map_components_to_libraries(result ${ARGN})
set( ${OUT_VAR} ${result} ${sys_result} PARENT_SCOPE )
endfunction(llvm_map_components_to_libraries)
+# This is a variant intended for the final user:
# Map LINK_COMPONENTS to actual libnames.
function(llvm_map_components_to_libnames out_libs)
set( link_components ${ARGN} )