Skip to content

Commit

Permalink
Merge pull request #1 from google/disable-build-id
Browse files Browse the repository at this point in the history
Fix build with gcc-9 arm-linux-gnueabi toolchain
  • Loading branch information
hskinnemoen committed Jun 25, 2020
2 parents eb9a1c8 + 888a61b commit 0c37a43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ OBJCOPY = $(CROSS_COMPILE)objcopy
CFLAGS = -Os -g -mcpu=cortex-a9
ASFLAGS = $(CFLAGS) -Wa,-mcpu=cortex-a9+mp
LDSCRIPT = bootrom.ld
LDFLAGS = -nostdlib -T $(LDSCRIPT)
LDFLAGS = -Wl,--build-id=none -static -nostdlib -T $(LDSCRIPT)

OBJS := start.o image.o

Expand Down

0 comments on commit 0c37a43

Please sign in to comment.