Skip to content

Commit

Permalink
Fix TestRegisterVariables for linux arm/arm64 gcc ver > 5
Browse files Browse the repository at this point in the history
We are going to turn off buffer overflow introduced by gcc by turning off
FORTIFY_SOURCE.

Differential revision: https://reviews.llvm.org/D28666

llvm-svn: 291949
  • Loading branch information
omjavaid committed Jan 13, 2017
1 parent afedf82 commit 56e70dd
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -2,6 +2,6 @@ LEVEL = ../../../make

C_SOURCES := test.c

CFLAGS_EXTRAS += -O1
CFLAGS_EXTRAS += -O1 -D_FORTIFY_SOURCE=0

include $(LEVEL)/Makefile.rules

0 comments on commit 56e70dd

Please sign in to comment.