Skip to content

Commit

Permalink
Lost the MAKE_out file when we updated simulation makefiles #412
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
alexlin0 committed Apr 18, 2017
1 parent 98c7029 commit b2ebe15
Show file tree
Hide file tree
Showing 8 changed files with 552 additions and 281 deletions.
4 changes: 3 additions & 1 deletion autoconf/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dnl To generate a new top level configure script from this autoconf directory
dnl 1. aclocal
dnl 2. autoconf -o ../configure

AC_INIT([Trick],[16+])
AC_INIT([Trick],[17+])
AC_LANG(C++)

AC_CONFIG_AUX_DIR([autoconf])
Expand Down Expand Up @@ -198,6 +198,8 @@ dnl Save the full path of the compiler
CC=`which $CC`
CXX=`which $CXX`

AC_PATH_PROG(TEE, tee, notee)
AS_IF([test "$ac_cv_path_TEE" = "notee"],AC_MSG_ERROR([could not find tee]),[])
AC_PATH_PROG(LD, ld, nold)
AS_IF([test "$ac_cv_path_LD" = "nold"],AC_MSG_ERROR([could not find ld]),[])
AC_PROG_LEX
Expand Down
3 changes: 3 additions & 0 deletions bin/trick-CP
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ ifndef TRICK_VERBOSE_BUILD
PRINT_MAKEFILE_SWIG = $(info $(call COLOR,Writing) Makefile_swig)
endif
MAKE_OUT := build/MAKE_out
REMOVE_MAKE_OUT := $(shell rm -f $(MAKE_OUT))
all:
$(info Trick Build Process Complete)
Expand Down
Loading

0 comments on commit b2ebe15

Please sign in to comment.