diff options
author | Oscar Fuentes <ofv@wanadoo.es> | 2009-10-27 19:42:21 +0000 |
---|---|---|
committer | Oscar Fuentes <ofv@wanadoo.es> | 2009-10-27 19:42:21 +0000 |
commit | e6fc25321f6e67b6fa1b1f2367468269767c68d0 (patch) | |
tree | 09da4ff89411e13e773435497de154f7806a77b5 | |
parent | c14753b781fb02251310eed7fe8b7f00290a0261 (diff) | |
download | bcm5719-llvm-e6fc25321f6e67b6fa1b1f2367468269767c68d0.tar.gz bcm5719-llvm-e6fc25321f6e67b6fa1b1f2367468269767c68d0.zip |
CMake: Append LLVM_LIBDIR_SUFFIX to library destination.
Based on a patch by Ingmar Vanhassel.
llvm-svn: 85276
-rw-r--r-- | clang/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/CMakeLists.txt b/clang/CMakeLists.txt index 0cd52d0d946..56212f1639f 100644 --- a/clang/CMakeLists.txt +++ b/clang/CMakeLists.txt @@ -65,7 +65,7 @@ macro(add_clang_library name) set_target_properties(${name} PROPERTIES COMPILE_FLAGS ${cflag}) endif(MSVC) install(TARGETS ${name} - LIBRARY DESTINATION lib + LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX} ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX}) endmacro(add_clang_library) |