#!/usr/bin/env python # @HEADER # ************************************************************************ # # TriBITS: Tribal Build, Integrate, and Test System # Copyright 2013 Sandia Corporation # # Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, # the U.S. Government retains certain rights in this software. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # 3. Neither the name of the Corporation nor the names of the # contributors may be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # # ************************************************************************ # @HEADER # # Defaults # cmakeBaseName = "cmake" cmakeDefaultVersion = "3.23.4" # # Script code # from InstallProgramDriver import * from GeneralScriptSupport import * import os.path devtools_install_dir = os.path.dirname(os.path.abspath(__file__)) class CMakeInstall: def __init__(self): self.dummy = None # # Called before even knowing the product version # def getScriptName(self): return "install-cmake.py" def getProductBaseName(self): return cmakeBaseName def getProductDefaultVersion(self): return cmakeDefaultVersion def getProductSupportedVersions(self): return [] # Support all versions! # # Called after knowing the product version but before parsing the # command-line. # def getProductName(self, version): return cmakeBaseName+"-"+version def getBaseDirName(self, version): return cmakeBaseName+"-"+version def getExtraHelpStr(self, version): return """ This script builds """+self.getProductName(version)+""" from source compiled with the configured C/C++ compilers in your path. To select a C and C++ compiler which is not the default in your path, run with: env CC= CXX= install-cmake.py [other options] This downloads tarballs from GitHub by default for the given cmake version. This build script sets the environment vars CXXFLAGS=-O3 AND CFLAGS=-O3 when doing the configure. Therefore, this builds and installs an optimized version of CMake by default. NOTE: To install CMake from the tip of a branch such as 'master', one must override the 'download' command and eliminate the 'untar' command. One must stick with the directory structure that is assumed by the underlying code which creates temp directories based in the CMake version. For example, to cone and install the tip of the CMake 'master' branch one can run: install-cmake.py \\ --install-dir=