Skip to content

Commit b2ebe15

Browse files
committed
Lost the MAKE_out file when we updated simulation makefiles #412
Added echos to all compile commands to append to MAKE_out. tee'd the output of the compile command so that it will go to both the MAKE_out file and the screen.
1 parent 98c7029 commit b2ebe15

File tree

8 files changed

+552
-281
lines changed

8 files changed

+552
-281
lines changed

autoconf/configure.ac

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dnl To generate a new top level configure script from this autoconf directory
22
dnl 1. aclocal
33
dnl 2. autoconf -o ../configure
44

5-
AC_INIT([Trick],[16+])
5+
AC_INIT([Trick],[17+])
66
AC_LANG(C++)
77

88
AC_CONFIG_AUX_DIR([autoconf])
@@ -198,6 +198,8 @@ dnl Save the full path of the compiler
198198
CC=`which $CC`
199199
CXX=`which $CXX`
200200

201+
AC_PATH_PROG(TEE, tee, notee)
202+
AS_IF([test "$ac_cv_path_TEE" = "notee"],AC_MSG_ERROR([could not find tee]),[])
201203
AC_PATH_PROG(LD, ld, nold)
202204
AS_IF([test "$ac_cv_path_LD" = "nold"],AC_MSG_ERROR([could not find ld]),[])
203205
AC_PROG_LEX

bin/trick-CP

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ ifndef TRICK_VERBOSE_BUILD
6666
PRINT_MAKEFILE_SWIG = $(info $(call COLOR,Writing) Makefile_swig)
6767
endif
6868
69+
MAKE_OUT := build/MAKE_out
70+
REMOVE_MAKE_OUT := $(shell rm -f $(MAKE_OUT))
71+
6972
all:
7073
$(info Trick Build Process Complete)
7174

0 commit comments

Comments
 (0)