@@ -32,15 +32,15 @@ abort()
32
32
}
33
33
34
34
TIMESTAMP=$( date ' +%Y-%m-%d %H:%M:%S' )
35
- echo " START $TIMESTAMP "
35
+ log " START $TIMESTAMP "
36
36
37
37
# This is in the exported Swift/T source tree
38
38
DEV_BUILD=dev/build
39
39
# This is in the builder RECIPE_DIR source tree
40
40
DEV_CONDA=$( cd $RECIPE_DIR /.. ; /bin/pwd -P )
41
41
42
42
: ${ENABLE_R:= 0}
43
- echo ENABLE_R=$ENABLE_R
43
+ log ENABLE_R=$ENABLE_R
44
44
45
45
{
46
46
log " TIMESTAMP: $TIMESTAMP "
@@ -74,10 +74,10 @@ if [[ ! -d $DEV_BUILD ]]
74
74
then
75
75
# This directory disappears under certain error conditions
76
76
# The user must clean up the work directory
77
- echo " Cannot find DEV_BUILD=$DEV_BUILD under $PWD "
78
- echo " Delete this directory and the corresponding work_moved"
79
- echo $PWD
80
- echo " See build-generic.log for SRC_DIR"
77
+ log " Cannot find DEV_BUILD=$DEV_BUILD under $PWD "
78
+ log " Delete this directory and the corresponding work_moved"
79
+ log $PWD
80
+ log " See build-generic.log for SRC_DIR"
81
81
exit 1
82
82
fi
83
83
114
114
fi
115
115
export R_HOME=$( R RHOME )
116
116
117
- echo " build-generic.sh: Installing RInside into $R_HOME ..."
117
+ log " Installing RInside into $R_HOME ..."
118
118
Rscript $DEV_CONDA /install-RInside.R 2>&1 | \
119
119
tee $RECIPE_DIR /install-RInside.log
120
120
if ! grep -q " Swift-RInside-SUCCESS" $RECIPE_DIR /install-RInside.log
@@ -153,9 +153,12 @@ ${SED_I[@]} -f $SETTINGS_SED swift-t-settings.sh
153
153
{
154
154
echo
155
155
# Anaconda Autoconf 2.72 is buggy
156
- echo " Build tools:"
157
- which autoreconf aclocal autom4te m4
156
+ log " build tools:"
157
+ which m4 autoreconf aclocal autom4te mpicc
158
158
m4 --version
159
+ autoreconf --version | head -1
160
+ log " mpicc show:"
161
+ mpicc -show
159
162
echo
160
163
log " BUILD SWIFT-T START: $( date ' +%Y-%m-%d %H:%M:%S' ) "
161
164
./build-swift-t.sh -vv 2>&1
0 commit comments