summaryrefslogtreecommitdiffstats
path: root/bootstrap
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-05-14 13:19:12 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-05-14 13:19:12 (GMT)
commitdf7ae80a21aca856ac2f08780380177762aceaed (patch)
tree25e78f6fe6214435c7f9fe9afa7e237922d90a6c /bootstrap
parentcbef9d224df3ac6e54ecb6988c576db80505c71e (diff)
downloadCMake-df7ae80a21aca856ac2f08780380177762aceaed.zip
CMake-df7ae80a21aca856ac2f08780380177762aceaed.tar.gz
CMake-df7ae80a21aca856ac2f08780380177762aceaed.tar.bz2
ENH: Add better error reporting
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap90
1 files changed, 50 insertions, 40 deletions
diff --git a/bootstrap b/bootstrap
index a0a8567..ff5bb1a 100755
--- a/bootstrap
+++ b/bootstrap
@@ -49,39 +49,19 @@ EOF
exit 10
}
-cmake_verbose=
-cmake_prefix_dir="/usr/local"
-for a in "$@"; do
- if echo $a | grep "^--prefix="; then
- cmake_prefix_dir=`echo $a | sed "s/^--prefix=//"`
- fi
- if echo $a | grep "^--help"; then
- cmake_usage
- fi
- if echo $a | grep "^--verbose"; then
- cmake_verbose=TRUE
- fi
-done
-
-if [ -n "${cmake_verbose}" ]; then
+cmake_error()
+{
echo "---------------------------------------------"
- echo "Source directory: ${cmake_source_dir}"
- echo "Binary directory: ${cmake_binary_dir}"
- echo "Prefix directory: ${cmake_prefix_dir}"
- echo "System: ${cmake_system}"
-fi
-
-echo "---------------------------------------------"
-
-[ -d "${cmake_bootstrap_dir}" ] || mkdir "${cmake_bootstrap_dir}"
-if [ ! -d "${cmake_bootstrap_dir}" ]; then
- echo "Cannot create directory ${cmake_bootstrap_dir} to bootstrap CMake."
- exit 5
-fi
-cd "${cmake_bootstrap_dir}"
-
-rm -f "${cmake_bootstrap_dir}/cmake_bootstrap.log"
-rm -f "${cmake_bootstrap_dir}/cmConfigure.h"
+ echo "Error when bootstrapping CMake:"
+ echo "$*"
+ echo "---------------------------------------------"
+ if [ -f cmake_bootstrap.log ]; then
+ echo "Log of errors:"
+ cat cmake_bootstrap.log
+ echo "---------------------------------------------"
+ fi
+ exit 1
+}
cmake_report ()
{
@@ -160,6 +140,39 @@ cmake_try_make ()
return 0
}
+cmake_verbose=
+cmake_prefix_dir="/usr/local"
+for a in "$@"; do
+ if echo $a | grep "^--prefix="; then
+ cmake_prefix_dir=`echo $a | sed "s/^--prefix=//"`
+ fi
+ if echo $a | grep "^--help"; then
+ cmake_usage
+ fi
+ if echo $a | grep "^--verbose"; then
+ cmake_verbose=TRUE
+ fi
+done
+
+if [ -n "${cmake_verbose}" ]; then
+ echo "---------------------------------------------"
+ echo "Source directory: ${cmake_source_dir}"
+ echo "Binary directory: ${cmake_binary_dir}"
+ echo "Prefix directory: ${cmake_prefix_dir}"
+ echo "System: ${cmake_system}"
+fi
+
+echo "---------------------------------------------"
+
+[ -d "${cmake_bootstrap_dir}" ] || mkdir "${cmake_bootstrap_dir}"
+if [ ! -d "${cmake_bootstrap_dir}" ]; then
+ cmake_error "Cannot create directory ${cmake_bootstrap_dir} to bootstrap CMake."
+fi
+cd "${cmake_bootstrap_dir}"
+
+rm -f "${cmake_bootstrap_dir}/cmake_bootstrap.log"
+rm -f "${cmake_bootstrap_dir}/cmConfigure.h"
+
cmake_c_flags=${CFLAGS}
cmake_cxx_flags=${CXXFLAGS}
@@ -189,9 +202,8 @@ done
rm -f "${TMPFILE}.c"
if [ -z "${cmake_c_compiler}" ]; then
- echo "Cannot find apropriate C compiler on this system."
- echo "Please specify one using environment variable CC."
- exit 1
+ cmake_error "Cannot find apropriate C compiler on this system.
+Please specify one using environment variable CC."
fi
echo "C compiler on this system is: ${cmake_c_compiler} ${cmake_c_flags}"
@@ -222,9 +234,8 @@ rm -f "${TMPFILE}.cxx"
if [ -z "${cmake_cxx_compiler}" ]; then
- echo "Cannot find apropriate C++ compiler on this system."
- echo "Please specify one using environment variable CXX."
- exit 1
+ cmake_error "Cannot find apropriate C++ compiler on this system.
+Please specify one using environment variable CXX."
fi
echo "C++ compiler on this system is: ${cmake_cxx_compiler} ${cmake_cxx_flags}"
@@ -351,8 +362,7 @@ echo "---------------------------------------------"
${cmake_make_processor}
RES=$?
if [ "${RES}" -ne "0" ]; then
- echo "Problem while bootstrapping CMake"
- exit 8
+ cmake_error "Problem while bootstrapping CMake"
fi
cd "${cmake_binary_dir}"
"${cmake_bootstrap_dir}/cmake" "${cmake_source_dir}"