Lines Matching +full:cortex +full:- +full:m3
6 Though -nostdlib is passed in $(CFLAGS), -fno-pie must also be passed to
11 - http://autobuild.buildroot.org/results/418a40b995e91bc66e692dfbc4b0521db3fa5fbb
13 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
14 ---
15 Makefile | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
18 diff --git a/Makefile b/Makefile
20 --- a/Makefile
22 @@ -17,7 +17,7 @@ CFLAGS =-march=armv7-m -mcpu=cortex-m3 -mthumb -nostdlib -Wall -Wundef \
23 -Werror-implicit-function-declaration -Wstrict-prototypes \
24 -Wdeclaration-after-statement -fno-delete-null-pointer-checks \
25 -Wempty-body -fno-strict-overflow -fno-stack-protector \
26 - -g -I$(INCLUDES) -O2
27 + -fno-pie -g -I$(INCLUDES) -O2
28 LDFLAGS =-nostartfiles -fno-exceptions -Tfirmware.ld
30 EXECUTABLE=am335x-pm-firmware.elf
31 --