30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: Daniel Micay <danielmicay@gmail.com>
|
||
|
Date: Wed, 26 Dec 2018 10:20:24 -0500
|
||
|
Subject: [PATCH] switch to -fstack-protector-strong
|
||
|
|
||
|
---
|
||
|
build/config/compiler/BUILD.gn | 4 +---
|
||
|
1 file changed, 1 insertion(+), 3 deletions(-)
|
||
|
|
||
|
diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn
|
||
|
index 6d05512ae3644..77a913e864f79 100644
|
||
|
--- a/build/config/compiler/BUILD.gn
|
||
|
+++ b/build/config/compiler/BUILD.gn
|
||
|
@@ -372,14 +372,12 @@ config("compiler") {
|
||
|
cflags += [ "-fstack-protector" ]
|
||
|
}
|
||
|
} else if ((is_posix && !is_chromeos && !is_nacl) || is_fuchsia) {
|
||
|
- # TODO(phajdan.jr): Use -fstack-protector-strong when our gcc supports it.
|
||
|
- # See also https://crbug.com/533294
|
||
|
# The x86 toolchain currently has problems with stack-protector.
|
||
|
if (is_android && current_cpu == "x86") {
|
||
|
cflags += [ "-fno-stack-protector" ]
|
||
|
} else if (current_os != "aix") {
|
||
|
# Not available on aix.
|
||
|
- cflags += [ "-fstack-protector" ]
|
||
|
+ cflags += [ "-fstack-protector-strong" ]
|
||
|
}
|
||
|
}
|
||
|
}
|