forked from OSchip/llvm-project
build: explicitly set the linker language for unwind
The unwinder should not depend on libc++. In fact, we do not end up with a link against libc++ as we do not have a dependency on libc++ at runtime. This ensures that we link with `clang` rather than `clang++`.
This commit is contained in:
parent
a5c8ec4baa
commit
6db7a5cd7c
|
@ -127,6 +127,8 @@ if (LIBUNWIND_ENABLE_SHARED)
|
|||
"${LIBUNWIND_COMPILE_FLAGS}"
|
||||
LINK_FLAGS
|
||||
"${LIBUNWIND_LINK_FLAGS}"
|
||||
LINKER_LANGUAGE
|
||||
C
|
||||
OUTPUT_NAME
|
||||
"unwind"
|
||||
VERSION
|
||||
|
|
Loading…
Reference in New Issue