Skip to content
Snippets Groups Projects
Unverified Commit 9f69f10c authored by Guilherme Amadio's avatar Guilherme Amadio
Browse files

Drop suffix in library output directory of LLVM

The directory is hard-coded without suffix in other places, so
necessary headers for clang are not installed if the suffix is
kept.
parent 1ae2edae
Branches
Tags
No related merge requests found
...@@ -266,7 +266,7 @@ else() ...@@ -266,7 +266,7 @@ else()
# for the LLVMRES target. # for the LLVMRES target.
# FIXME: In longer term, we do not really need this and may want to adjust LLVMRES. # FIXME: In longer term, we do not really need this and may want to adjust LLVMRES.
set(LLVM_RUNTIME_OUTPUT_INTDIR ${CMAKE_CURRENT_BINARY_DIR}/llvm/src/${CMAKE_CFG_INTDIR}/bin) set(LLVM_RUNTIME_OUTPUT_INTDIR ${CMAKE_CURRENT_BINARY_DIR}/llvm/src/${CMAKE_CFG_INTDIR}/bin)
set(LLVM_LIBRARY_OUTPUT_INTDIR ${CMAKE_CURRENT_BINARY_DIR}/llvm/src/${CMAKE_CFG_INTDIR}/lib${LLVM_LIBDIR_SUFFIX}) set(LLVM_LIBRARY_OUTPUT_INTDIR ${CMAKE_CURRENT_BINARY_DIR}/llvm/src/${CMAKE_CFG_INTDIR}/lib)
if(WIN32 OR CYGWIN) if(WIN32 OR CYGWIN)
# DLL platform -- put DLLs into bin. # DLL platform -- put DLLs into bin.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment