This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Commit 7d4c36b
1 parent cced88f commit 7d4c36b Copy full SHA for 7d4c36b
File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 10
10
import threading
11
11
import time
12
12
13
- log_file = open (sys .argv [1 ], 'w' )
13
+ log_file = open (sys .argv [1 ], 'w+ ' )
14
14
15
15
# Suppressions for warning / info messages
16
16
#suppressions = [x.strip() for x in open(sys.argv[2], 'r').readlines() if not x.startswith('#')]
Original file line number Diff line number Diff line change @@ -29,6 +29,8 @@ for BOARD in $BOARDS; do
29
29
fi
30
30
(
31
31
for TARGET in $TARGETS ; do
32
+ LOGFILE=$PWD /build/output.$( date +%Y%m%d-%H%M%S) .log
33
+
32
34
echo " "
33
35
echo " "
34
36
echo " "
Original file line number Diff line number Diff line change @@ -32,8 +32,7 @@ FILTER ?= tee -a
32
32
MSCDIR ?= third_party/misoc
33
33
HDMI2USBDIR = $(realpath .)
34
34
PYTHON = python3
35
- DATE = $(shell date +% Y% m% d-% H% M% S)
36
- LOGFILE = $(PWD ) /build/output.$(DATE ) .log
35
+ LOGFILE ?= $(PWD ) /build/output.$(shell date +% Y% m% d-% H% M% S) .log
37
36
38
37
# We use the special PIPESTATUS which is bash only below.
39
38
SHELL := /bin/bash
You can’t perform that action at this time.
0 commit comments