Commit 0ca66409 authored by Martin Storsjö's avatar Martin Storsjö

configure: Don't add -fPIC to asflags when targeting windows

On X86 windows, asflags weren't actually ever used for anything,
since assembling used x86asflags instead, and that flags list
had -DPIC already.

This fixes building shared libraries with clang for arm/aarch64
windows. (This wasn't an issue when in msvc mode before, since
we don't try to enable pic at all there, since the msvc armasm
assembler fails on our pic constructs there.)
Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent f951837c
......@@ -4219,9 +4219,9 @@ enable_weak_pic() {
;;
*)
add_cflags -fPIC
add_asflags -fPIC
;;
esac
add_asflags -fPIC
}
enabled pic && enable_weak_pic
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment