2003-03-27 23:29:38 +03:00
|
|
|
#!/bin/sh
|
2009-09-28 19:43:28 +04:00
|
|
|
#=============================================================================
|
|
|
|
# CMake - Cross Platform Makefile Generator
|
2011-12-16 18:43:39 +04:00
|
|
|
# Copyright 2000-2011 Kitware, Inc., Insight Software Consortium
|
2003-06-21 19:57:13 +04:00
|
|
|
#
|
2009-09-28 19:43:28 +04:00
|
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
# see accompanying file Copyright.txt for details.
|
2003-06-21 19:57:13 +04:00
|
|
|
#
|
2009-09-28 19:43:28 +04:00
|
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the License for more information.
|
|
|
|
#=============================================================================
|
2003-06-21 19:57:13 +04:00
|
|
|
|
2011-12-16 19:56:47 +04:00
|
|
|
die() {
|
|
|
|
echo "$@" 1>&2 ; exit 1
|
|
|
|
}
|
|
|
|
|
2006-08-26 05:21:10 +04:00
|
|
|
# Version number extraction function.
|
|
|
|
cmake_version_component()
|
|
|
|
{
|
2012-04-20 19:20:48 +04:00
|
|
|
cat "${cmake_source_dir}/Source/CMakeVersion.cmake" | sed -n "
|
2012-08-13 21:47:32 +04:00
|
|
|
/^set(CMake_VERSION_${1}/ {s/set(CMake_VERSION_${1} *\([0-9]*\))/\1/;p;}
|
2006-08-26 05:21:10 +04:00
|
|
|
"
|
|
|
|
}
|
|
|
|
|
2013-09-26 22:13:38 +04:00
|
|
|
# Install destination extraction function.
|
|
|
|
cmake_install_dest_default()
|
|
|
|
{
|
|
|
|
cat "${cmake_source_dir}/Source/CMakeInstallDestinations.cmake" | sed -n '
|
|
|
|
/^ *set(CMAKE_'"${1}"'_DIR_DEFAULT.*) # '"${2}"'$/ {
|
2013-10-25 16:55:50 +04:00
|
|
|
s/^ *set(CMAKE_'"${1}"'_DIR_DEFAULT *"\([^"]*\)").*$/\1/
|
|
|
|
s/${CMake_VERSION_MAJOR}/'"${cmake_version_major}"'/
|
|
|
|
s/${CMake_VERSION_MINOR}/'"${cmake_version_minor}"'/
|
|
|
|
s/${CMake_VERSION_PATCH}/'"${cmake_version_patch}"'/
|
|
|
|
p
|
|
|
|
q
|
|
|
|
}
|
2013-09-26 22:13:38 +04:00
|
|
|
'
|
|
|
|
}
|
|
|
|
|
2011-01-10 17:32:09 +03:00
|
|
|
cmake_toupper()
|
|
|
|
{
|
|
|
|
echo "$1" | sed 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'
|
|
|
|
}
|
|
|
|
|
2006-02-01 02:50:16 +03:00
|
|
|
# Detect system and directory information.
|
|
|
|
cmake_system=`uname`
|
2009-09-25 18:48:24 +04:00
|
|
|
cmake_source_dir=`cd "\`dirname \"$0\"\`";pwd`
|
2006-02-01 02:50:16 +03:00
|
|
|
cmake_binary_dir=`pwd`
|
2010-04-23 17:44:23 +04:00
|
|
|
|
|
|
|
# Load version information.
|
2007-11-15 05:17:53 +03:00
|
|
|
cmake_version_major="`cmake_version_component MAJOR`"
|
|
|
|
cmake_version_minor="`cmake_version_component MINOR`"
|
2010-04-23 17:44:23 +04:00
|
|
|
cmake_version_patch="`cmake_version_component PATCH`"
|
|
|
|
cmake_version="${cmake_version_major}.${cmake_version_minor}.${cmake_version_patch}"
|
2013-09-26 22:25:48 +04:00
|
|
|
cmake_version_rc="`cmake_version_component RC`"
|
|
|
|
if [ "$cmake_version_rc" != "" ]; then
|
|
|
|
cmake_version="${cmake_version}-rc${cmake_version_rc}"
|
|
|
|
fi
|
2010-04-23 17:44:23 +04:00
|
|
|
|
2013-11-13 00:56:36 +04:00
|
|
|
cmake_copyright="`grep '^Copyright .* Kitware' "${cmake_source_dir}/Copyright.txt"`"
|
|
|
|
|
2016-05-27 17:03:43 +03:00
|
|
|
cmake_bin_dir_keyword="OTHER"
|
2013-09-26 22:13:38 +04:00
|
|
|
cmake_data_dir_keyword="OTHER"
|
|
|
|
cmake_doc_dir_keyword="OTHER"
|
|
|
|
cmake_man_dir_keyword="OTHER"
|
2015-12-21 18:02:11 +03:00
|
|
|
cmake_xdgdata_dir_keyword="OTHER"
|
2016-05-27 17:03:43 +03:00
|
|
|
cmake_bin_dir=""
|
2013-09-26 22:13:38 +04:00
|
|
|
cmake_data_dir=""
|
|
|
|
cmake_doc_dir=""
|
|
|
|
cmake_man_dir=""
|
2015-12-21 18:02:11 +03:00
|
|
|
cmake_xdgdata_dir=""
|
2006-02-01 02:50:16 +03:00
|
|
|
cmake_init_file=""
|
2006-10-19 23:17:58 +04:00
|
|
|
cmake_bootstrap_system_libs=""
|
2008-02-13 22:47:03 +03:00
|
|
|
cmake_bootstrap_qt_gui=""
|
|
|
|
cmake_bootstrap_qt_qmake=""
|
2013-09-18 00:08:05 +04:00
|
|
|
cmake_sphinx_man=""
|
|
|
|
cmake_sphinx_html=""
|
2015-02-08 01:23:28 +03:00
|
|
|
cmake_sphinx_qthelp=""
|
2013-09-18 00:08:05 +04:00
|
|
|
cmake_sphinx_build=""
|
2015-04-30 16:30:14 +03:00
|
|
|
cmake_sphinx_flags=""
|
2006-02-01 02:50:16 +03:00
|
|
|
|
2009-05-27 19:33:37 +04:00
|
|
|
# Determine whether this is a Cygwin environment.
|
|
|
|
if echo "${cmake_system}" | grep CYGWIN >/dev/null 2>&1; then
|
|
|
|
cmake_system_cygwin=true
|
2013-09-26 22:13:38 +04:00
|
|
|
cmake_doc_dir_keyword="CYGWIN"
|
|
|
|
cmake_man_dir_keyword="CYGWIN"
|
2009-05-27 19:33:37 +04:00
|
|
|
else
|
|
|
|
cmake_system_cygwin=false
|
|
|
|
fi
|
|
|
|
|
2006-02-01 02:50:16 +03:00
|
|
|
# Determine whether this is a MinGW environment.
|
2016-07-20 16:15:36 +03:00
|
|
|
if echo "${cmake_system}" | grep 'MINGW\|MSYS' >/dev/null 2>&1; then
|
2006-02-01 02:50:16 +03:00
|
|
|
cmake_system_mingw=true
|
|
|
|
else
|
|
|
|
cmake_system_mingw=false
|
|
|
|
fi
|
|
|
|
|
2006-04-13 19:00:52 +04:00
|
|
|
# Determine whether this is OS X
|
|
|
|
if echo "${cmake_system}" | grep Darwin >/dev/null 2>&1; then
|
|
|
|
cmake_system_darwin=true
|
|
|
|
else
|
|
|
|
cmake_system_darwin=false
|
|
|
|
fi
|
|
|
|
|
2012-07-07 21:57:40 +04:00
|
|
|
# Determine whether this is BeOS
|
2006-12-05 01:26:41 +03:00
|
|
|
if echo "${cmake_system}" | grep BeOS >/dev/null 2>&1; then
|
|
|
|
cmake_system_beos=true
|
2013-09-26 22:13:38 +04:00
|
|
|
cmake_doc_dir_keyword="HAIKU"
|
|
|
|
cmake_man_dir_keyword="HAIKU"
|
2006-12-05 01:26:41 +03:00
|
|
|
else
|
|
|
|
cmake_system_beos=false
|
|
|
|
fi
|
|
|
|
|
2012-07-07 21:57:40 +04:00
|
|
|
# Determine whether this is Haiku
|
2008-09-16 01:53:28 +04:00
|
|
|
if echo "${cmake_system}" | grep Haiku >/dev/null 2>&1; then
|
|
|
|
cmake_system_haiku=true
|
2013-09-26 22:13:38 +04:00
|
|
|
cmake_doc_dir_keyword="HAIKU"
|
|
|
|
cmake_man_dir_keyword="HAIKU"
|
2008-09-16 01:53:28 +04:00
|
|
|
else
|
|
|
|
cmake_system_haiku=false
|
|
|
|
fi
|
|
|
|
|
2009-06-10 21:04:25 +04:00
|
|
|
# Determine whether this is OpenVMS
|
|
|
|
if echo "${cmake_system}" | grep OpenVMS >/dev/null 2>&1; then
|
|
|
|
cmake_system_openvms=true
|
|
|
|
else
|
|
|
|
cmake_system_openvms=false
|
|
|
|
fi
|
|
|
|
|
2014-11-04 19:01:56 +03:00
|
|
|
# Determine whether this is HP-UX
|
|
|
|
if echo "${cmake_system}" | grep HP-UX >/dev/null 2>&1; then
|
|
|
|
cmake_system_hpux=true
|
|
|
|
else
|
|
|
|
cmake_system_hpux=false
|
|
|
|
fi
|
|
|
|
|
2012-10-29 02:23:29 +04:00
|
|
|
# Determine whether this is Linux
|
|
|
|
if echo "${cmake_system}" | grep Linux >/dev/null 2>&1; then
|
|
|
|
cmake_system_linux=true
|
2014-11-04 19:01:56 +03:00
|
|
|
else
|
|
|
|
cmake_system_linux=false
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Determine whether this is a PA-RISC machine
|
|
|
|
# This only works for Linux or HP-UX, not other PA-RISC OSs (BSD maybe?). Also
|
|
|
|
# may falsely detect parisc on HP-UX m68k
|
|
|
|
cmake_machine_parisc=false
|
|
|
|
if ${cmake_system_linux}; then
|
2012-10-29 02:23:29 +04:00
|
|
|
if uname -m | grep parisc >/dev/null 2>&1; then
|
|
|
|
cmake_machine_parisc=true
|
|
|
|
fi
|
2014-11-04 19:01:56 +03:00
|
|
|
elif ${cmake_system_hpux}; then
|
2014-12-18 17:56:52 +03:00
|
|
|
if uname -m | grep ia64 >/dev/null 2>&1; then : ; else
|
2014-11-04 19:01:56 +03:00
|
|
|
cmake_machine_parisc=true
|
|
|
|
fi
|
2012-10-29 02:23:29 +04:00
|
|
|
fi
|
|
|
|
|
2006-02-01 02:50:16 +03:00
|
|
|
# Choose the generator to use for bootstrapping.
|
|
|
|
if ${cmake_system_mingw}; then
|
|
|
|
# Bootstrapping from an MSYS prompt.
|
|
|
|
cmake_bootstrap_generator="MSYS Makefiles"
|
|
|
|
else
|
|
|
|
# Bootstrapping from a standard UNIX prompt.
|
|
|
|
cmake_bootstrap_generator="Unix Makefiles"
|
|
|
|
fi
|
|
|
|
|
2009-06-10 21:04:25 +04:00
|
|
|
# Choose tools and extensions for this platform.
|
|
|
|
if ${cmake_system_openvms}; then
|
|
|
|
_tmp="_tmp"
|
|
|
|
_cmk="_cmk"
|
|
|
|
_diff=`which diff`
|
|
|
|
else
|
|
|
|
_tmp=".tmp"
|
|
|
|
_cmk=".cmk"
|
|
|
|
_diff="diff"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Construct bootstrap directory name.
|
|
|
|
cmake_bootstrap_dir="${cmake_binary_dir}/Bootstrap${_cmk}"
|
|
|
|
|
2006-02-17 04:13:54 +03:00
|
|
|
# Helper function to fix windows paths.
|
2012-02-29 23:29:16 +04:00
|
|
|
case "${cmake_system}" in
|
|
|
|
*MINGW*)
|
|
|
|
cmake_fix_slashes()
|
|
|
|
{
|
|
|
|
cmd //c echo "$(echo "$1" | sed 's/\\/\//g')" | sed 's/^"//;s/" *$//'
|
|
|
|
}
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
cmake_fix_slashes()
|
|
|
|
{
|
|
|
|
echo "$1" | sed 's/\\/\//g'
|
|
|
|
}
|
|
|
|
;;
|
|
|
|
esac
|
2006-02-17 04:13:54 +03:00
|
|
|
|
|
|
|
# Choose the default install prefix.
|
|
|
|
if ${cmake_system_mingw}; then
|
|
|
|
if [ "x${PROGRAMFILES}" != "x" ]; then
|
|
|
|
cmake_default_prefix=`cmake_fix_slashes "${PROGRAMFILES}/CMake"`
|
|
|
|
elif [ "x${ProgramFiles}" != "x" ]; then
|
|
|
|
cmake_default_prefix=`cmake_fix_slashes "${ProgramFiles}/CMake"`
|
|
|
|
elif [ "x${SYSTEMDRIVE}" != "x" ]; then
|
|
|
|
cmake_default_prefix=`cmake_fix_slashes "${SYSTEMDRIVE}/Program Files/CMake"`
|
|
|
|
elif [ "x${SystemDrive}" != "x" ]; then
|
|
|
|
cmake_default_prefix=`cmake_fix_slashes "${SystemDrive}/Program Files/CMake"`
|
|
|
|
else
|
|
|
|
cmake_default_prefix="c:/Program Files/CMake"
|
|
|
|
fi
|
2009-09-30 16:31:53 +04:00
|
|
|
elif ${cmake_system_haiku}; then
|
2013-01-08 00:09:18 +04:00
|
|
|
cmake_default_prefix=`finddir B_COMMON_DIRECTORY`
|
2006-02-17 04:13:54 +03:00
|
|
|
else
|
|
|
|
cmake_default_prefix="/usr/local"
|
|
|
|
fi
|
|
|
|
|
2013-09-26 22:13:38 +04:00
|
|
|
# Lookup default install destinations.
|
2016-05-27 17:03:43 +03:00
|
|
|
cmake_bin_dir_default="`cmake_install_dest_default BIN ${cmake_bin_dir_keyword}`"
|
2013-09-26 22:13:38 +04:00
|
|
|
cmake_data_dir_default="`cmake_install_dest_default DATA ${cmake_data_dir_keyword}`"
|
|
|
|
cmake_doc_dir_default="`cmake_install_dest_default DOC ${cmake_doc_dir_keyword}`"
|
|
|
|
cmake_man_dir_default="`cmake_install_dest_default MAN ${cmake_man_dir_keyword}`"
|
2015-12-21 18:02:11 +03:00
|
|
|
cmake_xdgdata_dir_default="`cmake_install_dest_default XDGDATA ${cmake_xdgdata_dir_keyword}`"
|
2013-09-26 22:13:38 +04:00
|
|
|
|
2003-03-27 23:29:38 +03:00
|
|
|
CMAKE_KNOWN_C_COMPILERS="cc gcc xlc icc tcc"
|
2004-10-05 19:29:16 +04:00
|
|
|
CMAKE_KNOWN_CXX_COMPILERS="aCC xlC CC g++ c++ icc como "
|
2004-10-19 22:51:25 +04:00
|
|
|
CMAKE_KNOWN_MAKE_PROCESSORS="gmake make"
|
2003-03-27 23:29:38 +03:00
|
|
|
|
2004-10-18 19:34:02 +04:00
|
|
|
CMAKE_PROBLEMATIC_FILES="\
|
|
|
|
CMakeCache.txt \
|
|
|
|
CMakeSystem.cmake \
|
|
|
|
CMakeCCompiler.cmake \
|
|
|
|
CMakeCXXCompiler.cmake \
|
2012-08-24 16:48:59 +04:00
|
|
|
*/CMakeSystem.cmake \
|
|
|
|
*/CMakeCCompiler.cmake \
|
|
|
|
*/CMakeCXXCompiler.cmake \
|
2004-10-18 19:34:02 +04:00
|
|
|
Source/cmConfigure.h \
|
|
|
|
Source/CTest/Curl/config.h \
|
|
|
|
Utilities/cmexpat/expatConfig.h \
|
|
|
|
Utilities/cmexpat/expatDllConfig.h \
|
|
|
|
"
|
|
|
|
|
2006-03-22 17:58:11 +03:00
|
|
|
CMAKE_UNUSED_SOURCES="\
|
|
|
|
cmGlobalXCodeGenerator \
|
|
|
|
cmLocalXCodeGenerator \
|
|
|
|
cmXCodeObject \
|
|
|
|
cmXCode21Object \
|
|
|
|
cmSourceGroup \
|
|
|
|
"
|
|
|
|
|
2003-12-08 22:11:58 +03:00
|
|
|
CMAKE_CXX_SOURCES="\
|
2003-03-27 23:29:38 +03:00
|
|
|
cmake \
|
|
|
|
cmakemain \
|
2013-10-04 01:28:00 +04:00
|
|
|
cmcmd \
|
2005-06-13 19:00:29 +04:00
|
|
|
cmCommandArgumentLexer \
|
|
|
|
cmCommandArgumentParser \
|
|
|
|
cmCommandArgumentParserHelper \
|
2015-07-07 23:37:56 +03:00
|
|
|
cmCommonTargetGenerator \
|
2014-05-15 21:12:40 +04:00
|
|
|
cmCPackPropertiesGenerator \
|
2009-07-22 22:22:45 +04:00
|
|
|
cmDefinitions \
|
2005-03-01 20:26:25 +03:00
|
|
|
cmDepends \
|
|
|
|
cmDependsC \
|
2008-03-08 00:26:29 +03:00
|
|
|
cmDocumentationFormatter \
|
2008-03-01 23:20:35 +03:00
|
|
|
cmPolicies \
|
2006-12-07 18:48:11 +03:00
|
|
|
cmProperty \
|
|
|
|
cmPropertyMap \
|
|
|
|
cmPropertyDefinition \
|
|
|
|
cmPropertyDefinitionMap \
|
2003-03-27 23:29:38 +03:00
|
|
|
cmMakefile \
|
2016-01-29 00:10:27 +03:00
|
|
|
cmMessenger \
|
2015-09-16 23:08:22 +03:00
|
|
|
cmExportBuildFileGenerator \
|
2008-02-16 21:05:03 +03:00
|
|
|
cmExportFileGenerator \
|
|
|
|
cmExportInstallFileGenerator \
|
2013-02-07 20:36:29 +04:00
|
|
|
cmExportTryCompileFileGenerator \
|
2012-02-27 10:09:40 +04:00
|
|
|
cmExportSet \
|
2012-03-01 02:02:56 +04:00
|
|
|
cmExportSetMap \
|
2015-04-12 21:09:31 +03:00
|
|
|
cmExternalMakefileProjectGenerator \
|
|
|
|
cmGeneratorExpressionEvaluationFile \
|
2004-11-03 15:23:18 +03:00
|
|
|
cmGeneratedFileStream \
|
2012-03-07 20:44:48 +04:00
|
|
|
cmGeneratorTarget \
|
2015-03-05 01:53:22 +03:00
|
|
|
cmGeneratorExpressionContext \
|
2012-09-18 15:42:23 +04:00
|
|
|
cmGeneratorExpressionDAGChecker \
|
2012-09-11 21:53:38 +04:00
|
|
|
cmGeneratorExpressionEvaluator \
|
|
|
|
cmGeneratorExpressionLexer \
|
2015-02-23 01:32:11 +03:00
|
|
|
cmGeneratorExpressionNode \
|
2012-09-11 21:53:38 +04:00
|
|
|
cmGeneratorExpressionParser \
|
2009-08-11 17:54:56 +04:00
|
|
|
cmGeneratorExpression \
|
2015-07-07 23:37:56 +03:00
|
|
|
cmGlobalCommonGenerator \
|
2003-03-27 23:29:38 +03:00
|
|
|
cmGlobalGenerator \
|
2015-04-12 21:09:31 +03:00
|
|
|
cmInstallDirectoryGenerator \
|
2015-07-07 23:37:56 +03:00
|
|
|
cmLocalCommonGenerator \
|
2003-03-27 23:29:38 +03:00
|
|
|
cmLocalGenerator \
|
2014-05-15 21:12:40 +04:00
|
|
|
cmInstalledFile \
|
2006-02-19 23:25:27 +03:00
|
|
|
cmInstallGenerator \
|
2008-02-16 21:05:03 +03:00
|
|
|
cmInstallExportGenerator \
|
2006-02-20 02:47:13 +03:00
|
|
|
cmInstallFilesGenerator \
|
2006-02-19 23:25:27 +03:00
|
|
|
cmInstallScriptGenerator \
|
|
|
|
cmInstallTargetGenerator \
|
2009-03-16 17:39:56 +03:00
|
|
|
cmScriptGenerator \
|
2003-03-27 23:29:38 +03:00
|
|
|
cmSourceFile \
|
2007-06-18 19:59:23 +04:00
|
|
|
cmSourceFileLocation \
|
2015-04-04 22:20:12 +03:00
|
|
|
cmState \
|
2003-03-27 23:29:38 +03:00
|
|
|
cmSystemTools \
|
2009-03-16 17:40:46 +03:00
|
|
|
cmTestGenerator \
|
2006-11-30 01:45:55 +03:00
|
|
|
cmVersion \
|
2005-10-12 21:36:07 +04:00
|
|
|
cmFileTimeComparison \
|
2005-05-12 19:53:42 +04:00
|
|
|
cmGlobalUnixMakefileGenerator3 \
|
|
|
|
cmLocalUnixMakefileGenerator3 \
|
2006-02-15 18:34:11 +03:00
|
|
|
cmMakefileExecutableTargetGenerator \
|
|
|
|
cmMakefileLibraryTargetGenerator \
|
|
|
|
cmMakefileTargetGenerator \
|
|
|
|
cmMakefileUtilityTargetGenerator \
|
2015-04-12 14:15:51 +03:00
|
|
|
cmOutputConverter \
|
2012-07-07 21:54:16 +04:00
|
|
|
cmOSXBundleGenerator \
|
2011-11-29 16:56:28 +04:00
|
|
|
cmNewLineStyle \
|
2013-06-14 16:35:52 +04:00
|
|
|
cmBootstrapCommands1 \
|
|
|
|
cmBootstrapCommands2 \
|
2014-02-10 00:55:17 +04:00
|
|
|
cmCommandsForBootstrap \
|
2003-03-27 23:29:38 +03:00
|
|
|
cmTarget \
|
2005-04-24 23:59:51 +04:00
|
|
|
cmTest \
|
2003-03-27 23:29:38 +03:00
|
|
|
cmCustomCommand \
|
2010-12-08 00:23:38 +03:00
|
|
|
cmCustomCommandGenerator \
|
2003-03-27 23:29:38 +03:00
|
|
|
cmCacheManager \
|
|
|
|
cmListFileCache \
|
2008-01-27 21:42:49 +03:00
|
|
|
cmComputeLinkDepends \
|
2008-01-22 17:13:04 +03:00
|
|
|
cmComputeLinkInformation \
|
2008-02-21 19:41:11 +03:00
|
|
|
cmOrderDirectories \
|
2008-02-06 07:10:41 +03:00
|
|
|
cmComputeTargetDepends \
|
2008-02-08 00:14:05 +03:00
|
|
|
cmComputeComponentGraph \
|
2008-02-13 22:47:03 +03:00
|
|
|
cmExprLexer \
|
|
|
|
cmExprParser \
|
|
|
|
cmExprParserHelper \
|
2006-03-22 17:58:11 +03:00
|
|
|
"
|
2003-03-27 23:29:38 +03:00
|
|
|
|
2006-02-01 02:50:16 +03:00
|
|
|
if ${cmake_system_mingw}; then
|
|
|
|
CMAKE_CXX_SOURCES="${CMAKE_CXX_SOURCES}\
|
|
|
|
cmGlobalMSYSMakefileGenerator \
|
2013-10-19 00:22:45 +04:00
|
|
|
cmGlobalMinGWMakefileGenerator"
|
2006-02-01 02:50:16 +03:00
|
|
|
fi
|
|
|
|
|
2003-12-08 22:11:58 +03:00
|
|
|
CMAKE_C_SOURCES="\
|
|
|
|
cmListFileLexer \
|
|
|
|
"
|
|
|
|
|
2006-02-01 02:50:16 +03:00
|
|
|
if ${cmake_system_mingw}; then
|
|
|
|
KWSYS_C_SOURCES="\
|
2013-11-25 20:30:52 +04:00
|
|
|
EncodingC \
|
2006-09-21 21:47:54 +04:00
|
|
|
ProcessWin32 \
|
2008-01-17 18:35:32 +03:00
|
|
|
String \
|
2015-02-06 00:29:59 +03:00
|
|
|
System \
|
|
|
|
Terminal"
|
2006-02-01 02:50:16 +03:00
|
|
|
else
|
|
|
|
KWSYS_C_SOURCES="\
|
2013-11-25 20:30:52 +04:00
|
|
|
EncodingC \
|
2006-09-21 21:47:54 +04:00
|
|
|
ProcessUNIX \
|
2008-01-17 18:35:32 +03:00
|
|
|
String \
|
2015-02-06 00:29:59 +03:00
|
|
|
System \
|
|
|
|
Terminal"
|
2006-02-01 02:50:16 +03:00
|
|
|
fi
|
2003-07-08 01:52:53 +04:00
|
|
|
|
|
|
|
KWSYS_CXX_SOURCES="\
|
2003-06-23 16:58:58 +04:00
|
|
|
Directory \
|
2013-11-25 20:30:52 +04:00
|
|
|
EncodingCXX \
|
2014-03-07 09:55:07 +04:00
|
|
|
FStream \
|
2005-10-18 22:08:55 +04:00
|
|
|
Glob \
|
2003-06-23 16:58:58 +04:00
|
|
|
RegularExpression \
|
|
|
|
SystemTools"
|
|
|
|
|
|
|
|
KWSYS_FILES="\
|
|
|
|
Directory.hxx \
|
2013-11-25 20:30:52 +04:00
|
|
|
Encoding.h \
|
|
|
|
Encoding.hxx \
|
|
|
|
FStream.hxx \
|
2005-10-18 22:08:55 +04:00
|
|
|
Glob.hxx \
|
2003-06-23 16:58:58 +04:00
|
|
|
Process.h \
|
|
|
|
RegularExpression.hxx \
|
2008-01-17 18:35:32 +03:00
|
|
|
String.h \
|
2006-02-07 18:11:40 +03:00
|
|
|
String.hxx \
|
2006-09-21 21:47:54 +04:00
|
|
|
System.h \
|
2015-02-06 00:29:59 +03:00
|
|
|
SystemTools.hxx \
|
|
|
|
Terminal.h"
|
2003-06-23 16:58:58 +04:00
|
|
|
|
2003-05-15 17:35:16 +04:00
|
|
|
# Display CMake bootstrap usage
|
2003-03-27 23:29:38 +03:00
|
|
|
cmake_usage()
|
|
|
|
{
|
2009-06-10 21:04:25 +04:00
|
|
|
echo '
|
2011-12-16 20:29:26 +04:00
|
|
|
Usage: '"$0"' [<options>...] [-- <cmake-options>...]
|
2003-03-27 23:29:38 +03:00
|
|
|
Options: [defaults in brackets after descriptions]
|
|
|
|
Configuration:
|
|
|
|
--help print this message
|
2003-05-15 17:35:16 +04:00
|
|
|
--version only print version information
|
2003-03-27 23:29:38 +03:00
|
|
|
--verbose display more information
|
2003-05-15 17:35:16 +04:00
|
|
|
--parallel=n bootstrap cmake in parallel, where n is
|
|
|
|
number of nodes [1]
|
2011-01-17 16:57:38 +03:00
|
|
|
--enable-ccache Enable ccache when building cmake
|
2011-01-10 17:38:42 +03:00
|
|
|
--init=FILE load FILE as script to populate cache
|
2011-01-10 17:32:09 +03:00
|
|
|
--system-libs use all system-installed third-party libraries
|
2006-10-19 23:17:58 +04:00
|
|
|
(for use only by package maintainers)
|
2011-01-10 17:32:09 +03:00
|
|
|
--no-system-libs use all cmake-provided third-party libraries
|
2006-10-19 23:17:58 +04:00
|
|
|
(default)
|
2011-01-10 17:32:09 +03:00
|
|
|
--system-curl use system-installed curl library
|
|
|
|
--no-system-curl use cmake-provided curl library (default)
|
|
|
|
--system-expat use system-installed expat library
|
|
|
|
--no-system-expat use cmake-provided expat library (default)
|
2015-02-20 16:28:03 +03:00
|
|
|
--system-jsoncpp use system-installed jsoncpp library
|
|
|
|
--no-system-jsoncpp use cmake-provided jsoncpp library (default)
|
2011-01-10 17:32:09 +03:00
|
|
|
--system-zlib use system-installed zlib library
|
|
|
|
--no-system-zlib use cmake-provided zlib library (default)
|
|
|
|
--system-bzip2 use system-installed bzip2 library
|
|
|
|
--no-system-bzip2 use cmake-provided bzip2 library (default)
|
2016-01-13 22:27:02 +03:00
|
|
|
--system-liblzma use system-installed liblzma library
|
|
|
|
--no-system-liblzma use cmake-provided liblzma library (default)
|
2011-01-10 17:32:09 +03:00
|
|
|
--system-libarchive use system-installed libarchive library
|
|
|
|
--no-system-libarchive use cmake-provided libarchive library (default)
|
|
|
|
|
2008-02-13 22:47:03 +03:00
|
|
|
--qt-gui build the Qt-based GUI (requires Qt >= 4.2)
|
|
|
|
--no-qt-gui do not build the Qt-based GUI (default)
|
|
|
|
--qt-qmake=<qmake> use <qmake> as the qmake executable to find Qt
|
2003-05-15 17:35:16 +04:00
|
|
|
|
2013-09-18 00:08:05 +04:00
|
|
|
--sphinx-man build man pages with Sphinx
|
|
|
|
--sphinx-html build html help with Sphinx
|
2015-02-08 01:23:28 +03:00
|
|
|
--sphinx-qthelp build qch help with Sphinx
|
2013-09-18 00:08:05 +04:00
|
|
|
--sphinx-build=<sb> use <sb> as the sphinx-build executable
|
2015-04-30 16:30:14 +03:00
|
|
|
--sphinx-flags=<flags> pass <flags> to sphinx-build executable
|
2013-09-18 00:08:05 +04:00
|
|
|
|
2003-03-27 23:29:38 +03:00
|
|
|
Directory and file names:
|
2003-07-22 00:38:53 +04:00
|
|
|
--prefix=PREFIX install files in tree rooted at PREFIX
|
2013-08-26 19:50:08 +04:00
|
|
|
['"${cmake_default_prefix}"']
|
2016-05-27 17:03:43 +03:00
|
|
|
--bindir=DIR install binaries in PREFIX/DIR
|
|
|
|
['"${cmake_bin_dir_default}"']
|
2003-07-22 00:38:53 +04:00
|
|
|
--datadir=DIR install data files in PREFIX/DIR
|
2013-09-26 22:13:38 +04:00
|
|
|
['"${cmake_data_dir_default}"']
|
2003-07-22 00:38:53 +04:00
|
|
|
--docdir=DIR install documentation files in PREFIX/DIR
|
2013-09-26 22:13:38 +04:00
|
|
|
['"${cmake_doc_dir_default}"']
|
2003-07-22 00:38:53 +04:00
|
|
|
--mandir=DIR install man pages files in PREFIX/DIR/manN
|
2013-09-26 22:13:38 +04:00
|
|
|
['"${cmake_man_dir_default}"']
|
2015-12-21 18:02:11 +03:00
|
|
|
--xdgdatadir=DIR install XDG specific files in PREFIX/DIR
|
|
|
|
['"${cmake_xdgdata_dir_default}"']
|
2009-06-10 21:04:25 +04:00
|
|
|
'
|
2003-03-27 23:29:38 +03:00
|
|
|
exit 10
|
|
|
|
}
|
|
|
|
|
2003-05-15 17:35:16 +04:00
|
|
|
# Display CMake bootstrap usage
|
2008-01-24 01:43:08 +03:00
|
|
|
cmake_version_display()
|
2003-05-15 17:35:16 +04:00
|
|
|
{
|
2013-11-13 00:56:36 +04:00
|
|
|
echo "CMake ${cmake_version}, ${cmake_copyright}"
|
2003-05-15 17:35:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
# Display CMake bootstrap error, display the log file and exit
|
2003-05-14 17:19:12 +04:00
|
|
|
cmake_error()
|
|
|
|
{
|
2003-12-23 19:03:38 +03:00
|
|
|
res=$1
|
|
|
|
shift 1
|
2003-03-27 23:29:38 +03:00
|
|
|
echo "---------------------------------------------"
|
2012-07-07 21:57:40 +04:00
|
|
|
echo "Error when bootstrapping CMake:"
|
2003-05-14 17:19:12 +04:00
|
|
|
echo "$*"
|
|
|
|
echo "---------------------------------------------"
|
|
|
|
if [ -f cmake_bootstrap.log ]; then
|
2003-12-23 19:03:38 +03:00
|
|
|
echo "Log of errors: `pwd`/cmake_bootstrap.log"
|
|
|
|
#cat cmake_bootstrap.log
|
2003-05-14 17:19:12 +04:00
|
|
|
echo "---------------------------------------------"
|
|
|
|
fi
|
2003-12-23 19:03:38 +03:00
|
|
|
exit ${res}
|
2003-05-14 17:19:12 +04:00
|
|
|
}
|
2003-03-27 23:29:38 +03:00
|
|
|
|
2015-12-18 17:57:55 +03:00
|
|
|
cmake_generate_file ()
|
|
|
|
{
|
|
|
|
OUTFILE="$1"
|
|
|
|
CONTENT="$2"
|
|
|
|
echo "$CONTENT" > "$OUTFILE.tmp"
|
|
|
|
if "${_diff}" "$OUTFILE.tmp" "$OUTFILE" > /dev/null 2> /dev/null ; then
|
|
|
|
rm -f "$OUTFILE.tmp"
|
|
|
|
else
|
|
|
|
mv -f "$OUTFILE.tmp" "$OUTFILE"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2003-06-21 19:57:13 +04:00
|
|
|
# Replace KWSYS_NAMESPACE with cmsys
|
|
|
|
cmake_replace_string ()
|
|
|
|
{
|
|
|
|
INFILE="$1"
|
|
|
|
OUTFILE="$2"
|
|
|
|
SEARCHFOR="$3"
|
|
|
|
REPLACEWITH="$4"
|
2009-06-10 21:04:25 +04:00
|
|
|
if [ -f "${INFILE}" ] || ${cmake_system_openvms}; then
|
2012-07-07 21:57:40 +04:00
|
|
|
cat "${INFILE}" |
|
2009-06-10 21:04:25 +04:00
|
|
|
sed "s/\@${SEARCHFOR}\@/${REPLACEWITH}/g" > "${OUTFILE}${_tmp}"
|
|
|
|
if [ -f "${OUTFILE}${_tmp}" ]; then
|
|
|
|
if "${_diff}" "${OUTFILE}" "${OUTFILE}${_tmp}" > /dev/null 2> /dev/null ; then
|
2003-06-21 19:57:13 +04:00
|
|
|
#echo "Files are the same"
|
2009-06-10 21:04:25 +04:00
|
|
|
rm -f "${OUTFILE}${_tmp}"
|
2003-06-21 19:57:13 +04:00
|
|
|
else
|
2009-06-10 21:04:25 +04:00
|
|
|
mv -f "${OUTFILE}${_tmp}" "${OUTFILE}"
|
2003-06-21 19:57:13 +04:00
|
|
|
fi
|
|
|
|
fi
|
2003-06-23 16:58:58 +04:00
|
|
|
else
|
2003-12-23 19:03:38 +03:00
|
|
|
cmake_error 1 "Cannot find file ${INFILE}"
|
2003-06-21 19:57:13 +04:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2003-12-23 19:03:38 +03:00
|
|
|
cmake_kwsys_config_replace_string ()
|
|
|
|
{
|
|
|
|
INFILE="$1"
|
|
|
|
OUTFILE="$2"
|
|
|
|
shift 2
|
|
|
|
APPEND="$*"
|
2009-06-10 21:04:25 +04:00
|
|
|
if [ -f "${INFILE}" ] || ${cmake_system_openvms}; then
|
|
|
|
echo "${APPEND}" > "${OUTFILE}${_tmp}"
|
2012-07-07 21:57:40 +04:00
|
|
|
cat "${INFILE}" |
|
2003-12-23 19:03:38 +03:00
|
|
|
sed "/./ {s/\@KWSYS_NAMESPACE\@/cmsys/g;
|
|
|
|
s/@KWSYS_BUILD_SHARED@/${KWSYS_BUILD_SHARED}/g;
|
2006-08-26 04:52:37 +04:00
|
|
|
s/@KWSYS_LFS_AVAILABLE@/${KWSYS_LFS_AVAILABLE}/g;
|
|
|
|
s/@KWSYS_LFS_REQUESTED@/${KWSYS_LFS_REQUESTED}/g;
|
2003-12-23 19:03:38 +03:00
|
|
|
s/@KWSYS_NAME_IS_KWSYS@/${KWSYS_NAME_IS_KWSYS}/g;
|
2013-11-25 20:30:52 +04:00
|
|
|
s/@KWSYS_STL_HAS_WSTRING@/${KWSYS_STL_HAS_WSTRING}/g;
|
2016-07-17 03:22:10 +03:00
|
|
|
s/@KWSYS_CXX_HAS_EXT_STDIO_FILEBUF_H@/${KWSYS_CXX_HAS_EXT_STDIO_FILEBUF_H}/g;
|
2015-10-08 20:27:07 +03:00
|
|
|
}" >> "${OUTFILE}${_tmp}"
|
2009-06-10 21:04:25 +04:00
|
|
|
if [ -f "${OUTFILE}${_tmp}" ]; then
|
|
|
|
if "${_diff}" "${OUTFILE}" "${OUTFILE}${_tmp}" > /dev/null 2> /dev/null ; then
|
2003-12-23 19:03:38 +03:00
|
|
|
#echo "Files are the same"
|
2009-06-10 21:04:25 +04:00
|
|
|
rm -f "${OUTFILE}${_tmp}"
|
2003-12-23 19:03:38 +03:00
|
|
|
else
|
2009-06-10 21:04:25 +04:00
|
|
|
mv -f "${OUTFILE}${_tmp}" "${OUTFILE}"
|
2003-12-23 19:03:38 +03:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
cmake_error 2 "Cannot find file ${INFILE}"
|
|
|
|
fi
|
|
|
|
}
|
2003-05-15 17:35:16 +04:00
|
|
|
# Write string into a file
|
2003-03-27 23:29:38 +03:00
|
|
|
cmake_report ()
|
|
|
|
{
|
|
|
|
FILE=$1
|
|
|
|
shift
|
|
|
|
echo "$*" >> ${FILE}
|
|
|
|
}
|
|
|
|
|
2003-05-15 17:35:16 +04:00
|
|
|
# Escape spaces in strings
|
2003-03-27 23:29:38 +03:00
|
|
|
cmake_escape ()
|
|
|
|
{
|
|
|
|
echo $1 | sed "s/ /\\\\ /g"
|
|
|
|
}
|
|
|
|
|
2012-05-08 17:43:19 +04:00
|
|
|
# Strip prefix from argument
|
|
|
|
cmake_arg ()
|
|
|
|
{
|
|
|
|
echo "$1" | sed "s/^${2-[^=]*=}//"
|
|
|
|
}
|
|
|
|
|
2003-05-15 17:35:16 +04:00
|
|
|
# Write message to the log
|
2003-03-27 23:29:38 +03:00
|
|
|
cmake_log ()
|
|
|
|
{
|
|
|
|
echo "$*" >> cmake_bootstrap.log
|
|
|
|
}
|
|
|
|
|
2003-05-15 17:35:16 +04:00
|
|
|
# Return temp file
|
2003-03-27 23:29:38 +03:00
|
|
|
cmake_tmp_file ()
|
|
|
|
{
|
2009-06-10 21:04:25 +04:00
|
|
|
echo "cmake_bootstrap_$$_test"
|
2003-03-27 23:29:38 +03:00
|
|
|
}
|
|
|
|
|
2003-05-15 17:35:16 +04:00
|
|
|
# Run a compiler test. First argument is compiler, second one are compiler
|
|
|
|
# flags, third one is test source file to be compiled
|
2003-03-27 23:29:38 +03:00
|
|
|
cmake_try_run ()
|
|
|
|
{
|
|
|
|
COMPILER=$1
|
|
|
|
FLAGS=$2
|
|
|
|
TESTFILE=$3
|
|
|
|
if [ ! -f "${TESTFILE}" ]; then
|
|
|
|
echo "Test file ${TESTFILE} missing. Please verify your CMake source tree."
|
|
|
|
exit 4
|
|
|
|
fi
|
|
|
|
TMPFILE=`cmake_tmp_file`
|
|
|
|
echo "Try: ${COMPILER}"
|
2003-06-30 17:56:33 +04:00
|
|
|
echo "Line: ${COMPILER} ${FLAGS} ${TESTFILE} -o ${TMPFILE}"
|
|
|
|
echo "---------- file -----------------------"
|
2005-04-13 22:13:35 +04:00
|
|
|
cat "${TESTFILE}"
|
2003-06-30 17:56:33 +04:00
|
|
|
echo "------------------------------------------"
|
2003-03-27 23:29:38 +03:00
|
|
|
"${COMPILER}" ${FLAGS} "${TESTFILE}" -o "${TMPFILE}"
|
|
|
|
RES=$?
|
|
|
|
if [ "${RES}" -ne "0" ]; then
|
2003-12-23 19:03:38 +03:00
|
|
|
echo "Test failed to compile"
|
|
|
|
return 1
|
2003-03-27 23:29:38 +03:00
|
|
|
fi
|
|
|
|
if [ ! -f "${TMPFILE}" ] && [ ! -f "${TMPFILE}.exe" ]; then
|
2003-12-23 19:03:38 +03:00
|
|
|
echo "Test failed to produce executable"
|
2003-03-27 23:29:38 +03:00
|
|
|
return 2
|
|
|
|
fi
|
|
|
|
./${TMPFILE}
|
|
|
|
RES=$?
|
|
|
|
rm -f "${TMPFILE}"
|
|
|
|
if [ "${RES}" -ne "0" ]; then
|
2003-12-23 19:03:38 +03:00
|
|
|
echo "Test produced non-zero return code"
|
2003-03-27 23:29:38 +03:00
|
|
|
return 3
|
|
|
|
fi
|
2015-10-06 04:42:19 +03:00
|
|
|
echo "Test succeeded"
|
2003-03-27 23:29:38 +03:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2003-05-15 17:35:16 +04:00
|
|
|
# Run a make test. First argument is the make interpreter.
|
2003-03-27 23:29:38 +03:00
|
|
|
cmake_try_make ()
|
|
|
|
{
|
2003-08-22 17:52:05 +04:00
|
|
|
MAKE_PROC="$1"
|
|
|
|
MAKE_FLAGS="$2"
|
2003-03-27 23:29:38 +03:00
|
|
|
echo "Try: ${MAKE_PROC}"
|
2003-08-22 17:52:05 +04:00
|
|
|
"${MAKE_PROC}" ${MAKE_FLAGS}
|
2003-03-27 23:29:38 +03:00
|
|
|
RES=$?
|
|
|
|
if [ "${RES}" -ne "0" ]; then
|
2003-08-22 17:52:05 +04:00
|
|
|
echo "${MAKE_PROC} does not work"
|
|
|
|
return 1
|
2003-03-27 23:29:38 +03:00
|
|
|
fi
|
|
|
|
if [ ! -f "test" ] && [ ! -f "test.exe" ]; then
|
|
|
|
echo "${COMPILER} does not produce output"
|
|
|
|
return 2
|
|
|
|
fi
|
|
|
|
./test
|
|
|
|
RES=$?
|
|
|
|
rm -f "test"
|
|
|
|
if [ "${RES}" -ne "0" ]; then
|
|
|
|
echo "${MAKE_PROC} produces strange executable"
|
|
|
|
return 3
|
|
|
|
fi
|
|
|
|
echo "${MAKE_PROC} works"
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2003-05-15 17:35:16 +04:00
|
|
|
# Parse arguments
|
2003-05-14 17:19:12 +04:00
|
|
|
cmake_verbose=
|
2003-05-14 17:27:39 +04:00
|
|
|
cmake_parallel_make=
|
2011-01-17 16:57:38 +03:00
|
|
|
cmake_ccache_enabled=
|
2006-02-17 04:13:54 +03:00
|
|
|
cmake_prefix_dir="${cmake_default_prefix}"
|
2011-12-16 19:56:47 +04:00
|
|
|
while test $# != 0; do
|
|
|
|
case "$1" in
|
2012-05-08 17:43:19 +04:00
|
|
|
--prefix=*) dir=`cmake_arg "$1"`
|
|
|
|
cmake_prefix_dir=`cmake_fix_slashes "$dir"` ;;
|
|
|
|
--parallel=*) cmake_parallel_make=`cmake_arg "$1"` ;;
|
2016-05-27 17:03:43 +03:00
|
|
|
--bindir=*) cmake_bin_dir=`cmake_arg "$1"` ;;
|
2012-05-08 17:43:19 +04:00
|
|
|
--datadir=*) cmake_data_dir=`cmake_arg "$1"` ;;
|
|
|
|
--docdir=*) cmake_doc_dir=`cmake_arg "$1"` ;;
|
|
|
|
--mandir=*) cmake_man_dir=`cmake_arg "$1"` ;;
|
2015-12-21 18:02:11 +03:00
|
|
|
--xdgdatadir=*) cmake_xdgdata_dir=`cmake_arg "$1"` ;;
|
2012-05-08 17:43:19 +04:00
|
|
|
--init=*) cmake_init_file=`cmake_arg "$1"` ;;
|
2011-12-16 19:56:47 +04:00
|
|
|
--system-libs) cmake_bootstrap_system_libs="${cmake_bootstrap_system_libs} -DCMAKE_USE_SYSTEM_LIBRARIES=1" ;;
|
|
|
|
--no-system-libs) cmake_bootstrap_system_libs="${cmake_bootstrap_system_libs} -DCMAKE_USE_SYSTEM_LIBRARIES=0" ;;
|
2016-01-13 22:27:02 +03:00
|
|
|
--system-bzip2|--system-curl|--system-expat|--system-jsoncpp|--system-libarchive|--system-zlib|--system-liblzma)
|
2012-05-08 17:43:19 +04:00
|
|
|
lib=`cmake_arg "$1" "--system-"`
|
|
|
|
cmake_bootstrap_system_libs="${cmake_bootstrap_system_libs} -DCMAKE_USE_SYSTEM_LIBRARY_`cmake_toupper $lib`=1" ;;
|
2016-01-13 22:27:02 +03:00
|
|
|
--no-system-bzip2|--no-system-curl|--no-system-expat|--no-system-jsoncpp|--no-system-libarchive|--no-system-zlib|--no-system-liblzma)
|
2012-05-08 17:43:19 +04:00
|
|
|
lib=`cmake_arg "$1" "--no-system-"`
|
|
|
|
cmake_bootstrap_system_libs="${cmake_bootstrap_system_libs} -DCMAKE_USE_SYSTEM_LIBRARY_`cmake_toupper $lib`=0" ;;
|
2011-12-16 19:56:47 +04:00
|
|
|
--qt-gui) cmake_bootstrap_qt_gui="1" ;;
|
|
|
|
--no-qt-gui) cmake_bootstrap_qt_gui="0" ;;
|
2012-05-08 17:43:19 +04:00
|
|
|
--qt-qmake=*) cmake_bootstrap_qt_qmake=`cmake_arg "$1"` ;;
|
2013-09-18 00:08:05 +04:00
|
|
|
--sphinx-man) cmake_sphinx_man="1" ;;
|
|
|
|
--sphinx-html) cmake_sphinx_html="1" ;;
|
2015-02-08 01:23:28 +03:00
|
|
|
--sphinx-qthelp) cmake_sphinx_qthelp="1" ;;
|
2013-09-18 00:08:05 +04:00
|
|
|
--sphinx-build=*) cmake_sphinx_build=`cmake_arg "$1"` ;;
|
2015-04-30 16:30:14 +03:00
|
|
|
--sphinx-flags=*) cmake_sphinx_flags=`cmake_arg "$1"` ;;
|
2011-12-16 19:56:47 +04:00
|
|
|
--help) cmake_usage ;;
|
|
|
|
--version) cmake_version_display ; exit 2 ;;
|
|
|
|
--verbose) cmake_verbose=TRUE ;;
|
|
|
|
--enable-ccache) cmake_ccache_enabled=TRUE ;;
|
2011-12-16 20:29:26 +04:00
|
|
|
--) shift; break ;;
|
2011-12-16 19:56:47 +04:00
|
|
|
*) die "Unknown option: $1" ;;
|
|
|
|
esac
|
|
|
|
shift
|
2003-05-14 17:19:12 +04:00
|
|
|
done
|
|
|
|
|
2003-05-15 17:35:16 +04:00
|
|
|
# If verbose, display some information about bootstrap
|
2003-05-14 17:19:12 +04:00
|
|
|
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}"
|
2003-05-14 17:27:39 +04:00
|
|
|
if [ "x${cmake_parallel_make}" != "x" ]; then
|
|
|
|
echo "Doing parallel make: ${cmake_parallel_make}"
|
|
|
|
fi
|
|
|
|
echo ""
|
2003-05-14 17:19:12 +04:00
|
|
|
fi
|
|
|
|
|
|
|
|
echo "---------------------------------------------"
|
2003-05-15 17:35:16 +04:00
|
|
|
# Get CMake version
|
2008-01-24 01:43:08 +03:00
|
|
|
echo "`cmake_version_display`"
|
2003-05-14 17:19:12 +04:00
|
|
|
|
2004-10-18 19:34:02 +04:00
|
|
|
# Check for in-source build
|
|
|
|
cmake_in_source_build=
|
|
|
|
if [ -f "${cmake_binary_dir}/Source/cmake.cxx" -a \
|
|
|
|
-f "${cmake_binary_dir}/Source/cmake.h" ]; then
|
|
|
|
if [ -n "${cmake_verbose}" ]; then
|
|
|
|
echo "Warning: This is an in-source build"
|
|
|
|
fi
|
|
|
|
cmake_in_source_build=TRUE
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If this is not an in-source build, then Bootstrap stuff should not exist.
|
|
|
|
if [ -z "${cmake_in_source_build}" ]; then
|
|
|
|
# Did somebody bootstrap in the source tree?
|
2009-06-10 21:04:25 +04:00
|
|
|
if [ -d "${cmake_source_dir}/Bootstrap${_cmk}" ]; then
|
|
|
|
cmake_error 10 "Found directory \"${cmake_source_dir}/Bootstrap${_cmk}\".
|
2004-10-18 19:34:02 +04:00
|
|
|
Looks like somebody did bootstrap CMake in the source tree, but now you are
|
2009-06-10 21:04:25 +04:00
|
|
|
trying to do bootstrap in the binary tree. Please remove Bootstrap${_cmk}
|
2004-10-18 19:34:02 +04:00
|
|
|
directory from the source tree."
|
|
|
|
fi
|
|
|
|
# Is there a cache in the source tree?
|
|
|
|
for cmake_problematic_file in ${CMAKE_PROBLEMATIC_FILES}; do
|
2004-10-19 02:11:42 +04:00
|
|
|
if [ -f "${cmake_source_dir}/${cmake_problematic_file}" ]; then
|
2004-10-18 19:34:02 +04:00
|
|
|
cmake_error 10 "Found \"${cmake_source_dir}/${cmake_problematic_file}\".
|
|
|
|
Looks like somebody tried to build CMake in the source tree, but now you are
|
|
|
|
trying to do bootstrap in the binary tree. Please remove \"${cmake_problematic_file}\"
|
|
|
|
from the source tree."
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2003-05-15 17:35:16 +04:00
|
|
|
# Make bootstrap directory
|
2003-05-14 17:19:12 +04:00
|
|
|
[ -d "${cmake_bootstrap_dir}" ] || mkdir "${cmake_bootstrap_dir}"
|
|
|
|
if [ ! -d "${cmake_bootstrap_dir}" ]; then
|
2003-12-23 19:03:38 +03:00
|
|
|
cmake_error 3 "Cannot create directory ${cmake_bootstrap_dir} to bootstrap CMake."
|
2003-05-14 17:19:12 +04:00
|
|
|
fi
|
|
|
|
cd "${cmake_bootstrap_dir}"
|
|
|
|
|
2003-06-23 16:58:58 +04:00
|
|
|
[ -d "cmsys" ] || mkdir "cmsys"
|
|
|
|
if [ ! -d "cmsys" ]; then
|
2003-12-23 19:03:38 +03:00
|
|
|
cmake_error 4 "Cannot create directory ${cmake_bootstrap_dir}/cmsys"
|
2003-06-23 16:58:58 +04:00
|
|
|
fi
|
|
|
|
|
2003-05-15 17:35:16 +04:00
|
|
|
# Delete all the bootstrap files
|
2003-05-14 17:19:12 +04:00
|
|
|
rm -f "${cmake_bootstrap_dir}/cmake_bootstrap.log"
|
2009-06-10 21:04:25 +04:00
|
|
|
rm -f "${cmake_bootstrap_dir}/cmConfigure.h${_tmp}"
|
|
|
|
rm -f "${cmake_bootstrap_dir}/cmVersionConfig.h${_tmp}"
|
2003-05-14 17:19:12 +04:00
|
|
|
|
2003-05-15 17:35:16 +04:00
|
|
|
# If exist compiler flags, set them
|
2003-03-27 23:29:38 +03:00
|
|
|
cmake_c_flags=${CFLAGS}
|
|
|
|
cmake_cxx_flags=${CXXFLAGS}
|
2006-12-05 16:47:06 +03:00
|
|
|
cmake_ld_flags=${LDFLAGS}
|
2003-03-27 23:29:38 +03:00
|
|
|
|
2009-05-27 19:33:37 +04:00
|
|
|
# Add Cygwin-specific flags
|
|
|
|
if ${cmake_system_cygwin}; then
|
|
|
|
cmake_ld_flags="${LDFLAGS} -Wl,--enable-auto-import"
|
|
|
|
fi
|
|
|
|
|
2010-08-18 00:11:33 +04:00
|
|
|
# Add CoreFoundation framework on Darwin
|
2006-04-13 19:00:52 +04:00
|
|
|
if ${cmake_system_darwin}; then
|
2010-08-18 00:11:33 +04:00
|
|
|
cmake_ld_flags="${LDFLAGS} -framework CoreFoundation"
|
2006-04-13 19:00:52 +04:00
|
|
|
fi
|
|
|
|
|
2006-12-05 01:26:41 +03:00
|
|
|
# Add BeOS toolkits...
|
|
|
|
if ${cmake_system_beos}; then
|
|
|
|
cmake_ld_flags="${LDFLAGS} -lroot -lbe"
|
|
|
|
fi
|
|
|
|
|
2008-09-16 01:53:28 +04:00
|
|
|
# Add Haiku toolkits...
|
|
|
|
if ${cmake_system_haiku}; then
|
|
|
|
cmake_ld_flags="${LDFLAGS} -lroot -lbe"
|
|
|
|
fi
|
|
|
|
|
2014-11-04 19:01:56 +03:00
|
|
|
# Workaround for short jump tables on PA-RISC
|
|
|
|
if ${cmake_machine_parisc}; then
|
|
|
|
if ${cmake_c_compiler_is_gnu}; then
|
|
|
|
cmake_c_flags="${CFLAGS} -mlong-calls"
|
|
|
|
fi
|
|
|
|
if ${cmake_cxx_compiler_is_gnu}; then
|
|
|
|
cmake_cxx_flags="${CXXFLAGS} -mlong-calls"
|
2012-10-29 02:23:29 +04:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2010-06-30 18:50:28 +04:00
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Detect known toolchains on some platforms.
|
|
|
|
cmake_toolchains=''
|
|
|
|
case "${cmake_system}" in
|
|
|
|
*AIX*) cmake_toolchains='XL GNU' ;;
|
|
|
|
*CYGWIN*) cmake_toolchains='GNU' ;;
|
|
|
|
*Darwin*) cmake_toolchains='GNU Clang' ;;
|
|
|
|
*Linux*) cmake_toolchains='GNU Clang XL PGI PathScale' ;;
|
|
|
|
*MINGW*) cmake_toolchains='GNU' ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# Toolchain compiler name table.
|
|
|
|
cmake_toolchain_Clang_CC='clang'
|
|
|
|
cmake_toolchain_Clang_CXX='clang++'
|
|
|
|
cmake_toolchain_GNU_CC='gcc'
|
|
|
|
cmake_toolchain_GNU_CXX='g++'
|
|
|
|
cmake_toolchain_PGI_CC='pgcc'
|
|
|
|
cmake_toolchain_PGI_CXX='pgCC'
|
|
|
|
cmake_toolchain_PathScale_CC='pathcc'
|
|
|
|
cmake_toolchain_PathScale_CXX='pathCC'
|
|
|
|
cmake_toolchain_XL_CC='xlc'
|
|
|
|
cmake_toolchain_XL_CXX='xlC'
|
|
|
|
|
|
|
|
cmake_toolchain_try()
|
|
|
|
{
|
|
|
|
tc="$1"
|
|
|
|
TMPFILE=`cmake_tmp_file`
|
|
|
|
|
|
|
|
eval "tc_CC=\${cmake_toolchain_${tc}_CC}"
|
|
|
|
echo 'int main() { return 0; }' > "${TMPFILE}.c"
|
|
|
|
cmake_try_run "$tc_CC" "" "${TMPFILE}.c" >> cmake_bootstrap.log 2>&1
|
|
|
|
tc_result_CC="$?"
|
|
|
|
rm -f "${TMPFILE}.c"
|
|
|
|
test "${tc_result_CC}" = "0" || return 1
|
|
|
|
|
|
|
|
eval "tc_CXX=\${cmake_toolchain_${tc}_CXX}"
|
|
|
|
echo 'int main() { return 0; }' > "${TMPFILE}.cpp"
|
|
|
|
cmake_try_run "$tc_CXX" "" "${TMPFILE}.cpp" >> cmake_bootstrap.log 2>&1
|
|
|
|
tc_result_CXX="$?"
|
|
|
|
rm -f "${TMPFILE}.cpp"
|
|
|
|
test "${tc_result_CXX}" = "0" || return 1
|
|
|
|
|
|
|
|
cmake_toolchain="$tc"
|
|
|
|
}
|
|
|
|
|
|
|
|
cmake_toolchain_detect()
|
|
|
|
{
|
|
|
|
cmake_toolchain=
|
|
|
|
for tc in ${cmake_toolchains}; do
|
|
|
|
echo "Checking for $tc toolchain" >> cmake_bootstrap.log 2>&1
|
|
|
|
cmake_toolchain_try "$tc" &&
|
|
|
|
echo "Found $tc toolchain" &&
|
|
|
|
break
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
if [ -z "${CC}" -a -z "${CXX}" ]; then
|
|
|
|
cmake_toolchain_detect
|
|
|
|
fi
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
2003-03-27 23:29:38 +03:00
|
|
|
# Test C compiler
|
|
|
|
cmake_c_compiler=
|
|
|
|
|
2003-05-15 17:35:16 +04:00
|
|
|
# If CC is set, use that for compiler, otherwise use list of known compilers
|
2010-06-30 18:50:28 +04:00
|
|
|
if [ -n "${cmake_toolchain}" ]; then
|
|
|
|
eval cmake_c_compilers="\${cmake_toolchain_${cmake_toolchain}_CC}"
|
|
|
|
elif [ -n "${CC}" ]; then
|
2003-03-27 23:29:38 +03:00
|
|
|
cmake_c_compilers="${CC}"
|
|
|
|
else
|
|
|
|
cmake_c_compilers="${CMAKE_KNOWN_C_COMPILERS}"
|
|
|
|
fi
|
|
|
|
|
2003-05-15 17:35:16 +04:00
|
|
|
# Check if C compiler works
|
2003-03-27 23:29:38 +03:00
|
|
|
TMPFILE=`cmake_tmp_file`
|
2009-06-10 21:04:25 +04:00
|
|
|
echo '
|
2006-07-26 22:10:14 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
# error "The CMAKE_C_COMPILER is set to a C++ compiler"
|
2006-07-26 19:46:22 +04:00
|
|
|
#endif
|
|
|
|
|
2006-07-26 22:10:14 +04:00
|
|
|
#include<stdio.h>
|
|
|
|
|
|
|
|
#if defined(__CLASSIC_C__)
|
2006-07-26 19:46:22 +04:00
|
|
|
int main(argc, argv)
|
|
|
|
int argc;
|
|
|
|
char* argv[];
|
|
|
|
#else
|
2006-07-25 19:00:10 +04:00
|
|
|
int main(int argc, char* argv[])
|
2006-07-26 19:46:22 +04:00
|
|
|
#endif
|
2003-03-27 23:29:38 +03:00
|
|
|
{
|
2009-06-10 21:39:40 +04:00
|
|
|
printf("%d%c", (argv != 0), (char)0x0a);
|
2006-07-25 19:00:10 +04:00
|
|
|
return argc-1;
|
2003-03-27 23:29:38 +03:00
|
|
|
}
|
2009-06-10 21:04:25 +04:00
|
|
|
' > "${TMPFILE}.c"
|
2003-03-27 23:29:38 +03:00
|
|
|
for a in ${cmake_c_compilers}; do
|
2003-12-23 19:03:38 +03:00
|
|
|
if [ -z "${cmake_c_compiler}" ] && \
|
|
|
|
cmake_try_run "${a}" "${cmake_c_flags}" "${TMPFILE}.c" >> cmake_bootstrap.log 2>&1; then
|
2003-03-27 23:29:38 +03:00
|
|
|
cmake_c_compiler="${a}"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
rm -f "${TMPFILE}.c"
|
|
|
|
|
|
|
|
if [ -z "${cmake_c_compiler}" ]; then
|
2003-12-23 19:03:38 +03:00
|
|
|
cmake_error 6 "Cannot find appropriate C compiler on this system.
|
2004-10-12 18:57:24 +04:00
|
|
|
Please specify one using environment variable CC.
|
|
|
|
See cmake_bootstrap.log for compilers attempted.
|
|
|
|
"
|
2003-03-27 23:29:38 +03:00
|
|
|
fi
|
|
|
|
echo "C compiler on this system is: ${cmake_c_compiler} ${cmake_c_flags}"
|
|
|
|
|
2010-06-30 18:50:28 +04:00
|
|
|
#-----------------------------------------------------------------------------
|
2003-03-27 23:29:38 +03:00
|
|
|
# Test CXX compiler
|
|
|
|
cmake_cxx_compiler=
|
2003-05-15 17:35:16 +04:00
|
|
|
|
2003-06-30 17:56:33 +04:00
|
|
|
# On Mac OSX, CC is the same as cc, so make sure not to try CC as c++ compiler.
|
|
|
|
|
2003-05-15 17:35:16 +04:00
|
|
|
# If CC is set, use that for compiler, otherwise use list of known compilers
|
2010-06-30 18:50:28 +04:00
|
|
|
if [ -n "${cmake_toolchain}" ]; then
|
|
|
|
eval cmake_cxx_compilers="\${cmake_toolchain_${cmake_toolchain}_CXX}"
|
|
|
|
elif [ -n "${CXX}" ]; then
|
2003-03-27 23:29:38 +03:00
|
|
|
cmake_cxx_compilers="${CXX}"
|
|
|
|
else
|
|
|
|
cmake_cxx_compilers="${CMAKE_KNOWN_CXX_COMPILERS}"
|
|
|
|
fi
|
|
|
|
|
2003-05-15 17:35:16 +04:00
|
|
|
# Check if C++ compiler works
|
2003-03-27 23:29:38 +03:00
|
|
|
TMPFILE=`cmake_tmp_file`
|
2009-06-10 21:04:25 +04:00
|
|
|
echo '
|
2003-12-23 19:03:38 +03:00
|
|
|
#if defined(TEST1)
|
|
|
|
# include <iostream>
|
|
|
|
#else
|
|
|
|
# include <iostream.h>
|
|
|
|
#endif
|
|
|
|
|
2012-07-07 21:57:40 +04:00
|
|
|
class NeedCXX
|
2003-06-30 17:56:33 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NeedCXX() { this->Foo = 1; }
|
|
|
|
int GetFoo() { return this->Foo; }
|
|
|
|
private:
|
|
|
|
int Foo;
|
|
|
|
};
|
2003-03-27 23:29:38 +03:00
|
|
|
int main()
|
|
|
|
{
|
2003-06-30 17:56:33 +04:00
|
|
|
NeedCXX c;
|
2003-12-23 19:03:38 +03:00
|
|
|
#ifdef TEST3
|
|
|
|
cout << c.GetFoo() << endl;
|
|
|
|
#else
|
|
|
|
std::cout << c.GetFoo() << std::endl;
|
|
|
|
#endif
|
2003-03-27 23:29:38 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2009-06-10 21:04:25 +04:00
|
|
|
' > "${TMPFILE}.cxx"
|
2003-03-27 23:29:38 +03:00
|
|
|
for a in ${cmake_cxx_compilers}; do
|
2003-12-23 19:03:38 +03:00
|
|
|
for b in 1 2 3; do
|
|
|
|
if [ -z "${cmake_cxx_compiler}" ] && \
|
|
|
|
cmake_try_run "${a}" "${cmake_cxx_flags} -DTEST${b}" "${TMPFILE}.cxx" >> cmake_bootstrap.log 2>&1; then
|
|
|
|
cmake_cxx_compiler="${a}"
|
|
|
|
fi
|
|
|
|
done
|
2003-03-27 23:29:38 +03:00
|
|
|
done
|
|
|
|
rm -f "${TMPFILE}.cxx"
|
|
|
|
|
|
|
|
if [ -z "${cmake_cxx_compiler}" ]; then
|
2003-12-23 19:03:38 +03:00
|
|
|
cmake_error 7 "Cannot find appropriate C++ compiler on this system.
|
2004-10-12 18:57:24 +04:00
|
|
|
Please specify one using environment variable CXX.
|
|
|
|
See cmake_bootstrap.log for compilers attempted."
|
2003-03-27 23:29:38 +03:00
|
|
|
fi
|
|
|
|
echo "C++ compiler on this system is: ${cmake_cxx_compiler} ${cmake_cxx_flags}"
|
|
|
|
|
2010-06-30 18:50:28 +04:00
|
|
|
#-----------------------------------------------------------------------------
|
2003-03-27 23:29:38 +03:00
|
|
|
# Test Make
|
|
|
|
|
|
|
|
cmake_make_processor=
|
2003-08-22 17:52:05 +04:00
|
|
|
cmake_make_flags=
|
2003-05-15 17:35:16 +04:00
|
|
|
|
|
|
|
# If MAKE is set, use that for make processor, otherwise use list of known make
|
2003-03-27 23:29:38 +03:00
|
|
|
if [ -n "${MAKE}" ]; then
|
|
|
|
cmake_make_processors="${MAKE}"
|
|
|
|
else
|
|
|
|
cmake_make_processors="${CMAKE_KNOWN_MAKE_PROCESSORS}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
TMPFILE="`cmake_tmp_file`_dir"
|
|
|
|
rm -rf "${cmake_bootstrap_dir}/${TMPFILE}"
|
|
|
|
mkdir "${cmake_bootstrap_dir}/${TMPFILE}"
|
|
|
|
cd "${cmake_bootstrap_dir}/${TMPFILE}"
|
2009-06-10 21:04:25 +04:00
|
|
|
echo '
|
2003-03-27 23:29:38 +03:00
|
|
|
test: test.c
|
2010-09-10 19:39:43 +04:00
|
|
|
"'"${cmake_c_compiler}"'" '"${cmake_ld_flags} ${cmake_c_flags}"' -o test test.c
|
2009-06-10 21:04:25 +04:00
|
|
|
'>"Makefile"
|
|
|
|
echo '
|
2003-03-27 23:29:38 +03:00
|
|
|
#include <stdio.h>
|
2009-06-10 21:39:40 +04:00
|
|
|
int main(){ printf("1%c", (char)0x0a); return 0; }
|
2009-06-10 21:04:25 +04:00
|
|
|
' > "test.c"
|
2004-09-23 15:53:42 +04:00
|
|
|
cmake_original_make_flags="${cmake_make_flags}"
|
2003-08-22 17:52:05 +04:00
|
|
|
if [ "x${cmake_parallel_make}" != "x" ]; then
|
|
|
|
cmake_make_flags="${cmake_make_flags} -j ${cmake_parallel_make}"
|
|
|
|
fi
|
2003-03-27 23:29:38 +03:00
|
|
|
for a in ${cmake_make_processors}; do
|
2010-04-13 17:28:16 +04:00
|
|
|
if [ -z "${cmake_make_processor}" ] && cmake_try_make "${a}" "${cmake_make_flags}" >> ../cmake_bootstrap.log 2>&1; then
|
2003-03-27 23:29:38 +03:00
|
|
|
cmake_make_processor="${a}"
|
|
|
|
fi
|
|
|
|
done
|
2004-09-23 15:53:42 +04:00
|
|
|
cmake_full_make_flags="${cmake_make_flags}"
|
|
|
|
if [ "x${cmake_original_make_flags}" != "x${cmake_make_flags}" ]; then
|
|
|
|
if [ -z "${cmake_make_processor}" ]; then
|
|
|
|
cmake_make_flags="${cmake_original_make_flags}"
|
|
|
|
for a in ${cmake_make_processors}; do
|
2010-04-13 17:28:16 +04:00
|
|
|
if [ -z "${cmake_make_processor}" ] && cmake_try_make "${a}" "${cmake_make_flags}" >> ../cmake_bootstrap.log 2>&1; then
|
2004-09-23 15:53:42 +04:00
|
|
|
cmake_make_processor="${a}"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
fi
|
2003-03-27 23:29:38 +03:00
|
|
|
cd "${cmake_bootstrap_dir}"
|
|
|
|
|
2003-08-12 01:53:10 +04:00
|
|
|
if [ -z "${cmake_make_processor}" ]; then
|
2003-12-23 19:03:38 +03:00
|
|
|
cmake_error 8 "Cannot find appropriate Makefile processor on this system.
|
2003-08-12 01:53:10 +04:00
|
|
|
Please specify one using environment variable MAKE."
|
|
|
|
fi
|
2010-04-13 17:28:16 +04:00
|
|
|
rm -rf "${cmake_bootstrap_dir}/${TMPFILE}"
|
2004-09-23 15:53:42 +04:00
|
|
|
echo "Makefile processor on this system is: ${cmake_make_processor}"
|
|
|
|
if [ "x${cmake_full_make_flags}" != "x${cmake_make_flags}" ]; then
|
|
|
|
echo "---------------------------------------------"
|
|
|
|
echo "Makefile processor ${cmake_make_processor} does not support parallel build"
|
|
|
|
echo "---------------------------------------------"
|
|
|
|
fi
|
2003-03-27 23:29:38 +03:00
|
|
|
|
2003-05-15 17:35:16 +04:00
|
|
|
# Ok, we have CC, CXX, and MAKE.
|
|
|
|
|
2003-03-27 23:29:38 +03:00
|
|
|
# Test C++ compiler features
|
2003-04-22 22:32:48 +04:00
|
|
|
|
2004-10-01 00:24:54 +04:00
|
|
|
# Are we GCC?
|
|
|
|
|
|
|
|
TMPFILE=`cmake_tmp_file`
|
2009-06-10 21:04:25 +04:00
|
|
|
echo '
|
2004-10-01 00:24:54 +04:00
|
|
|
#if defined(__GNUC__) && !defined(__INTEL_COMPILER)
|
|
|
|
#include <iostream>
|
|
|
|
int main() { std::cout << "This is GNU" << std::endl; return 0;}
|
|
|
|
#endif
|
2009-06-10 21:04:25 +04:00
|
|
|
' > ${TMPFILE}.cxx
|
2004-10-01 00:24:54 +04:00
|
|
|
cmake_cxx_compiler_is_gnu=0
|
|
|
|
if cmake_try_run "${cmake_cxx_compiler}" \
|
|
|
|
"${cmake_cxx_flags}" "${TMPFILE}.cxx" >> cmake_bootstrap.log 2>&1; then
|
|
|
|
cmake_cxx_compiler_is_gnu=1
|
|
|
|
fi
|
|
|
|
if [ "x${cmake_cxx_compiler_is_gnu}" = "x1" ]; then
|
|
|
|
echo "${cmake_cxx_compiler} is GNU compiler"
|
|
|
|
else
|
|
|
|
echo "${cmake_cxx_compiler} is not GNU compiler"
|
|
|
|
fi
|
|
|
|
rm -f "${TMPFILE}.cxx"
|
|
|
|
|
|
|
|
if [ "x${cmake_cxx_compiler_is_gnu}" != "x1" ]; then
|
|
|
|
# Check for non-GNU compiler flags
|
|
|
|
|
|
|
|
# If we are on IRIX, check for -LANG:std
|
|
|
|
cmake_test_flags="-LANG:std"
|
|
|
|
if [ "x${cmake_system}" = "xIRIX64" ]; then
|
|
|
|
TMPFILE=`cmake_tmp_file`
|
2009-06-10 21:04:25 +04:00
|
|
|
echo '
|
2004-10-01 00:24:54 +04:00
|
|
|
#include <iostream>
|
2009-06-10 21:04:25 +04:00
|
|
|
int main() { std::cout << "No need for '"${cmake_test_flags}"'" << std::endl; return 0;}
|
|
|
|
' > ${TMPFILE}.cxx
|
2004-10-01 00:24:54 +04:00
|
|
|
cmake_need_lang_std=0
|
2003-12-23 19:03:38 +03:00
|
|
|
if cmake_try_run "${cmake_cxx_compiler}" \
|
2004-10-01 00:24:54 +04:00
|
|
|
"${cmake_cxx_flags}" "${TMPFILE}.cxx" >> cmake_bootstrap.log 2>&1; then
|
|
|
|
:
|
|
|
|
else
|
|
|
|
if cmake_try_run "${cmake_cxx_compiler}" \
|
|
|
|
"${cmake_cxx_flags} ${cmake_test_flags}" "${TMPFILE}.cxx" >> cmake_bootstrap.log 2>&1; then
|
|
|
|
cmake_need_lang_std=1
|
|
|
|
fi
|
2003-04-22 22:32:48 +04:00
|
|
|
fi
|
2004-10-01 00:24:54 +04:00
|
|
|
if [ "x${cmake_need_lang_std}" = "x1" ]; then
|
|
|
|
cmake_cxx_flags="${cmake_cxx_flags} ${cmake_test_flags}"
|
|
|
|
echo "${cmake_cxx_compiler} needs ${cmake_test_flags}"
|
|
|
|
else
|
|
|
|
echo "${cmake_cxx_compiler} does not need ${cmake_test_flags}"
|
|
|
|
fi
|
|
|
|
rm -f "${TMPFILE}.cxx"
|
2003-04-22 22:32:48 +04:00
|
|
|
fi
|
2004-10-01 00:24:54 +04:00
|
|
|
cmake_test_flags=
|
2003-06-26 17:44:27 +04:00
|
|
|
|
2004-10-01 00:24:54 +04:00
|
|
|
# If we are on OSF, check for -timplicit_local -no_implicit_include
|
|
|
|
cmake_test_flags="-timplicit_local -no_implicit_include"
|
|
|
|
if [ "x${cmake_system}" = "xOSF1" ]; then
|
|
|
|
TMPFILE=`cmake_tmp_file`
|
2009-06-10 21:04:25 +04:00
|
|
|
echo '
|
2004-10-01 00:24:54 +04:00
|
|
|
#include <iostream>
|
2009-06-10 21:04:25 +04:00
|
|
|
int main() { std::cout << "We need '"${cmake_test_flags}"'" << std::endl; return 0;}
|
|
|
|
' > ${TMPFILE}.cxx
|
2004-10-01 00:24:54 +04:00
|
|
|
cmake_need_flags=1
|
|
|
|
if cmake_try_run "${cmake_cxx_compiler}" \
|
|
|
|
"${cmake_cxx_flags} ${cmake_test_flags}" "${TMPFILE}.cxx" >> cmake_bootstrap.log 2>&1; then
|
|
|
|
:
|
|
|
|
else
|
|
|
|
cmake_need_flags=0
|
|
|
|
fi
|
|
|
|
if [ "x${cmake_need_flags}" = "x1" ]; then
|
|
|
|
cmake_cxx_flags="${cmake_cxx_flags} ${cmake_test_flags}"
|
|
|
|
echo "${cmake_cxx_compiler} needs ${cmake_test_flags}"
|
|
|
|
else
|
|
|
|
echo "${cmake_cxx_compiler} does not need ${cmake_test_flags}"
|
|
|
|
fi
|
|
|
|
rm -f "${TMPFILE}.cxx"
|
2003-06-26 17:44:27 +04:00
|
|
|
fi
|
2004-10-01 00:24:54 +04:00
|
|
|
cmake_test_flags=
|
2003-06-26 17:44:27 +04:00
|
|
|
|
2004-10-01 00:24:54 +04:00
|
|
|
# If we are on OSF, check for -std strict_ansi -nopure_cname
|
|
|
|
cmake_test_flags="-std strict_ansi -nopure_cname"
|
|
|
|
if [ "x${cmake_system}" = "xOSF1" ]; then
|
|
|
|
TMPFILE=`cmake_tmp_file`
|
2009-06-10 21:04:25 +04:00
|
|
|
echo '
|
2004-10-01 00:24:54 +04:00
|
|
|
#include <iostream>
|
2009-06-10 21:04:25 +04:00
|
|
|
int main() { std::cout << "We need '"${cmake_test_flags}"'" << std::endl; return 0;}
|
|
|
|
' > ${TMPFILE}.cxx
|
2004-10-01 00:24:54 +04:00
|
|
|
cmake_need_flags=1
|
|
|
|
if cmake_try_run "${cmake_cxx_compiler}" \
|
|
|
|
"${cmake_cxx_flags} ${cmake_test_flags}" "${TMPFILE}.cxx" >> cmake_bootstrap.log 2>&1; then
|
|
|
|
:
|
|
|
|
else
|
|
|
|
cmake_need_flags=0
|
|
|
|
fi
|
|
|
|
if [ "x${cmake_need_flags}" = "x1" ]; then
|
|
|
|
cmake_cxx_flags="${cmake_cxx_flags} ${cmake_test_flags}"
|
|
|
|
echo "${cmake_cxx_compiler} needs ${cmake_test_flags}"
|
|
|
|
else
|
|
|
|
echo "${cmake_cxx_compiler} does not need ${cmake_test_flags}"
|
|
|
|
fi
|
|
|
|
rm -f "${TMPFILE}.cxx"
|
2003-06-26 17:44:27 +04:00
|
|
|
fi
|
2004-10-01 00:24:54 +04:00
|
|
|
cmake_test_flags=
|
2003-04-22 22:32:48 +04:00
|
|
|
|
2004-10-01 00:24:54 +04:00
|
|
|
# If we are on HP-UX, check for -Ae for the C compiler.
|
|
|
|
if [ "x${cmake_system}" = "xHP-UX" ]; then
|
2014-03-28 01:30:23 +04:00
|
|
|
cmake_test_flags="-Ae"
|
2004-10-01 00:24:54 +04:00
|
|
|
TMPFILE=`cmake_tmp_file`
|
2009-06-10 21:04:25 +04:00
|
|
|
echo '
|
2004-10-01 00:24:54 +04:00
|
|
|
int main(int argc, char** argv) { (void)argc; (void)argv; return 0; }
|
2009-06-10 21:04:25 +04:00
|
|
|
' > ${TMPFILE}.c
|
2004-10-01 00:24:54 +04:00
|
|
|
cmake_need_Ae=0
|
|
|
|
if cmake_try_run "${cmake_c_compiler}" "${cmake_c_flags}" "${TMPFILE}.c" >> cmake_bootstrap.log 2>&1; then
|
|
|
|
:
|
|
|
|
else
|
|
|
|
if cmake_try_run "${cmake_c_compiler}" \
|
|
|
|
"${cmake_c_flags} ${cmake_test_flags}" "${TMPFILE}.c" >> cmake_bootstrap.log 2>&1; then
|
|
|
|
cmake_need_Ae=1
|
|
|
|
fi
|
2003-09-15 23:58:27 +04:00
|
|
|
fi
|
2004-10-01 00:24:54 +04:00
|
|
|
if [ "x${cmake_need_Ae}" = "x1" ]; then
|
|
|
|
cmake_c_flags="${cmake_c_flags} ${cmake_test_flags}"
|
|
|
|
echo "${cmake_c_compiler} needs ${cmake_test_flags}"
|
|
|
|
else
|
|
|
|
echo "${cmake_c_compiler} does not need ${cmake_test_flags}"
|
|
|
|
fi
|
|
|
|
rm -f "${TMPFILE}.c"
|
2014-03-28 01:30:23 +04:00
|
|
|
echo '
|
|
|
|
#include <iostream>
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
for(int i=0; i < 1; ++i);
|
|
|
|
for(int i=0; i < 1; ++i);
|
|
|
|
(void)argc; (void)argv; return 0; }
|
|
|
|
' > ${TMPFILE}.cxx
|
|
|
|
cmake_need_AAstd98=0
|
|
|
|
cmake_test_flags="-AA +hpxstd98"
|
|
|
|
if cmake_try_run "${cmake_cxx_compiler}" "${cmake_cxx_flags}" "${TMPFILE}.cxx" >> cmake_bootstrap.log 2>&1; then
|
|
|
|
:
|
|
|
|
else
|
|
|
|
if cmake_try_run "${cmake_cxx_compiler}" \
|
|
|
|
"${cmake_cxx_flags} ${cmake_test_flags}" "${TMPFILE}.cxx" >> cmake_bootstrap.log 2>&1; then
|
|
|
|
cmake_need_AAstd98=1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if [ "x${cmake_need_AAstd98}" = "x1" ]; then
|
|
|
|
cmake_cxx_flags="${cmake_cxx_flags} ${cmake_test_flags}"
|
|
|
|
echo "${cmake_cxx_compiler} needs ${cmake_test_flags}"
|
|
|
|
else
|
|
|
|
echo "${cmake_cxx_compiler} does not need ${cmake_test_flags}"
|
|
|
|
fi
|
2003-09-15 23:58:27 +04:00
|
|
|
fi
|
2004-10-01 00:24:54 +04:00
|
|
|
cmake_test_flags=
|
2003-09-15 23:58:27 +04:00
|
|
|
fi
|
|
|
|
|
SolarisStudio: Use alternative standard library to build CMake.
SolarisStudio ships a very old RogueWave standard library
implementation (libCstd) and uses it by default for backward compatibility.
The macros defined when building the system libCstd need to be the same as
the macros defined when using it for binary compatibility reasons etc. The
SolarisStudio compiler driver adds macros such as _RWSTD_NO_MEMBER_TEMPLATES and
_RWSTD_NO_CLASS_PARTIAL_SPEC etc. These macros disable certain APIs in the
standard library headers.
Although the compiler supports the features 'member templates' and 'partial
template specialization', the standard library does not provide APIs which
rely on those features. This means that std::vector::insert in libCStd does
not accept a pair of iterators from a different type of container, because
that requires member templates, and reverse_iterator<const T> can not
be constructed from a reverse_iterator<T> because that requires partial
specialization (or at least the _RWSTD_NO_CLASS_PARTIAL_SPEC define) and
member templates.
This causes many problems while building CMake using SolarisStudio, which
have not been well understood until now. The problems are usually
attributed to compiler limitations, while actually the problem is in
the standard library, as in commit v3.0.0-rc1~99^2~1 (Help: Document non-use
of std::set::insert., 2014-01-24) and commit 107dcac3 (Fix compilation with
the Oracle / Sun compiler (#15318), 2014-12-12).
SolarisStudio 12.3 and earlier also ships a version of stlport which may be
used instead of libCstd by specifying -library=stlport4
https://docs.oracle.com/cd/E18659_01/html/821-1383/bkakg.html
SolarisStudio 12.4 ships a version of libstdc++ from GCC 4.8.2 which may be
used by specifying -std=c++03 or -std=c++11 etc
http://docs.oracle.com/cd/E37069_01/html/E37075/bkamw.html#OSSCPgnaof
Use these more-capable standard library implementations when building cmake.
This will allow more use of 'normal' C++ (such as std::vector::insert), and cause
fewer surprises resulting from dashboards using SolarisStudio.
Because cmake is not a library linked against by 3rd parties and does not have
external dependencies, issues related to mixing code using libCStd and libstdc++
do not apply.
2014-12-31 14:23:50 +03:00
|
|
|
|
|
|
|
if [ "x${cmake_cxx_compiler_is_gnu}" != "x1" ]; then
|
|
|
|
# Are we SolarisStudio?
|
|
|
|
|
|
|
|
TMPFILE=`cmake_tmp_file`
|
|
|
|
echo '
|
|
|
|
#if defined(__SUNPRO_CC)
|
|
|
|
#include <iostream>
|
|
|
|
int main() { std::cout << "This is SolarisStudio" << std::endl; return 0;}
|
|
|
|
#endif
|
|
|
|
' > ${TMPFILE}.cxx
|
|
|
|
cmake_cxx_compiler_is_solarisstudio=0
|
|
|
|
if cmake_try_run "${cmake_cxx_compiler}" \
|
|
|
|
"${cmake_cxx_flags} " "${TMPFILE}.cxx" >> cmake_bootstrap.log 2>&1; then
|
|
|
|
cmake_cxx_compiler_is_solarisstudio=1
|
|
|
|
fi
|
|
|
|
if [ "x${cmake_cxx_compiler_is_solarisstudio}" = "x1" ]; then
|
|
|
|
echo "${cmake_cxx_compiler} is SolarisStudio compiler"
|
|
|
|
else
|
|
|
|
echo "${cmake_cxx_compiler} is not SolarisStudio compiler"
|
|
|
|
fi
|
|
|
|
rm -f "${TMPFILE}.cxx"
|
|
|
|
|
|
|
|
if [ "x${cmake_cxx_compiler_is_solarisstudio}" = "x1" ]; then
|
|
|
|
cmake_cxx_flags="${cmake_cxx_flags} -library=stlport4"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2003-12-23 19:03:38 +03:00
|
|
|
# Test for kwsys features
|
|
|
|
KWSYS_NAME_IS_KWSYS=0
|
|
|
|
KWSYS_BUILD_SHARED=0
|
2006-08-26 04:52:37 +04:00
|
|
|
KWSYS_LFS_AVAILABLE=0
|
|
|
|
KWSYS_LFS_REQUESTED=0
|
2013-11-25 20:30:52 +04:00
|
|
|
KWSYS_STL_HAS_WSTRING=0
|
2016-07-17 03:22:10 +03:00
|
|
|
KWSYS_CXX_HAS_EXT_STDIO_FILEBUF_H=0
|
2012-04-26 18:36:53 +04:00
|
|
|
KWSYS_CXX_HAS_SETENV=0
|
|
|
|
KWSYS_CXX_HAS_UNSETENV=0
|
|
|
|
KWSYS_CXX_HAS_ENVIRON_IN_STDLIB_H=0
|
2013-06-03 18:34:35 +04:00
|
|
|
KWSYS_CXX_HAS_UTIMENSAT=0
|
|
|
|
KWSYS_CXX_HAS_UTIMES=0
|
2005-03-29 17:20:08 +04:00
|
|
|
|
2012-04-26 18:36:53 +04:00
|
|
|
if cmake_try_run "${cmake_cxx_compiler}" \
|
|
|
|
"${cmake_cxx_flags} -DTEST_KWSYS_CXX_HAS_SETENV" \
|
|
|
|
"${cmake_source_dir}/Source/kwsys/kwsysPlatformTestsCXX.cxx" >> cmake_bootstrap.log 2>&1; then
|
|
|
|
KWSYS_CXX_HAS_SETENV=1
|
|
|
|
echo "${cmake_cxx_compiler} has setenv"
|
|
|
|
else
|
|
|
|
echo "${cmake_cxx_compiler} does not have setenv"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if cmake_try_run "${cmake_cxx_compiler}" \
|
|
|
|
"${cmake_cxx_flags} -DTEST_KWSYS_CXX_HAS_UNSETENV" \
|
|
|
|
"${cmake_source_dir}/Source/kwsys/kwsysPlatformTestsCXX.cxx" >> cmake_bootstrap.log 2>&1; then
|
|
|
|
KWSYS_CXX_HAS_UNSETENV=1
|
|
|
|
echo "${cmake_cxx_compiler} has unsetenv"
|
|
|
|
else
|
|
|
|
echo "${cmake_cxx_compiler} does not have unsetenv"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if cmake_try_run "${cmake_cxx_compiler}" \
|
|
|
|
"${cmake_cxx_flags} -DTEST_KWSYS_CXX_HAS_ENVIRON_IN_STDLIB_H" \
|
|
|
|
"${cmake_source_dir}/Source/kwsys/kwsysPlatformTestsCXX.cxx" >> cmake_bootstrap.log 2>&1; then
|
|
|
|
KWSYS_CXX_HAS_ENVIRON_IN_STDLIB_H=1
|
|
|
|
echo "${cmake_cxx_compiler} has environ in stdlib.h"
|
|
|
|
else
|
|
|
|
echo "${cmake_cxx_compiler} does not have environ in stdlib.h"
|
|
|
|
fi
|
|
|
|
|
2003-12-23 19:03:38 +03:00
|
|
|
if cmake_try_run "${cmake_cxx_compiler}" \
|
2015-09-02 17:31:13 +03:00
|
|
|
"${cmake_cxx_flags} -DTEST_KWSYS_STL_HAS_WSTRING" \
|
2013-11-25 20:30:52 +04:00
|
|
|
"${cmake_source_dir}/Source/kwsys/kwsysPlatformTestsCXX.cxx" >> cmake_bootstrap.log 2>&1; then
|
|
|
|
KWSYS_STL_HAS_WSTRING=1
|
|
|
|
echo "${cmake_cxx_compiler} has stl wstring"
|
|
|
|
else
|
|
|
|
echo "${cmake_cxx_compiler} does not have stl wstring"
|
|
|
|
fi
|
|
|
|
|
2016-07-17 03:22:10 +03:00
|
|
|
if cmake_try_run "${cmake_cxx_compiler}" \
|
|
|
|
"${cmake_cxx_flags} -DTEST_KWSYS_CXX_HAS_EXT_STDIO_FILEBUF_H" \
|
|
|
|
"${cmake_source_dir}/Source/kwsys/kwsysPlatformTestsCXX.cxx" >> cmake_bootstrap.log 2>&1; then
|
|
|
|
KWSYS_CXX_HAS_EXT_STDIO_FILEBUF_H=1
|
|
|
|
echo "${cmake_cxx_compiler} has <ext/stdio_filebuf.h>"
|
|
|
|
else
|
|
|
|
echo "${cmake_cxx_compiler} does not have <ext/stdio_filebuf.h>"
|
|
|
|
fi
|
|
|
|
|
2003-06-21 19:57:13 +04:00
|
|
|
# Just to be safe, let us store compiler and flags to the header file
|
|
|
|
|
2003-12-23 19:03:38 +03:00
|
|
|
cmake_bootstrap_version='$Revision$'
|
|
|
|
cmake_compiler_settings_comment="/*
|
|
|
|
* Generated by ${cmake_source_dir}/bootstrap
|
|
|
|
* Version: ${cmake_bootstrap_version}
|
|
|
|
*
|
|
|
|
* Source directory: ${cmake_source_dir}
|
|
|
|
* Binary directory: ${cmake_bootstrap_dir}
|
|
|
|
*
|
|
|
|
* C compiler: ${cmake_c_compiler}
|
|
|
|
* C flags: ${cmake_c_flags}
|
|
|
|
*
|
|
|
|
* C++ compiler: ${cmake_cxx_compiler}
|
|
|
|
* C++ flags: ${cmake_cxx_flags}
|
|
|
|
*
|
|
|
|
* Make: ${cmake_make_processor}
|
|
|
|
*
|
|
|
|
* Sources:
|
|
|
|
* ${CMAKE_CXX_SOURCES} ${CMAKE_C_SOURCES}
|
|
|
|
* kwSys Sources:
|
2012-12-19 18:00:55 +04:00
|
|
|
* ${KWSYS_CXX_SOURCES} ${KWSYS_C_SOURCES}
|
2003-12-23 19:03:38 +03:00
|
|
|
*/
|
|
|
|
"
|
|
|
|
|
2009-06-10 21:04:25 +04:00
|
|
|
cmake_report cmConfigure.h${_tmp} "${cmake_compiler_settings_comment}"
|
2003-12-23 19:03:38 +03:00
|
|
|
|
2006-02-10 19:19:19 +03:00
|
|
|
# When bootstrapping on MinGW with MSYS we must convert the source
|
|
|
|
# directory to a windows path.
|
|
|
|
if ${cmake_system_mingw}; then
|
2014-06-25 21:32:48 +04:00
|
|
|
CMAKE_BOOTSTRAP_SOURCE_DIR=`cd "${cmake_source_dir}"; pwd -W`
|
2014-06-25 21:34:15 +04:00
|
|
|
CMAKE_BOOTSTRAP_BINARY_DIR=`cd "${cmake_binary_dir}"; pwd -W`
|
2006-02-10 19:19:19 +03:00
|
|
|
else
|
2014-06-25 21:32:48 +04:00
|
|
|
CMAKE_BOOTSTRAP_SOURCE_DIR="${cmake_source_dir}"
|
2014-06-25 21:34:15 +04:00
|
|
|
CMAKE_BOOTSTRAP_BINARY_DIR="${cmake_binary_dir}"
|
2006-02-10 19:19:19 +03:00
|
|
|
fi
|
|
|
|
|
2003-05-15 17:35:16 +04:00
|
|
|
# Write CMake version
|
2009-06-10 21:04:25 +04:00
|
|
|
cmake_report cmVersionConfig.h${_tmp} "#define CMake_VERSION_MAJOR ${cmake_version_major}"
|
|
|
|
cmake_report cmVersionConfig.h${_tmp} "#define CMake_VERSION_MINOR ${cmake_version_minor}"
|
|
|
|
cmake_report cmVersionConfig.h${_tmp} "#define CMake_VERSION_PATCH ${cmake_version_patch}"
|
2010-04-23 17:44:23 +04:00
|
|
|
cmake_report cmVersionConfig.h${_tmp} "#define CMake_VERSION \"${cmake_version}\""
|
2014-06-25 21:32:48 +04:00
|
|
|
cmake_report cmConfigure.h${_tmp} "#define CMAKE_BOOTSTRAP_SOURCE_DIR \"${CMAKE_BOOTSTRAP_SOURCE_DIR}\""
|
2014-06-25 21:34:15 +04:00
|
|
|
cmake_report cmConfigure.h${_tmp} "#define CMAKE_BOOTSTRAP_BINARY_DIR \"${CMAKE_BOOTSTRAP_BINARY_DIR}\""
|
2016-05-27 17:03:43 +03:00
|
|
|
cmake_report cmConfigure.h${_tmp} "#define CMAKE_BIN_DIR \"/bootstrap-not-insalled\""
|
2013-09-26 22:13:38 +04:00
|
|
|
cmake_report cmConfigure.h${_tmp} "#define CMAKE_DATA_DIR \"/bootstrap-not-insalled\""
|
2009-06-10 21:04:25 +04:00
|
|
|
cmake_report cmConfigure.h${_tmp} "#define CMAKE_BOOTSTRAP"
|
2016-06-28 00:23:35 +03:00
|
|
|
cmake_report cmConfigure.h${_tmp} "#define CM_NULLPTR 0"
|
2016-06-23 01:37:10 +03:00
|
|
|
cmake_report cmConfigure.h${_tmp} "#define CM_OVERRIDE"
|
2003-06-21 19:57:13 +04:00
|
|
|
|
2009-03-05 23:17:07 +03:00
|
|
|
# Regenerate configured headers
|
|
|
|
for h in Configure VersionConfig; do
|
2009-06-10 21:04:25 +04:00
|
|
|
if "${_diff}" cm${h}.h cm${h}.h${_tmp} > /dev/null 2> /dev/null; then
|
|
|
|
rm -f cm${h}.h${_tmp}
|
2009-03-05 23:17:07 +03:00
|
|
|
else
|
2009-06-10 21:04:25 +04:00
|
|
|
mv -f cm${h}.h${_tmp} cm${h}.h
|
2009-03-05 23:17:07 +03:00
|
|
|
fi
|
|
|
|
done
|
2003-03-27 23:29:38 +03:00
|
|
|
|
2003-06-23 16:58:58 +04:00
|
|
|
# Prepare KWSYS
|
2003-12-23 19:03:38 +03:00
|
|
|
cmake_kwsys_config_replace_string \
|
|
|
|
"${cmake_source_dir}/Source/kwsys/Configure.hxx.in" \
|
|
|
|
"${cmake_bootstrap_dir}/cmsys/Configure.hxx" \
|
|
|
|
"${cmake_compiler_settings_comment}"
|
|
|
|
cmake_kwsys_config_replace_string \
|
|
|
|
"${cmake_source_dir}/Source/kwsys/Configure.h.in" \
|
|
|
|
"${cmake_bootstrap_dir}/cmsys/Configure.h" \
|
|
|
|
"${cmake_compiler_settings_comment}"
|
|
|
|
|
2012-07-07 21:57:40 +04:00
|
|
|
for a in ${KWSYS_FILES}; do
|
2003-06-23 16:58:58 +04:00
|
|
|
cmake_replace_string "${cmake_source_dir}/Source/kwsys/${a}.in" \
|
|
|
|
"${cmake_bootstrap_dir}/cmsys/${a}" KWSYS_NAMESPACE cmsys
|
|
|
|
done
|
2003-12-23 19:03:38 +03:00
|
|
|
|
2015-12-18 17:57:55 +03:00
|
|
|
cmake_generate_file "${cmake_bootstrap_dir}/cmThirdParty.h" ""
|
|
|
|
|
2003-03-27 23:29:38 +03:00
|
|
|
# Generate Makefile
|
2006-03-06 23:41:56 +03:00
|
|
|
dep="cmConfigure.h cmsys/*.hxx cmsys/*.h `cmake_escape \"${cmake_source_dir}\"`/Source/*.h"
|
2003-03-27 23:29:38 +03:00
|
|
|
objs=""
|
2012-12-19 18:00:55 +04:00
|
|
|
for a in ${CMAKE_CXX_SOURCES} ${CMAKE_C_SOURCES} ${KWSYS_CXX_SOURCES} ${KWSYS_C_SOURCES}; do
|
2003-03-27 23:29:38 +03:00
|
|
|
objs="${objs} ${a}.o"
|
|
|
|
done
|
2003-06-21 19:57:13 +04:00
|
|
|
|
2013-06-14 16:35:52 +04:00
|
|
|
# Generate dependencies for cmBootstrapCommands1.cxx
|
|
|
|
for file in `grep "#include.*cm[^.]*.cxx" "${cmake_source_dir}/Source/cmBootstrapCommands1.cxx" | sed "s/.* \"\(.*\)\"/\1/"`; do
|
|
|
|
cmBootstrapCommands1Deps="${cmBootstrapCommands1Deps} `cmake_escape "${cmake_source_dir}/Source/$file"`"
|
2005-03-09 23:51:30 +03:00
|
|
|
done
|
2013-06-14 16:35:52 +04:00
|
|
|
cmBootstrapCommands1Deps=`echo $cmBootstrapCommands1Deps`
|
|
|
|
for file in `grep "#include.*cm[^.]*.cxx" "${cmake_source_dir}/Source/cmBootstrapCommands2.cxx" | sed "s/.* \"\(.*\)\"/\1/"`; do
|
|
|
|
cmBootstrapCommands2Deps="${cmBootstrapCommands2Deps} `cmake_escape "${cmake_source_dir}/Source/$file"`"
|
|
|
|
done
|
|
|
|
cmBootstrapCommands2Deps=`echo $cmBootstrapCommands2Deps`
|
2005-03-07 20:11:51 +03:00
|
|
|
|
2003-06-21 19:57:13 +04:00
|
|
|
if [ "x${cmake_ansi_cxx_flags}" != "x" ]; then
|
|
|
|
cmake_cxx_flags="${cmake_ansi_cxx_flags} ${cmake_cxx_flags}"
|
|
|
|
fi
|
|
|
|
|
2003-09-02 21:27:58 +04:00
|
|
|
if [ "x${cmake_c_flags}" != "x" ]; then
|
|
|
|
cmake_c_flags="${cmake_c_flags} "
|
|
|
|
fi
|
|
|
|
|
2003-06-21 19:57:13 +04:00
|
|
|
if [ "x${cmake_cxx_flags}" != "x" ]; then
|
|
|
|
cmake_cxx_flags="${cmake_cxx_flags} "
|
|
|
|
fi
|
|
|
|
|
2009-06-10 19:46:06 +04:00
|
|
|
cmake_c_flags_String="-DKWSYS_STRING_C"
|
2013-11-25 20:30:52 +04:00
|
|
|
if ${cmake_system_mingw}; then
|
|
|
|
cmake_c_flags_EncodingC="-DKWSYS_ENCODING_DEFAULT_CODEPAGE=CP_ACP"
|
|
|
|
fi
|
2013-06-03 18:34:35 +04:00
|
|
|
cmake_cxx_flags_SystemTools="
|
|
|
|
-DKWSYS_CXX_HAS_SETENV=${KWSYS_CXX_HAS_SETENV}
|
|
|
|
-DKWSYS_CXX_HAS_UNSETENV=${KWSYS_CXX_HAS_UNSETENV}
|
|
|
|
-DKWSYS_CXX_HAS_ENVIRON_IN_STDLIB_H=${KWSYS_CXX_HAS_ENVIRON_IN_STDLIB_H}
|
|
|
|
-DKWSYS_CXX_HAS_UTIMENSAT=${KWSYS_CXX_HAS_UTIMENSAT}
|
|
|
|
-DKWSYS_CXX_HAS_UTIMES=${KWSYS_CXX_HAS_UTIMES}
|
|
|
|
"
|
2009-11-10 16:09:54 +03:00
|
|
|
cmake_c_flags="${cmake_c_flags}-I`cmake_escape \"${cmake_bootstrap_dir}\"` -I`cmake_escape \"${cmake_source_dir}/Source\"` \
|
2015-12-17 23:03:42 +03:00
|
|
|
-I`cmake_escape \"${cmake_source_dir}/Utilities\"`"
|
2009-11-10 16:09:54 +03:00
|
|
|
cmake_cxx_flags="${cmake_cxx_flags} -I`cmake_escape \"${cmake_bootstrap_dir}\"` -I`cmake_escape \"${cmake_source_dir}/Source\"` \
|
2015-12-17 23:03:42 +03:00
|
|
|
-I`cmake_escape \"${cmake_source_dir}/Utilities\"`"
|
2003-03-27 23:29:38 +03:00
|
|
|
echo "cmake: ${objs}" > "${cmake_bootstrap_dir}/Makefile"
|
2006-04-13 19:00:52 +04:00
|
|
|
echo " ${cmake_cxx_compiler} ${cmake_ld_flags} ${cmake_cxx_flags} ${objs} -o cmake" >> "${cmake_bootstrap_dir}/Makefile"
|
2003-12-08 22:11:58 +03:00
|
|
|
for a in ${CMAKE_CXX_SOURCES}; do
|
2003-03-27 23:29:38 +03:00
|
|
|
src=`cmake_escape "${cmake_source_dir}/Source/${a}.cxx"`
|
|
|
|
echo "${a}.o : ${src} ${dep}" >> "${cmake_bootstrap_dir}/Makefile"
|
|
|
|
echo " ${cmake_cxx_compiler} ${cmake_cxx_flags} -c ${src} -o ${a}.o" >> "${cmake_bootstrap_dir}/Makefile"
|
|
|
|
done
|
2013-06-14 16:35:52 +04:00
|
|
|
echo "cmBootstrapCommands1.o : $cmBootstrapCommands1Deps" >> "${cmake_bootstrap_dir}/Makefile"
|
|
|
|
echo "cmBootstrapCommands2.o : $cmBootstrapCommands2Deps" >> "${cmake_bootstrap_dir}/Makefile"
|
2003-12-08 22:11:58 +03:00
|
|
|
for a in ${CMAKE_C_SOURCES}; do
|
|
|
|
src=`cmake_escape "${cmake_source_dir}/Source/${a}.c"`
|
|
|
|
echo "${a}.o : ${src} ${dep}" >> "${cmake_bootstrap_dir}/Makefile"
|
|
|
|
echo " ${cmake_c_compiler} ${cmake_c_flags} -c ${src} -o ${a}.o" >> "${cmake_bootstrap_dir}/Makefile"
|
|
|
|
done
|
2012-12-19 18:00:55 +04:00
|
|
|
for a in ${KWSYS_C_SOURCES}; do
|
2003-07-08 01:52:53 +04:00
|
|
|
src=`cmake_escape "${cmake_source_dir}/Source/kwsys/${a}.c"`
|
2009-06-10 19:46:06 +04:00
|
|
|
src_flags=`eval echo \\${cmake_c_flags_\${a}}`
|
2003-07-08 01:52:53 +04:00
|
|
|
echo "${a}.o : ${src} ${dep}" >> "${cmake_bootstrap_dir}/Makefile"
|
2009-06-10 19:46:06 +04:00
|
|
|
echo " ${cmake_c_compiler} ${cmake_c_flags} -DKWSYS_NAMESPACE=cmsys ${src_flags} -c ${src} -o ${a}.o" >> "${cmake_bootstrap_dir}/Makefile"
|
2003-07-08 01:52:53 +04:00
|
|
|
done
|
|
|
|
for a in ${KWSYS_CXX_SOURCES}; do
|
2003-06-23 16:58:58 +04:00
|
|
|
src=`cmake_escape "${cmake_source_dir}/Source/kwsys/${a}.cxx"`
|
2012-04-26 18:36:53 +04:00
|
|
|
src_flags=`eval echo \\${cmake_cxx_flags_\${a}}`
|
2003-06-23 16:58:58 +04:00
|
|
|
echo "${a}.o : ${src} ${dep}" >> "${cmake_bootstrap_dir}/Makefile"
|
2012-04-26 18:36:53 +04:00
|
|
|
echo " ${cmake_cxx_compiler} ${cmake_cxx_flags} -DKWSYS_NAMESPACE=cmsys ${src_flags} -c ${src} -o ${a}.o" >> "${cmake_bootstrap_dir}/Makefile"
|
2003-06-23 16:58:58 +04:00
|
|
|
done
|
2009-06-10 21:04:25 +04:00
|
|
|
echo '
|
2003-08-07 01:52:16 +04:00
|
|
|
rebuild_cache:
|
|
|
|
cd "${cmake_binary_dir}" && "${cmake_source_dir}/bootstrap"
|
2009-06-10 21:04:25 +04:00
|
|
|
' >> "${cmake_bootstrap_dir}/Makefile"
|
2003-03-27 23:29:38 +03:00
|
|
|
|
2009-06-10 21:04:25 +04:00
|
|
|
# Write our default settings to Bootstrap${_cmk}/InitialCacheFlags.cmake.
|
|
|
|
echo '
|
|
|
|
# Generated by '"${cmake_source_dir}"'/bootstrap
|
2003-07-23 16:37:44 +04:00
|
|
|
# Default cmake settings. These may be overridden any settings below.
|
2012-08-13 21:47:32 +04:00
|
|
|
set (CMAKE_INSTALL_PREFIX "'"${cmake_prefix_dir}"'" CACHE PATH "Install path prefix, prepended onto install directories." FORCE)
|
|
|
|
set (CMAKE_DOC_DIR "'"${cmake_doc_dir}"'" CACHE PATH "Install location for documentation (relative to prefix)." FORCE)
|
|
|
|
set (CMAKE_MAN_DIR "'"${cmake_man_dir}"'" CACHE PATH "Install location for man pages (relative to prefix)." FORCE)
|
2016-05-27 17:03:43 +03:00
|
|
|
set (CMAKE_BIN_DIR "'"${cmake_bin_dir}"'" CACHE PATH "Install location for binaries (relative to prefix)." FORCE)
|
2012-08-13 21:47:32 +04:00
|
|
|
set (CMAKE_DATA_DIR "'"${cmake_data_dir}"'" CACHE PATH "Install location for data (relative to prefix)." FORCE)
|
2015-12-21 18:02:11 +03:00
|
|
|
set (CMAKE_XDGDATA_DIR "'"${cmake_xdgdata_dir}"'" CACHE PATH "Install location for XDG specific files (relative to prefix)." FORCE)
|
2009-06-10 21:04:25 +04:00
|
|
|
' > "${cmake_bootstrap_dir}/InitialCacheFlags.cmake"
|
2003-07-22 00:38:53 +04:00
|
|
|
|
2008-02-13 22:47:03 +03:00
|
|
|
# Add configuration settings given as command-line options.
|
|
|
|
if [ "x${cmake_bootstrap_qt_gui}" != "x" ]; then
|
2009-06-10 21:04:25 +04:00
|
|
|
echo '
|
2012-08-13 21:47:32 +04:00
|
|
|
set (BUILD_QtDialog '"${cmake_bootstrap_qt_gui}"' CACHE BOOL "Build Qt dialog for CMake" FORCE)
|
2009-06-10 21:04:25 +04:00
|
|
|
' >> "${cmake_bootstrap_dir}/InitialCacheFlags.cmake"
|
2008-02-13 22:47:03 +03:00
|
|
|
fi
|
|
|
|
if [ "x${cmake_bootstrap_qt_qmake}" != "x" ]; then
|
2009-06-10 21:04:25 +04:00
|
|
|
echo '
|
2012-08-13 21:47:32 +04:00
|
|
|
set (QT_QMAKE_EXECUTABLE "'"${cmake_bootstrap_qt_qmake}"'" CACHE FILEPATH "Location of Qt qmake" FORCE)
|
2009-06-10 21:04:25 +04:00
|
|
|
' >> "${cmake_bootstrap_dir}/InitialCacheFlags.cmake"
|
2008-02-13 22:47:03 +03:00
|
|
|
fi
|
2013-09-18 00:08:05 +04:00
|
|
|
if [ "x${cmake_sphinx_man}" != "x" ]; then
|
|
|
|
echo '
|
2015-04-30 16:22:43 +03:00
|
|
|
set (SPHINX_MAN "'"${cmake_sphinx_man}"'" CACHE BOOL "Build man pages with Sphinx" FORCE)
|
2013-09-18 00:08:05 +04:00
|
|
|
' >> "${cmake_bootstrap_dir}/InitialCacheFlags.cmake"
|
|
|
|
fi
|
|
|
|
if [ "x${cmake_sphinx_html}" != "x" ]; then
|
|
|
|
echo '
|
2015-04-30 16:22:43 +03:00
|
|
|
set (SPHINX_HTML "'"${cmake_sphinx_html}"'" CACHE BOOL "Build html help with Sphinx" FORCE)
|
2013-09-18 00:08:05 +04:00
|
|
|
' >> "${cmake_bootstrap_dir}/InitialCacheFlags.cmake"
|
|
|
|
fi
|
2015-02-08 01:23:28 +03:00
|
|
|
if [ "x${cmake_sphinx_qthelp}" != "x" ]; then
|
|
|
|
echo '
|
2015-04-30 16:22:43 +03:00
|
|
|
set (SPHINX_QTHELP "'"${cmake_sphinx_qthelp}"'" CACHE BOOL "Build qch help with Sphinx" FORCE)
|
2015-02-08 01:23:28 +03:00
|
|
|
' >> "${cmake_bootstrap_dir}/InitialCacheFlags.cmake"
|
|
|
|
fi
|
2013-09-18 00:08:05 +04:00
|
|
|
if [ "x${cmake_sphinx_build}" != "x" ]; then
|
|
|
|
echo '
|
|
|
|
set (SPHINX_EXECUTABLE "'"${cmake_sphinx_build}"'" CACHE FILEPATH "Location of Qt sphinx-build" FORCE)
|
|
|
|
' >> "${cmake_bootstrap_dir}/InitialCacheFlags.cmake"
|
|
|
|
fi
|
2015-04-30 16:30:14 +03:00
|
|
|
if [ "x${cmake_sphinx_flags}" != "x" ]; then
|
|
|
|
echo '
|
|
|
|
set (SPHINX_FLAGS [==['"${cmake_sphinx_flags}"']==] CACHE STRING "Flags to pass to sphinx-build" FORCE)
|
|
|
|
' >> "${cmake_bootstrap_dir}/InitialCacheFlags.cmake"
|
|
|
|
fi
|
2008-02-13 22:47:03 +03:00
|
|
|
|
2003-07-23 16:37:44 +04:00
|
|
|
# Add user-specified settings. Handle relative-path case for
|
2003-07-22 00:38:53 +04:00
|
|
|
# specification of cmake_init_file.
|
|
|
|
(
|
|
|
|
cd "${cmake_binary_dir}"
|
|
|
|
if [ -f "${cmake_init_file}" ]; then
|
|
|
|
cat "${cmake_init_file}" >> "${cmake_bootstrap_dir}/InitialCacheFlags.cmake"
|
|
|
|
fi
|
|
|
|
)
|
|
|
|
|
2003-03-27 23:29:38 +03:00
|
|
|
echo "---------------------------------------------"
|
|
|
|
|
2003-05-15 17:35:16 +04:00
|
|
|
# Run make to build bootstrap cmake
|
2003-05-14 17:27:39 +04:00
|
|
|
if [ "x${cmake_parallel_make}" != "x" ]; then
|
2003-08-22 17:52:05 +04:00
|
|
|
${cmake_make_processor} ${cmake_make_flags}
|
2003-05-14 17:27:39 +04:00
|
|
|
else
|
|
|
|
${cmake_make_processor}
|
|
|
|
fi
|
2003-03-27 23:29:38 +03:00
|
|
|
RES=$?
|
|
|
|
if [ "${RES}" -ne "0" ]; then
|
2003-12-23 19:03:38 +03:00
|
|
|
cmake_error 9 "Problem while running ${cmake_make_processor}"
|
2003-03-27 23:29:38 +03:00
|
|
|
fi
|
|
|
|
cd "${cmake_binary_dir}"
|
2003-05-15 17:35:16 +04:00
|
|
|
|
|
|
|
# Set C, CXX, and MAKE environment variables, so that real real cmake will be
|
|
|
|
# build with same compiler and make
|
|
|
|
CC="${cmake_c_compiler}"
|
|
|
|
CXX="${cmake_cxx_compiler}"
|
2011-01-17 16:57:38 +03:00
|
|
|
if [ -n "${cmake_ccache_enabled}" ]; then
|
|
|
|
CC="ccache ${CC}"
|
|
|
|
CXX="ccache ${CXX}"
|
|
|
|
fi
|
2003-05-15 17:35:16 +04:00
|
|
|
MAKE="${cmake_make_processor}"
|
|
|
|
export CC
|
|
|
|
export CXX
|
|
|
|
export MAKE
|
|
|
|
|
|
|
|
# Run bootstrap CMake to configure real CMake
|
2011-01-17 16:44:04 +03:00
|
|
|
cmake_options="-DCMAKE_BOOTSTRAP=1"
|
|
|
|
if [ -n "${cmake_verbose}" ]; then
|
|
|
|
cmake_options="${cmake_options} -DCMAKE_VERBOSE_MAKEFILE=1"
|
|
|
|
fi
|
2011-12-16 20:29:26 +04:00
|
|
|
"${cmake_bootstrap_dir}/cmake" "${cmake_source_dir}" "-C${cmake_bootstrap_dir}/InitialCacheFlags.cmake" "-G${cmake_bootstrap_generator}" ${cmake_options} ${cmake_bootstrap_system_libs} "$@"
|
2005-03-04 18:03:38 +03:00
|
|
|
RES=$?
|
|
|
|
if [ "${RES}" -ne "0" ]; then
|
|
|
|
cmake_error 11 "Problem while running initial CMake"
|
|
|
|
fi
|
2003-03-27 23:29:38 +03:00
|
|
|
|
|
|
|
echo "---------------------------------------------"
|
|
|
|
|
2003-05-15 17:35:16 +04:00
|
|
|
# And we are done. Now just run make
|
2003-07-23 16:37:44 +04:00
|
|
|
echo "CMake has bootstrapped. Now run ${cmake_make_processor}."
|