Skip to content

Commit ca43ab5

Browse files
committed
Use dwarf exceptions on i686 as well
Now libunwind works properly in this case for dwarf on i686 mingw.
1 parent 3da8d27 commit ca43ab5

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

wrappers/clang-target-wrapper.sh

+2-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,8 @@ esac
1010
ARCH=$(echo $TARGET | sed 's/-.*//')
1111
case $ARCH in
1212
i686)
13-
# Dwarf is the default for i686, but currently there's an issue
14-
# in libunwind with unwinding clang generated dwarf opcodes on 32 bit
15-
# x86, pending resolution at https://reviews.llvm.org/D38680.
16-
ARCH_FLAGS=-fsjlj-exceptions
13+
# Dwarf is the default here.
14+
ARCH_FLAGS=
1715
;;
1816
x86_64)
1917
# Explicitly request dwarf on x86_64; SEH is the default there but

0 commit comments

Comments
 (0)