From 9c14cbfc7ff49c2ceb9b65c548ddaced607f0785 Mon Sep 17 00:00:00 2001 From: Ehsan Akhgari Date: Thu, 28 Jan 2016 16:57:18 -0500 Subject: [PATCH] Don't clobber safeseh for msvcc.sh -clang-cl in 32-bit mode The commit fb25cd0 went a bit too far and removed safeseh when -clang-cl was passed, but that's only needed in x86-64 which is already handled by the -m64 flag. I discovered this when building Firefox x86 with clang-cl. --- msvcc.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/msvcc.sh b/msvcc.sh index 65fbfef..1621e5f 100755 --- a/msvcc.sh +++ b/msvcc.sh @@ -70,7 +70,6 @@ do ;; -clang-cl) cl="clang-cl" - safeseh= shift 1 ;; -O0) -- 2.7.4