projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
33aea07
)
kasan: Fix required compiler version
author
Marco Elver
<elver@google.com>
Tue, 23 Jun 2020 11:24:48 +0000
(13:24 +0200)
committer
Peter Zijlstra
<peterz@infradead.org>
Thu, 25 Jun 2020 11:45:39 +0000
(13:45 +0200)
The first working GCC version to satisfy
CC_HAS_WORKING_NOSANITIZE_ADDRESS is GCC 8.3.0.
Link:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89124
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Marco Elver <elver@google.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link:
https://lkml.kernel.org/r/20200623112448.GA208112@elver.google.com
lib/Kconfig.kasan
patch
|
blob
|
history
diff --git
a/lib/Kconfig.kasan
b/lib/Kconfig.kasan
index af0dd09f91e9d64e3b7a60fa429e58ed5207fdb9..34b84bcbd3d913b02c284e45d0b5bb8417821452 100644
(file)
--- a/
lib/Kconfig.kasan
+++ b/
lib/Kconfig.kasan
@@
-16,7
+16,7
@@
config CC_HAS_KASAN_SW_TAGS
def_bool $(cc-option, -fsanitize=kernel-hwaddress)
config CC_HAS_WORKING_NOSANITIZE_ADDRESS
- def_bool !CC_IS_GCC || GCC_VERSION >= 80
0
00
+ def_bool !CC_IS_GCC || GCC_VERSION >= 80
3
00
config KASAN
bool "KASAN: runtime memory debugger"