From 09ba4c870d9269918fb50cd849ee3c7ca84e8588 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Mon, 14 Dec 2015 14:46:38 -0800 Subject: [PATCH] Turn on stack protector for mips64. Go straight to -fstack-protector-strong, since it works to boot the emulator. Change-Id: I2b65a0ab4426856ae05f66c1e294951e45bd72b6 --- core/combo/TARGET_linux-mips64.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/core/combo/TARGET_linux-mips64.mk b/core/combo/TARGET_linux-mips64.mk index 9e4eaa6aa..3e1f61a0f 100644 --- a/core/combo/TARGET_linux-mips64.mk +++ b/core/combo/TARGET_linux-mips64.mk @@ -89,6 +89,7 @@ TARGET_GLOBAL_CFLAGS += \ -ffunction-sections \ -fdata-sections \ -funwind-tables \ + -fstack-protector-strong \ -Wa,--noexecstack \ -Werror=format-security \ -D_FORTIFY_SOURCE=2 \