Skip to content

Commit 4811c1f

Browse files
committed
wrappers: Stop explicitly requesting SEH for AArch64
It is the default exception handling model there now.
1 parent 9d8339b commit 4811c1f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

wrappers/clang-target-wrapper.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ int _tmain(int argc, TCHAR* argv[]) {
179179
} else if (!_tcscmp(arch, _T("armv7"))) {
180180
// Dwarf is the default here.
181181
} else if (!_tcscmp(arch, _T("aarch64"))) {
182-
exec_argv[arg++] = _T("-fseh-exceptions");
182+
// SEH is the default here.
183183
}
184184

185185
if (target_os && !_tcscmp(target_os, _T("mingw32uwp"))) {

wrappers/clang-target-wrapper.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ armv7)
4646
# Dwarf is the default here.
4747
;;
4848
aarch64)
49-
FLAGS="$FLAGS -fseh-exceptions"
49+
# SEH is the default here.
5050
;;
5151
esac
5252
case $TARGET_OS in

0 commit comments

Comments
 (0)