Compare commits
2 Commits
a43b77cb62
...
15826682ac
Author | SHA1 | Date | |
---|---|---|---|
15826682ac | |||
609322eb36 |
8
.drone.yml
Normal file
8
.drone.yml
Normal file
@ -0,0 +1,8 @@
|
||||
kind: pipeline
|
||||
name: build
|
||||
|
||||
steps:
|
||||
- name: build
|
||||
image: stronglytyped/arm-none-eabi-gcc
|
||||
commands:
|
||||
- make
|
@ -1,7 +1,8 @@
|
||||
CC=arm-none-eabi-gcc
|
||||
OBJCOPY=arm-none-eabi-objcopy
|
||||
|
||||
LDS=test.lds
|
||||
SRC=src/test.c
|
||||
LDS=src/test.lds
|
||||
|
||||
OPTI=-O0
|
||||
CFLAGS= $(OPTI) -g -gdwarf-2 -mthumb -fno-builtin -mcpu=cortex-m4 -Wall -std=c99 -ffunction-sections -fdata-sections -mabi=aapcs -fno-unroll-loops -ffast-math -ftree-vectorize -fverbose-asm
|
||||
@ -9,10 +10,10 @@ LDFLAGS=-nostartfiles -Wl,-gc-sections -T$(LDS) -L. --specs=nano.specs
|
||||
|
||||
all: test.bin
|
||||
|
||||
test.o: test.c
|
||||
$(CC) $(CFLAGS) -c test.o test.c
|
||||
test.o: $(SRC)
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
test.elf: test.o test.lds
|
||||
test.elf: test.o $(LDS)
|
||||
$(CC) $(LDFLAGS) test.o -o test.elf
|
||||
|
||||
test.bin: test.elf
|
Loading…
Reference in New Issue
Block a user