diff options
| author | 2017-06-06 14:39:33 +0000 | |
|---|---|---|
| committer | 2017-06-06 14:39:33 +0000 | |
| commit | 444d0c5b59e79171e8f2c3e69e740bce47672da8 (patch) | |
| tree | a053e8b13615ee770f0727961a44c6a509b3cbfa | |
| parent | fae2e3d64b2eb9532c1f20e51c7d188b7991ef7d (diff) | |
| parent | 3e00363204f489e1deae6bb02f6d1598eefca197 (diff) | |
Merge "ART: Increase stack overflow guard for x86 sanitization"
| -rw-r--r-- | build/art.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/art.go b/build/art.go index 9de2b05793..f52c63525a 100644 --- a/build/art.go +++ b/build/art.go @@ -87,7 +87,7 @@ func globalFlags(ctx android.BaseContext) ([]string, []string) { "-DART_STACK_OVERFLOW_GAP_arm64=8192", "-DART_STACK_OVERFLOW_GAP_mips=16384", "-DART_STACK_OVERFLOW_GAP_mips64=16384", - "-DART_STACK_OVERFLOW_GAP_x86=12288", + "-DART_STACK_OVERFLOW_GAP_x86=16384", "-DART_STACK_OVERFLOW_GAP_x86_64=20480") } else { cflags = append(cflags, |