Skip to content

Commit 43c2a46

Browse files
author
Xiangfu Liu
committedSep 2, 2011
output build data time and git rev when start
1 parent 39f76b3 commit 43c2a46

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed
 

‎src/Makefile

+6
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ LDFLAGS+= -T linker.ld -N
1010
LDFLAGS+= -L$(MMDIR)/software/libbase -L$(MMDIR)/software/libmath -L$(MMDIR)/software/libnet -L$(MMDIR)/software/libhal
1111
LIBS = -lbase -lmath -lnet -lhal
1212

13+
CFLAGS+= -DVERSION='"$(GIT_VERSION)$(GIT_STATUS)"'
14+
15+
GIT_VERSION:=$(shell git rev-parse HEAD | cut -c 1-7)
16+
GIT_STATUS:=$(shell [ -z "`git status -s -uno`" ] || echo +)
17+
18+
1319
all: boot.bin
1420

1521
%.bin: %.elf

‎src/main.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,8 @@ int main()
201201
irq_setmask(0);
202202
irq_enable(1);
203203
uart_init();
204-
printf("*** Milkymist One automated tests starting...\n\n");
204+
printf("*** Milkymist One automated tests starting...\n");
205+
printf("*** Built: %s at %s (rev %s)\n\n", __DATE__, __TIME__, VERSION);
205206
while(1) {
206207
printf("*** Select a test category below, or hit ENTER to run all tests:\n");
207208
i = 0;

0 commit comments

Comments
 (0)
Please sign in to comment.