Skip to content

Commit

Permalink
[LLVM-C] Fix omission of INSTALL_WITH_TOOLCHAIN to llvm_add_library()
Browse files Browse the repository at this point in the history
Due to a misstake with r365902 that tried to simplify the install with
toolchain logic LLVM-C.dll was no longer being installed.

Patch By: Jakob Bornecrantz

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@370271 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
tstellar committed Aug 28, 2019
1 parent 5166636 commit db58724
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/llvm-shlib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,6 @@ if(MSVC)
VERBATIM )

# Finally link the target.
add_llvm_library(LLVM-C SHARED ${SOURCES} DEPENDS intrinsics_gen)
add_llvm_library(LLVM-C SHARED INSTALL_WITH_TOOLCHAIN ${SOURCES} DEPENDS intrinsics_gen)

endif()

0 comments on commit db58724

Please sign in to comment.