[U-Boot] [PATCH] sandbox: disable fortification

Since we provide all our own library calls, the fortification from glibc just gets in our way (which some distros enable by default).
Signed-off-by: Mike Frysinger vapier@gentoo.org --- arch/sandbox/config.mk | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/sandbox/config.mk b/arch/sandbox/config.mk index 2ec1bb7..02ce4a4 100644 --- a/arch/sandbox/config.mk +++ b/arch/sandbox/config.mk @@ -17,5 +17,5 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, # MA 02111-1307 USA
-PLATFORM_CPPFLAGS += -DCONFIG_SANDBOX -D__SANDBOX__ +PLATFORM_CPPFLAGS += -DCONFIG_SANDBOX -D__SANDBOX__ -U_FORTIFY_SOURCE PLATFORM_LIBS += -lrt

On Sun, Feb 26, 2012 at 1:01 PM, Mike Frysinger vapier@gentoo.org wrote:
Since we provide all our own library calls, the fortification from glibc just gets in our way (which some distros enable by default).
Signed-off-by: Mike Frysinger vapier@gentoo.org
Acked-by: Simon Glass sjg@chromium.org
arch/sandbox/config.mk | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/sandbox/config.mk b/arch/sandbox/config.mk index 2ec1bb7..02ce4a4 100644 --- a/arch/sandbox/config.mk +++ b/arch/sandbox/config.mk @@ -17,5 +17,5 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, # MA 02111-1307 USA
-PLATFORM_CPPFLAGS += -DCONFIG_SANDBOX -D__SANDBOX__ +PLATFORM_CPPFLAGS += -DCONFIG_SANDBOX -D__SANDBOX__ -U_FORTIFY_SOURCE PLATFORM_LIBS += -lrt -- 1.7.8.4
U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot
participants (2)
-
Mike Frysinger
-
Simon Glass