cmake/Source/cmcmd.cxx

1868 lines
61 KiB
C++
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2014-08-03 19:52:23 +02:00
#include "cmcmd.h"
2016-07-09 11:21:54 +02:00
#include "cmAlgorithms.h"
2018-04-23 21:13:27 +02:00
#include "cmDuration.h"
2014-08-03 19:52:23 +02:00
#include "cmGlobalGenerator.h"
2016-07-09 11:21:54 +02:00
#include "cmLocalGenerator.h"
#include "cmMakefile.h"
2018-04-23 21:13:27 +02:00
#include "cmQtAutoGeneratorMocUic.h"
#include "cmQtAutoGeneratorRcc.h"
2017-04-14 19:02:05 +02:00
#include "cmStateDirectory.h"
#include "cmStateSnapshot.h"
2016-10-30 18:24:19 +01:00
#include "cmSystemTools.h"
#include "cmUtils.hxx"
2014-08-03 19:52:23 +02:00
#include "cmVersion.h"
2016-10-30 18:24:19 +01:00
#include "cmake.h"
2014-08-03 19:52:23 +02:00
#if defined(CMAKE_BUILD_WITH_CMAKE)
2016-07-09 11:21:54 +02:00
#include "cmDependsFortran.h" // For -E cmake_copy_f90_mod callback.
2018-01-26 17:06:56 +01:00
#include "cmServer.h"
#include "cmServerConnection.h"
2014-08-03 19:52:23 +02:00
#endif
2016-10-30 18:24:19 +01:00
#if defined(CMAKE_BUILD_WITH_CMAKE) && defined(_WIN32)
#include "bindexplib.h"
#endif
2014-08-03 19:52:23 +02:00
2016-10-30 18:24:19 +01:00
#if defined(CMAKE_BUILD_WITH_CMAKE) && defined(_WIN32) && !defined(__CYGWIN__)
2014-08-03 19:52:23 +02:00
#include "cmVisualStudioWCEPlatformParser.h"
#endif
2017-07-20 19:35:53 +02:00
#include "cmsys/Directory.hxx"
#include "cmsys/FStream.hxx"
#include "cmsys/Process.h"
#include "cmsys/Terminal.h"
2016-10-30 18:24:19 +01:00
#include <algorithm>
#include <iostream>
2018-04-23 21:13:27 +02:00
#include <iterator>
2018-01-26 17:06:56 +01:00
#include <memory> // IWYU pragma: keep
2016-10-30 18:24:19 +01:00
#include <sstream>
#include <stdio.h>
#include <stdlib.h>
2018-01-26 17:06:56 +01:00
#include <string.h>
2014-08-03 19:52:23 +02:00
#include <time.h>
2018-01-26 17:06:56 +01:00
class cmConnection;
2016-10-30 18:24:19 +01:00
int cmcmd_cmake_ninja_depends(std::vector<std::string>::const_iterator argBeg,
std::vector<std::string>::const_iterator argEnd);
int cmcmd_cmake_ninja_dyndep(std::vector<std::string>::const_iterator argBeg,
std::vector<std::string>::const_iterator argEnd);
2014-08-03 19:52:23 +02:00
void CMakeCommandUsage(const char* program)
{
2015-04-27 22:25:09 +02:00
std::ostringstream errorStream;
2014-08-03 19:52:23 +02:00
#ifdef CMAKE_BUILD_WITH_CMAKE
2016-07-09 11:21:54 +02:00
/* clang-format off */
2014-08-03 19:52:23 +02:00
errorStream
<< "cmake version " << cmVersion::GetCMakeVersion() << "\n";
2016-07-09 11:21:54 +02:00
/* clang-format on */
2014-08-03 19:52:23 +02:00
#else
2016-07-09 11:21:54 +02:00
/* clang-format off */
2014-08-03 19:52:23 +02:00
errorStream
<< "cmake bootstrap\n";
2016-07-09 11:21:54 +02:00
/* clang-format on */
2014-08-03 19:52:23 +02:00
#endif
// If you add new commands, change here,
// and in cmakemain.cxx in the options table
2016-07-09 11:21:54 +02:00
/* clang-format off */
2014-08-03 19:52:23 +02:00
errorStream
2016-03-13 13:35:51 +01:00
<< "Usage: " << program << " -E <command> [arguments...]\n"
2014-08-03 19:52:23 +02:00
<< "Available commands: \n"
2016-10-30 18:24:19 +01:00
<< " capabilities - Report capabilities built into cmake "
"in JSON format\n"
2016-03-13 13:35:51 +01:00
<< " chdir dir cmd [args...] - run command in a given directory\n"
2014-08-03 19:52:23 +02:00
<< " compare_files file1 file2 - check if file1 is same as file2\n"
2016-03-13 13:35:51 +01:00
<< " copy <file>... destination - copy files to destination "
"(either file or directory)\n"
<< " copy_directory <dir>... destination - copy content of <dir>... "
"directories to 'destination' directory\n"
<< " copy_if_different <file>... destination - copy files if it has "
2014-08-03 19:52:23 +02:00
"changed\n"
2016-03-13 13:35:51 +01:00
<< " echo [<string>...] - displays arguments as text\n"
<< " echo_append [<string>...] - displays arguments as text but no new "
2014-08-03 19:52:23 +02:00
"line\n"
2015-04-27 22:25:09 +02:00
<< " env [--unset=NAME]... [NAME=VALUE]... COMMAND [ARG]...\n"
<< " - run command in a modified environment\n"
2014-08-03 19:52:23 +02:00
<< " environment - display the current environment\n"
2016-03-13 13:35:51 +01:00
<< " make_directory <dir>... - create parent and <dir> directories\n"
2016-07-09 11:21:54 +02:00
<< " md5sum <file>... - create MD5 checksum of files\n"
2018-01-26 17:06:56 +01:00
<< " sha1sum <file>... - create SHA1 checksum of files\n"
<< " sha224sum <file>... - create SHA224 checksum of files\n"
<< " sha256sum <file>... - create SHA256 checksum of files\n"
<< " sha384sum <file>... - create SHA384 checksum of files\n"
<< " sha512sum <file>... - create SHA512 checksum of files\n"
2016-03-13 13:35:51 +01:00
<< " remove [-f] <file>... - remove the file(s), use -f to force "
2014-08-03 19:52:23 +02:00
"it\n"
<< " remove_directory dir - remove a directory and its contents\n"
<< " rename oldname newname - rename a file or directory "
"(on one volume)\n"
2016-10-30 18:24:19 +01:00
<< " server - start cmake in server mode\n"
<< " sleep <number>... - sleep for given number of seconds\n"
2015-04-27 22:25:09 +02:00
<< " tar [cxt][vf][zjJ] file.tar [file/dir1 file/dir2 ...]\n"
2014-08-03 19:52:23 +02:00
<< " - create or extract a tar or zip archive\n"
2018-04-23 21:13:27 +02:00
<< " time command [args...] - run command and display elapsed time\n"
2014-08-03 19:52:23 +02:00
<< " touch file - touch a file.\n"
<< " touch_nocreate file - touch a file but do not create it.\n"
#if defined(_WIN32) && !defined(__CYGWIN__)
<< "Available on Windows only:\n"
<< " delete_regv key - delete registry value\n"
<< " env_vs8_wince sdkname - displays a batch file which sets the "
"environment for the provided Windows CE SDK installed in VS2005\n"
<< " env_vs9_wince sdkname - displays a batch file which sets the "
"environment for the provided Windows CE SDK installed in VS2008\n"
<< " write_regv key value - write registry value\n"
#else
<< "Available on UNIX only:\n"
<< " create_symlink old new - create a symbolic link new -> old\n"
#endif
;
2016-07-09 11:21:54 +02:00
/* clang-format on */
2014-08-03 19:52:23 +02:00
cmSystemTools::Error(errorStream.str().c_str());
}
2015-04-27 22:25:09 +02:00
static bool cmTarFilesFrom(std::string const& file,
std::vector<std::string>& files)
{
2016-07-09 11:21:54 +02:00
if (cmSystemTools::FileIsDirectory(file)) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
e << "-E tar --files-from= file '" << file << "' is a directory";
cmSystemTools::Error(e.str().c_str());
return false;
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
cmsys::ifstream fin(file.c_str());
2016-07-09 11:21:54 +02:00
if (!fin) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
e << "-E tar --files-from= file '" << file << "' not found";
cmSystemTools::Error(e.str().c_str());
return false;
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
std::string line;
2016-07-09 11:21:54 +02:00
while (cmSystemTools::GetLineFromStream(fin, line)) {
if (line.empty()) {
2015-04-27 22:25:09 +02:00
continue;
2016-07-09 11:21:54 +02:00
}
if (cmHasLiteralPrefix(line, "--add-file=")) {
2015-04-27 22:25:09 +02:00
files.push_back(line.substr(11));
2016-07-09 11:21:54 +02:00
} else if (cmHasLiteralPrefix(line, "-")) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
e << "-E tar --files-from='" << file << "' file invalid line:\n"
<< line << "\n";
cmSystemTools::Error(e.str().c_str());
return false;
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
files.push_back(line);
}
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
return true;
}
2018-01-26 17:06:56 +01:00
static int HandleIWYU(const std::string& runCmd,
const std::string& /* sourceFile */,
const std::vector<std::string>& orig_cmd)
{
// Construct the iwyu command line by taking what was given
// and adding all the arguments we give to the compiler.
std::vector<std::string> iwyu_cmd;
cmSystemTools::ExpandListArgument(runCmd, iwyu_cmd, true);
iwyu_cmd.insert(iwyu_cmd.end(), orig_cmd.begin() + 1, orig_cmd.end());
// Run the iwyu command line. Capture its stderr and hide its stdout.
// Ignore its return code because the tool always returns non-zero.
std::string stdErr;
int ret;
if (!cmSystemTools::RunSingleCommand(iwyu_cmd, nullptr, &stdErr, &ret,
nullptr, cmSystemTools::OUTPUT_NONE)) {
std::cerr << "Error running '" << iwyu_cmd[0] << "': " << stdErr << "\n";
return 1;
}
// Warn if iwyu reported anything.
if (stdErr.find("should remove these lines:") != std::string::npos ||
stdErr.find("should add these lines:") != std::string::npos) {
std::cerr << "Warning: include-what-you-use reported diagnostics:\n"
<< stdErr << "\n";
}
// always return 0 we don't want to break the compile
return 0;
}
static int HandleTidy(const std::string& runCmd, const std::string& sourceFile,
const std::vector<std::string>& orig_cmd)
{
// Construct the clang-tidy command line by taking what was given
// and adding our compiler command line. The clang-tidy tool will
// automatically skip over the compiler itself and extract the
// options.
int ret;
std::vector<std::string> tidy_cmd;
cmSystemTools::ExpandListArgument(runCmd, tidy_cmd, true);
tidy_cmd.push_back(sourceFile);
tidy_cmd.push_back("--");
tidy_cmd.insert(tidy_cmd.end(), orig_cmd.begin(), orig_cmd.end());
// Run the tidy command line. Capture its stdout and hide its stderr.
std::string stdOut;
std::string stdErr;
if (!cmSystemTools::RunSingleCommand(tidy_cmd, &stdOut, &stdErr, &ret,
nullptr, cmSystemTools::OUTPUT_NONE)) {
std::cerr << "Error running '" << tidy_cmd[0] << "': " << stdErr << "\n";
return 1;
}
// Output the stdout from clang-tidy to stderr
std::cerr << stdOut;
// If clang-tidy exited with an error do the same.
if (ret != 0) {
std::cerr << stdErr;
}
return ret;
}
static int HandleLWYU(const std::string& runCmd,
const std::string& /* sourceFile */,
const std::vector<std::string>&)
{
// Construct the ldd -r -u (link what you use lwyu) command line
// ldd -u -r lwuy target
std::vector<std::string> lwyu_cmd;
lwyu_cmd.push_back("ldd");
lwyu_cmd.push_back("-u");
lwyu_cmd.push_back("-r");
lwyu_cmd.push_back(runCmd);
// Run the ldd -u -r command line.
// Capture its stdout and hide its stderr.
// Ignore its return code because the tool always returns non-zero
// if there are any warnings, but we just want to warn.
std::string stdOut;
std::string stdErr;
int ret;
if (!cmSystemTools::RunSingleCommand(lwyu_cmd, &stdOut, &stdErr, &ret,
nullptr, cmSystemTools::OUTPUT_NONE)) {
std::cerr << "Error running '" << lwyu_cmd[0] << "': " << stdErr << "\n";
return 1;
}
// Output the stdout from ldd -r -u to stderr
// Warn if lwyu reported anything.
if (stdOut.find("Unused direct dependencies:") != std::string::npos) {
std::cerr << "Warning: " << stdOut;
}
return 0;
}
static int HandleCppLint(const std::string& runCmd,
const std::string& sourceFile,
const std::vector<std::string>&)
{
// Construct the cpplint command line.
std::vector<std::string> cpplint_cmd;
cmSystemTools::ExpandListArgument(runCmd, cpplint_cmd, true);
cpplint_cmd.push_back(sourceFile);
// Run the cpplint command line. Capture its output.
std::string stdOut;
int ret;
if (!cmSystemTools::RunSingleCommand(cpplint_cmd, &stdOut, &stdOut, &ret,
nullptr, cmSystemTools::OUTPUT_NONE)) {
std::cerr << "Error running '" << cpplint_cmd[0] << "': " << stdOut
<< "\n";
return 1;
}
2018-04-23 21:13:27 +02:00
std::cerr << "Warning: cpplint diagnostics:\n";
2018-01-26 17:06:56 +01:00
// Output the output from cpplint to stderr
std::cerr << stdOut;
2018-04-23 21:13:27 +02:00
// always return 0 so the build can continue as cpplint returns non-zero
// for any warning
return 0;
2018-01-26 17:06:56 +01:00
}
static int HandleCppCheck(const std::string& runCmd,
const std::string& sourceFile,
const std::vector<std::string>& orig_cmd)
{
// Construct the cpplint command line.
std::vector<std::string> cppcheck_cmd;
cmSystemTools::ExpandListArgument(runCmd, cppcheck_cmd, true);
// extract all the -D, -U, and -I options from the compile line
for (auto const& opt : orig_cmd) {
if (opt.size() > 2) {
if ((opt[0] == '-') &&
((opt[1] == 'D') || (opt[1] == 'I') || (opt[1] == 'U'))) {
cppcheck_cmd.push_back(opt);
// convert cl / options to - options if needed
#if defined(_WIN32)
} else if ((opt[0] == '/') &&
((opt[1] == 'D') || (opt[1] == 'I') || (opt[1] == 'U'))) {
std::string optcopy = opt;
optcopy[0] = '-';
cppcheck_cmd.push_back(optcopy);
#endif
}
}
}
// add the source file
cppcheck_cmd.push_back(sourceFile);
// Run the cpplint command line. Capture its output.
std::string stdOut;
std::string stdErr;
int ret;
if (!cmSystemTools::RunSingleCommand(cppcheck_cmd, &stdOut, &stdErr, &ret,
nullptr, cmSystemTools::OUTPUT_NONE)) {
std::cerr << "Error running '" << cppcheck_cmd[0] << "': " << stdOut
<< "\n";
return 1;
}
std::cerr << stdOut;
// Output the output from cpplint to stderr
if (stdErr.find("(error)") != std::string::npos ||
stdErr.find("(warning)") != std::string::npos ||
stdErr.find("(style)") != std::string::npos ||
stdErr.find("(performance)") != std::string::npos ||
stdErr.find("(portability)") != std::string::npos ||
stdErr.find("(information)") != std::string::npos) {
std::cerr << "Warning: cppcheck reported diagnostics:\n";
}
std::cerr << stdErr;
// ignore errors so build continues
return 0;
}
typedef int (*CoCompileHandler)(const std::string&, const std::string&,
const std::vector<std::string>&);
struct CoCompiler
{
const char* Option;
CoCompileHandler Handler;
bool NoOriginalCommand;
};
static CoCompiler CoCompilers[] = { // Table of options and handlers.
{ "--cppcheck=", HandleCppCheck, false },
{ "--cpplint=", HandleCppLint, false },
{ "--iwyu=", HandleIWYU, false },
{ "--lwyu=", HandleLWYU, true },
{ "--tidy=", HandleTidy, false }
};
struct CoCompileJob
{
std::string Command;
CoCompileHandler Handler;
};
// called when args[0] == "__run_co_compile"
int cmcmd::HandleCoCompileCommands(std::vector<std::string>& args)
{
std::vector<CoCompileJob> jobs;
std::string sourceFile; // store --source=
// Default is to run the original command found after -- if the option
// does not need to do that, it should be specified here, currently only
// lwyu does that.
bool runOriginalCmd = true;
std::vector<std::string> orig_cmd;
bool doing_options = true;
for (std::string::size_type i = 2; i < args.size(); ++i) {
std::string const& arg = args[i];
// if the arg is -- then the rest of the args after
// go into orig_cmd
if (arg == "--") {
doing_options = false;
} else if (doing_options) {
bool optionFound = false;
2018-04-23 21:13:27 +02:00
for (CoCompiler const* cc = cm::cbegin(CoCompilers);
cc != cm::cend(CoCompilers); ++cc) {
2018-01-26 17:06:56 +01:00
size_t optionLen = strlen(cc->Option);
if (arg.compare(0, optionLen, cc->Option) == 0) {
optionFound = true;
CoCompileJob job;
job.Command = arg.substr(optionLen);
job.Handler = cc->Handler;
jobs.push_back(std::move(job));
if (cc->NoOriginalCommand) {
runOriginalCmd = false;
}
}
}
if (cmHasLiteralPrefix(arg, "--source=")) {
sourceFile = arg.substr(9);
optionFound = true;
}
// if it was not a co-compiler or --source then error
if (!optionFound) {
std::cerr << "__run_co_compile given unknown argument: " << arg
<< "\n";
return 1;
}
} else { // if not doing_options then push to orig_cmd
orig_cmd.push_back(arg);
}
}
if (jobs.empty()) {
std::cerr << "__run_co_compile missing command to run. "
"Looking for one or more of the following:\n";
2018-04-23 21:13:27 +02:00
for (CoCompiler const* cc = cm::cbegin(CoCompilers);
cc != cm::cend(CoCompilers); ++cc) {
2018-01-26 17:06:56 +01:00
std::cerr << cc->Option << "\n";
}
return 1;
}
if (runOriginalCmd && orig_cmd.empty()) {
std::cerr << "__run_co_compile missing compile command after --\n";
return 1;
}
for (CoCompileJob const& job : jobs) {
// call the command handler here
int ret = job.Handler(job.Command, sourceFile, orig_cmd);
// if the command returns non-zero then return and fail.
// for commands that do not want to break the build, they should return
// 0 no matter what.
if (ret != 0) {
return ret;
}
}
// if there is no original command to run return now
if (!runOriginalCmd) {
return 0;
}
// Now run the real compiler command and return its result value
int ret;
if (!cmSystemTools::RunSingleCommand(orig_cmd, nullptr, nullptr, &ret,
nullptr,
cmSystemTools::OUTPUT_PASSTHROUGH)) {
std::cerr << "Error running '" << orig_cmd[0] << "'\n";
return 1;
}
// return the return value from the original compiler command
return ret;
}
2014-08-03 19:52:23 +02:00
int cmcmd::ExecuteCMakeCommand(std::vector<std::string>& args)
{
// IF YOU ADD A NEW COMMAND, DOCUMENT IT ABOVE and in cmakemain.cxx
2016-07-09 11:21:54 +02:00
if (args.size() > 1) {
2014-08-03 19:52:23 +02:00
// Copy file
2016-07-09 11:21:54 +02:00
if (args[1] == "copy" && args.size() > 3) {
2016-03-13 13:35:51 +01:00
// If multiple source files specified,
// then destination must be directory
if ((args.size() > 4) &&
2016-07-09 11:21:54 +02:00
(!cmSystemTools::FileIsDirectory(args[args.size() - 1]))) {
2016-03-13 13:35:51 +01:00
std::cerr << "Error: Target (for copy command) \""
2016-07-09 11:21:54 +02:00
<< args[args.size() - 1] << "\" is not a directory.\n";
2014-08-03 19:52:23 +02:00
return 1;
2016-07-09 11:21:54 +02:00
}
2016-03-13 13:35:51 +01:00
// If error occurs we want to continue copying next files.
2017-04-14 19:02:05 +02:00
bool return_value = false;
2016-07-09 11:21:54 +02:00
for (std::string::size_type cc = 2; cc < args.size() - 1; cc++) {
if (!cmSystemTools::cmCopyFile(args[cc].c_str(),
args[args.size() - 1].c_str())) {
std::cerr << "Error copying file \"" << args[cc] << "\" to \""
<< args[args.size() - 1] << "\".\n";
2017-04-14 19:02:05 +02:00
return_value = true;
2016-03-13 13:35:51 +01:00
}
2014-08-03 19:52:23 +02:00
}
2016-07-09 11:21:54 +02:00
return return_value;
}
2014-08-03 19:52:23 +02:00
// Copy file if different.
2016-07-09 11:21:54 +02:00
if (args[1] == "copy_if_different" && args.size() > 3) {
2016-03-13 13:35:51 +01:00
// If multiple source files specified,
// then destination must be directory
if ((args.size() > 4) &&
2016-07-09 11:21:54 +02:00
(!cmSystemTools::FileIsDirectory(args[args.size() - 1]))) {
2016-03-13 13:35:51 +01:00
std::cerr << "Error: Target (for copy_if_different command) \""
2016-07-09 11:21:54 +02:00
<< args[args.size() - 1] << "\" is not a directory.\n";
2014-08-03 19:52:23 +02:00
return 1;
2016-07-09 11:21:54 +02:00
}
2016-03-13 13:35:51 +01:00
// If error occurs we want to continue copying next files.
2017-04-14 19:02:05 +02:00
bool return_value = false;
2016-07-09 11:21:54 +02:00
for (std::string::size_type cc = 2; cc < args.size() - 1; cc++) {
if (!cmSystemTools::CopyFileIfDifferent(
args[cc].c_str(), args[args.size() - 1].c_str())) {
std::cerr << "Error copying file (if different) from \"" << args[cc]
<< "\" to \"" << args[args.size() - 1] << "\".\n";
2017-04-14 19:02:05 +02:00
return_value = true;
2016-03-13 13:35:51 +01:00
}
2014-08-03 19:52:23 +02:00
}
2016-07-09 11:21:54 +02:00
return return_value;
}
2014-08-03 19:52:23 +02:00
// Copy directory content
2016-07-09 11:21:54 +02:00
if (args[1] == "copy_directory" && args.size() > 3) {
2016-03-13 13:35:51 +01:00
// If error occurs we want to continue copying next files.
2017-04-14 19:02:05 +02:00
bool return_value = false;
2016-07-09 11:21:54 +02:00
for (std::string::size_type cc = 2; cc < args.size() - 1; cc++) {
if (!cmSystemTools::CopyADirectory(args[cc], args[args.size() - 1])) {
std::cerr << "Error copying directory from \"" << args[cc]
<< "\" to \"" << args[args.size() - 1] << "\".\n";
2017-04-14 19:02:05 +02:00
return_value = true;
2014-08-03 19:52:23 +02:00
}
}
2016-07-09 11:21:54 +02:00
return return_value;
}
2014-08-03 19:52:23 +02:00
// Rename a file or directory
2016-07-09 11:21:54 +02:00
if (args[1] == "rename" && args.size() == 4) {
if (!cmSystemTools::RenameFile(args[2].c_str(), args[3].c_str())) {
2014-08-03 19:52:23 +02:00
std::string e = cmSystemTools::GetLastSystemError();
2016-07-09 11:21:54 +02:00
std::cerr << "Error renaming from \"" << args[2] << "\" to \""
<< args[3] << "\": " << e << "\n";
2014-08-03 19:52:23 +02:00
return 1;
}
2016-07-09 11:21:54 +02:00
return 0;
}
2014-08-03 19:52:23 +02:00
// Compare files
2016-07-09 11:21:54 +02:00
if (args[1] == "compare_files" && args.size() == 4) {
if (cmSystemTools::FilesDiffer(args[2], args[3])) {
std::cerr << "Files \"" << args[2] << "\" to \"" << args[3]
2014-08-03 19:52:23 +02:00
<< "\" are different.\n";
return 1;
}
2016-07-09 11:21:54 +02:00
return 0;
}
2014-08-03 19:52:23 +02:00
2015-11-17 17:22:37 +01:00
#if defined(_WIN32) && defined(CMAKE_BUILD_WITH_CMAKE)
2016-07-09 11:21:54 +02:00
else if (args[1] == "__create_def") {
if (args.size() < 4) {
std::cerr
<< "__create_def Usage: -E __create_def outfile.def objlistfile\n";
2015-11-17 17:22:37 +01:00
return 1;
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
FILE* fout = cmsys::SystemTools::Fopen(args[2].c_str(), "w+");
2016-07-09 11:21:54 +02:00
if (!fout) {
2015-11-17 17:22:37 +01:00
std::cerr << "could not open output .def file: " << args[2].c_str()
<< "\n";
return 1;
2016-07-09 11:21:54 +02:00
}
cmsys::ifstream fin(args[3].c_str(), std::ios::in | std::ios::binary);
if (!fin) {
2015-11-17 17:22:37 +01:00
std::cerr << "could not open object list file: " << args[3].c_str()
<< "\n";
return 1;
2016-07-09 11:21:54 +02:00
}
2017-07-20 19:35:53 +02:00
std::string file;
2016-03-13 13:35:51 +01:00
bindexplib deffile;
2017-07-20 19:35:53 +02:00
while (cmSystemTools::GetLineFromStream(fin, file)) {
std::string const& ext = cmSystemTools::GetFilenameLastExtension(file);
if (cmSystemTools::LowerCase(ext) == ".def") {
if (!deffile.AddDefinitionFile(file.c_str())) {
return 1;
}
} else {
if (!deffile.AddObjectFile(file.c_str())) {
return 1;
}
2015-11-17 17:22:37 +01:00
}
2016-07-09 11:21:54 +02:00
}
2016-03-13 13:35:51 +01:00
deffile.WriteFile(fout);
fclose(fout);
2015-11-17 17:22:37 +01:00
return 0;
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
#endif
2018-01-26 17:06:56 +01:00
if (args[1] == "__run_co_compile") {
return cmcmd::HandleCoCompileCommands(args);
2016-07-09 11:21:54 +02:00
}
2015-08-17 11:37:30 +02:00
// Echo string
2016-10-30 18:24:19 +01:00
if (args[1] == "echo") {
2015-11-17 17:22:37 +01:00
std::cout << cmJoin(cmMakeRange(args).advance(2), " ") << std::endl;
2014-08-03 19:52:23 +02:00
return 0;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
// Echo string no new line
2016-10-30 18:24:19 +01:00
if (args[1] == "echo_append") {
2015-11-17 17:22:37 +01:00
std::cout << cmJoin(cmMakeRange(args).advance(2), " ");
2014-08-03 19:52:23 +02:00
return 0;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
2017-04-14 19:02:05 +02:00
if (args[1] == "env") {
2015-04-27 22:25:09 +02:00
std::vector<std::string>::const_iterator ai = args.begin() + 2;
std::vector<std::string>::const_iterator ae = args.end();
2016-07-09 11:21:54 +02:00
for (; ai != ae; ++ai) {
2015-04-27 22:25:09 +02:00
std::string const& a = *ai;
2016-07-09 11:21:54 +02:00
if (cmHasLiteralPrefix(a, "--unset=")) {
2015-04-27 22:25:09 +02:00
// Unset environment variable.
cmSystemTools::UnPutEnv(a.c_str() + 8);
2016-07-09 11:21:54 +02:00
} else if (!a.empty() && a[0] == '-') {
2015-04-27 22:25:09 +02:00
// Environment variable and command names cannot start in '-',
// so this must be an unknown option.
std::cerr << "cmake -E env: unknown option '" << a << "'"
<< std::endl;
return 1;
2017-07-20 19:35:53 +02:00
} else if (a.find('=') != std::string::npos) {
2015-04-27 22:25:09 +02:00
// Set environment variable.
cmSystemTools::PutEnv(a);
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
// This is the beginning of the command.
break;
}
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
2016-07-09 11:21:54 +02:00
if (ai == ae) {
2015-04-27 22:25:09 +02:00
std::cerr << "cmake -E env: no command given" << std::endl;
return 1;
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
// Execute command from remaining arguments.
std::vector<std::string> cmd(ai, ae);
int retval;
2018-01-26 17:06:56 +01:00
if (cmSystemTools::RunSingleCommand(cmd, nullptr, nullptr, &retval,
nullptr,
2016-07-09 11:21:54 +02:00
cmSystemTools::OUTPUT_PASSTHROUGH)) {
2015-04-27 22:25:09 +02:00
return retval;
}
2016-07-09 11:21:54 +02:00
return 1;
}
2015-04-27 22:25:09 +02:00
2014-08-03 19:52:23 +02:00
#if defined(CMAKE_BUILD_WITH_CMAKE)
2017-04-14 19:02:05 +02:00
if (args[1] == "environment") {
2014-08-03 19:52:23 +02:00
std::vector<std::string> env = cmSystemTools::GetEnvironmentVariables();
std::vector<std::string>::iterator it;
2016-07-09 11:21:54 +02:00
for (it = env.begin(); it != env.end(); ++it) {
2015-04-27 22:25:09 +02:00
std::cout << *it << std::endl;
2014-08-03 19:52:23 +02:00
}
2016-07-09 11:21:54 +02:00
return 0;
}
2014-08-03 19:52:23 +02:00
#endif
2017-04-14 19:02:05 +02:00
if (args[1] == "make_directory" && args.size() > 2) {
2016-03-13 13:35:51 +01:00
// If error occurs we want to continue copying next files.
2017-04-14 19:02:05 +02:00
bool return_value = false;
2016-07-09 11:21:54 +02:00
for (std::string::size_type cc = 2; cc < args.size(); cc++) {
2018-04-23 21:13:27 +02:00
if (!cmSystemTools::MakeDirectory(args[cc])) {
2016-07-09 11:21:54 +02:00
std::cerr << "Error creating directory \"" << args[cc] << "\".\n";
2017-04-14 19:02:05 +02:00
return_value = true;
2014-08-03 19:52:23 +02:00
}
}
2016-07-09 11:21:54 +02:00
return return_value;
}
2014-08-03 19:52:23 +02:00
2017-04-14 19:02:05 +02:00
if (args[1] == "remove_directory" && args.size() == 3) {
2016-07-09 11:21:54 +02:00
if (cmSystemTools::FileIsDirectory(args[2]) &&
!cmSystemTools::RemoveADirectory(args[2])) {
std::cerr << "Error removing directory \"" << args[2] << "\".\n";
2014-08-03 19:52:23 +02:00
return 1;
}
2016-07-09 11:21:54 +02:00
return 0;
}
2014-08-03 19:52:23 +02:00
// Remove file
2017-04-14 19:02:05 +02:00
if (args[1] == "remove" && args.size() > 2) {
2014-08-03 19:52:23 +02:00
bool force = false;
2016-07-09 11:21:54 +02:00
for (std::string::size_type cc = 2; cc < args.size(); cc++) {
if (args[cc] == "\\-f" || args[cc] == "-f") {
2014-08-03 19:52:23 +02:00
force = true;
2016-07-09 11:21:54 +02:00
} else {
2014-08-03 19:52:23 +02:00
// Complain if the file could not be removed, still exists,
// and the -f option was not given.
2016-07-09 11:21:54 +02:00
if (!cmSystemTools::RemoveFile(args[cc]) && !force &&
2018-04-23 21:13:27 +02:00
cmSystemTools::FileExists(args[cc])) {
2014-08-03 19:52:23 +02:00
return 1;
}
}
}
2016-07-09 11:21:54 +02:00
return 0;
}
2017-04-14 19:02:05 +02:00
2014-08-03 19:52:23 +02:00
// Touch file
2017-04-14 19:02:05 +02:00
if (args[1] == "touch" && args.size() > 2) {
2016-07-09 11:21:54 +02:00
for (std::string::size_type cc = 2; cc < args.size(); cc++) {
if (!cmSystemTools::Touch(args[cc], true)) {
2014-08-03 19:52:23 +02:00
return 1;
}
}
2016-07-09 11:21:54 +02:00
return 0;
}
2017-04-14 19:02:05 +02:00
2014-08-03 19:52:23 +02:00
// Touch file
2017-04-14 19:02:05 +02:00
if (args[1] == "touch_nocreate" && args.size() > 2) {
2016-07-09 11:21:54 +02:00
for (std::string::size_type cc = 2; cc < args.size(); cc++) {
2014-08-03 19:52:23 +02:00
// Complain if the file could not be removed, still exists,
// and the -f option was not given.
2016-07-09 11:21:54 +02:00
if (!cmSystemTools::Touch(args[cc], false)) {
2014-08-03 19:52:23 +02:00
return 1;
}
}
2016-07-09 11:21:54 +02:00
return 0;
}
2017-04-14 19:02:05 +02:00
2016-10-30 18:24:19 +01:00
// capabilities
2017-04-14 19:02:05 +02:00
if (args[1] == "capabilities") {
2016-10-30 18:24:19 +01:00
if (args.size() > 2) {
std::cerr << "-E capabilities accepts no additional arguments\n";
return 1;
}
2017-07-20 19:35:53 +02:00
cmake cm(cmake::RoleInternal);
2018-01-26 17:06:56 +01:00
#if defined(CMAKE_BUILD_WITH_CMAKE)
2016-10-30 18:24:19 +01:00
std::cout << cm.ReportCapabilities(true);
#else
std::cout << cm.ReportCapabilities(false);
#endif
return 0;
}
2014-08-03 19:52:23 +02:00
// Sleep command
2017-04-14 19:02:05 +02:00
if (args[1] == "sleep" && args.size() > 2) {
2014-08-03 19:52:23 +02:00
double total = 0;
2016-07-09 11:21:54 +02:00
for (size_t i = 2; i < args.size(); ++i) {
2014-08-03 19:52:23 +02:00
double num = 0.0;
char unit;
char extra;
int n = sscanf(args[i].c_str(), "%lg%c%c", &num, &unit, &extra);
2016-07-09 11:21:54 +02:00
if ((n == 1 || (n == 2 && unit == 's')) && num >= 0) {
2014-08-03 19:52:23 +02:00
total += num;
2016-07-09 11:21:54 +02:00
} else {
2014-08-03 19:52:23 +02:00
std::cerr << "Unknown sleep time format \"" << args[i] << "\".\n";
return 1;
}
}
2016-07-09 11:21:54 +02:00
if (total > 0) {
cmSystemTools::Delay(static_cast<unsigned int>(total * 1000));
}
return 0;
}
2014-08-03 19:52:23 +02:00
// Clock command
2017-04-14 19:02:05 +02:00
if (args[1] == "time" && args.size() > 2) {
2016-07-09 11:21:54 +02:00
std::vector<std::string> command(args.begin() + 2, args.end());
2014-08-03 19:52:23 +02:00
clock_t clock_start, clock_finish;
time_t time_start, time_finish;
time(&time_start);
clock_start = clock();
2016-07-09 11:21:54 +02:00
int ret = 0;
2018-01-26 17:06:56 +01:00
cmSystemTools::RunSingleCommand(command, nullptr, nullptr, &ret);
2014-08-03 19:52:23 +02:00
clock_finish = clock();
time(&time_finish);
double clocks_per_sec = static_cast<double>(CLOCKS_PER_SEC);
std::cout << "Elapsed time: "
2016-07-09 11:21:54 +02:00
<< static_cast<long>(time_finish - time_start) << " s. (time)"
<< ", "
<< static_cast<double>(clock_finish - clock_start) /
clocks_per_sec
<< " s. (clock)"
<< "\n";
2014-08-03 19:52:23 +02:00
return ret;
2016-07-09 11:21:54 +02:00
}
2017-04-14 19:02:05 +02:00
2014-08-03 19:52:23 +02:00
// Command to calculate the md5sum of a file
2017-04-14 19:02:05 +02:00
if (args[1] == "md5sum" && args.size() >= 3) {
2018-01-26 17:06:56 +01:00
return HashSumFile(args, cmCryptoHash::AlgoMD5);
}
// Command to calculate the sha1sum of a file
if (args[1] == "sha1sum" && args.size() >= 3) {
return HashSumFile(args, cmCryptoHash::AlgoSHA1);
}
if (args[1] == "sha224sum" && args.size() >= 3) {
return HashSumFile(args, cmCryptoHash::AlgoSHA224);
}
if (args[1] == "sha256sum" && args.size() >= 3) {
return HashSumFile(args, cmCryptoHash::AlgoSHA256);
}
if (args[1] == "sha384sum" && args.size() >= 3) {
return HashSumFile(args, cmCryptoHash::AlgoSHA384);
}
if (args[1] == "sha512sum" && args.size() >= 3) {
return HashSumFile(args, cmCryptoHash::AlgoSHA512);
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
// Command to change directory and run a program.
2017-04-14 19:02:05 +02:00
if (args[1] == "chdir" && args.size() >= 4) {
2017-07-20 19:35:53 +02:00
std::string const& directory = args[2];
2018-04-23 21:13:27 +02:00
if (!cmSystemTools::FileExists(directory)) {
2014-08-03 19:52:23 +02:00
cmSystemTools::Error("Directory does not exist for chdir command: ",
args[2].c_str());
return 1;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
2015-11-17 17:22:37 +01:00
std::string command =
cmWrap('"', cmMakeRange(args).advance(3), '"', " ");
2014-08-03 19:52:23 +02:00
int retval = 0;
2016-07-09 11:21:54 +02:00
if (cmSystemTools::RunSingleCommand(
2018-01-26 17:06:56 +01:00
command.c_str(), nullptr, nullptr, &retval, directory.c_str(),
2018-04-23 21:13:27 +02:00
cmSystemTools::OUTPUT_PASSTHROUGH, cmDuration::zero())) {
2014-08-03 19:52:23 +02:00
return retval;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
return 1;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
// Command to start progress for a build
2017-04-14 19:02:05 +02:00
if (args[1] == "cmake_progress_start" && args.size() == 4) {
2014-08-03 19:52:23 +02:00
// basically remove the directory
std::string dirName = args[2];
dirName += "/Progress";
2015-04-27 22:25:09 +02:00
cmSystemTools::RemoveADirectory(dirName);
2014-08-03 19:52:23 +02:00
// is the last argument a filename that exists?
2016-07-09 11:21:54 +02:00
FILE* countFile = cmsys::SystemTools::Fopen(args[3], "r");
2014-08-03 19:52:23 +02:00
int count;
2016-07-09 11:21:54 +02:00
if (countFile) {
if (1 != fscanf(countFile, "%i", &count)) {
2014-08-03 19:52:23 +02:00
cmSystemTools::Message("Could not read from count file.");
}
2016-07-09 11:21:54 +02:00
fclose(countFile);
} else {
2014-08-03 19:52:23 +02:00
count = atoi(args[3].c_str());
2016-07-09 11:21:54 +02:00
}
if (count) {
2018-04-23 21:13:27 +02:00
cmSystemTools::MakeDirectory(dirName);
2014-08-03 19:52:23 +02:00
// write the count into the directory
std::string fName = dirName;
fName += "/count.txt";
2016-07-09 11:21:54 +02:00
FILE* progFile = cmsys::SystemTools::Fopen(fName, "w");
if (progFile) {
fprintf(progFile, "%i\n", count);
2014-08-03 19:52:23 +02:00
fclose(progFile);
}
}
2016-07-09 11:21:54 +02:00
return 0;
}
2014-08-03 19:52:23 +02:00
// Command to report progress for a build
2017-04-14 19:02:05 +02:00
if (args[1] == "cmake_progress_report" && args.size() >= 3) {
2015-08-17 11:37:30 +02:00
// This has been superseded by cmake_echo_color --progress-*
// options. We leave it here to avoid errors if somehow this
// is invoked by an existing makefile without regenerating.
2014-08-03 19:52:23 +02:00
return 0;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
// Command to create a symbolic link. Fails on platforms not
// supporting them.
2017-04-14 19:02:05 +02:00
if (args[1] == "create_symlink" && args.size() == 4) {
2014-08-03 19:52:23 +02:00
const char* destinationFileName = args[3].c_str();
2016-07-09 11:21:54 +02:00
if ((cmSystemTools::FileExists(destinationFileName) ||
cmSystemTools::FileIsSymlink(destinationFileName)) &&
!cmSystemTools::RemoveFile(destinationFileName)) {
2014-08-03 19:52:23 +02:00
std::string emsg = cmSystemTools::GetLastSystemError();
2016-07-09 11:21:54 +02:00
std::cerr << "failed to create symbolic link '" << destinationFileName
<< "' because existing path cannot be removed: " << emsg
<< "\n";
2014-08-03 19:52:23 +02:00
return 1;
2016-07-09 11:21:54 +02:00
}
if (!cmSystemTools::CreateSymlink(args[2], args[3])) {
2014-08-03 19:52:23 +02:00
std::string emsg = cmSystemTools::GetLastSystemError();
2016-07-09 11:21:54 +02:00
std::cerr << "failed to create symbolic link '" << destinationFileName
<< "': " << emsg << "\n";
2014-08-03 19:52:23 +02:00
return 1;
}
2016-07-09 11:21:54 +02:00
return 0;
}
2014-08-03 19:52:23 +02:00
// Internal CMake shared library support.
2017-04-14 19:02:05 +02:00
if (args[1] == "cmake_symlink_library" && args.size() == 5) {
2014-08-03 19:52:23 +02:00
return cmcmd::SymlinkLibrary(args);
2016-07-09 11:21:54 +02:00
}
2017-04-14 19:02:05 +02:00
2014-08-03 19:52:23 +02:00
// Internal CMake versioned executable support.
2017-04-14 19:02:05 +02:00
if (args[1] == "cmake_symlink_executable" && args.size() == 4) {
2014-08-03 19:52:23 +02:00
return cmcmd::SymlinkExecutable(args);
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
// Internal CMake dependency scanning support.
2017-04-14 19:02:05 +02:00
if (args[1] == "cmake_depends" && args.size() >= 6) {
2016-10-30 18:24:19 +01:00
const bool verbose = isCMakeVerbose();
2014-08-03 19:52:23 +02:00
// Create a cmake object instance to process dependencies.
2017-07-20 19:35:53 +02:00
cmake cm(cmake::RoleScript); // All we need is the `set` command.
2014-08-03 19:52:23 +02:00
std::string gen;
std::string homeDir;
std::string startDir;
std::string homeOutDir;
std::string startOutDir;
std::string depInfo;
bool color = false;
2016-07-09 11:21:54 +02:00
if (args.size() >= 8) {
2014-08-03 19:52:23 +02:00
// Full signature:
//
// -E cmake_depends <generator>
// <home-src-dir> <start-src-dir>
// <home-out-dir> <start-out-dir>
// <dep-info> [--color=$(COLOR)]
//
// All paths are provided.
gen = args[2];
homeDir = args[3];
startDir = args[4];
homeOutDir = args[5];
startOutDir = args[6];
depInfo = args[7];
2016-07-09 11:21:54 +02:00
if (args.size() >= 9 && args[8].length() >= 8 &&
args[8].substr(0, 8) == "--color=") {
2014-08-03 19:52:23 +02:00
// Enable or disable color based on the switch value.
color = (args[8].size() == 8 ||
cmSystemTools::IsOn(args[8].substr(8).c_str()));
}
2016-07-09 11:21:54 +02:00
} else {
2014-08-03 19:52:23 +02:00
// Support older signature for existing makefiles:
//
// -E cmake_depends <generator>
// <home-out-dir> <start-out-dir>
// <dep-info>
//
// Just pretend the source directories are the same as the
// binary directories so at least scanning will work.
gen = args[2];
homeDir = args[3];
startDir = args[4];
homeOutDir = args[3];
startOutDir = args[3];
depInfo = args[5];
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
// Create a local generator configured for the directory in
// which dependencies will be scanned.
2015-04-27 22:25:09 +02:00
homeDir = cmSystemTools::CollapseFullPath(homeDir);
startDir = cmSystemTools::CollapseFullPath(startDir);
homeOutDir = cmSystemTools::CollapseFullPath(homeOutDir);
startOutDir = cmSystemTools::CollapseFullPath(startOutDir);
cm.SetHomeDirectory(homeDir);
cm.SetHomeOutputDirectory(homeOutDir);
2016-03-13 13:35:51 +01:00
cm.GetCurrentSnapshot().SetDefaultDefinitions();
2016-07-09 11:21:54 +02:00
if (cmGlobalGenerator* ggd = cm.CreateGlobalGenerator(gen)) {
2014-08-03 19:52:23 +02:00
cm.SetGlobalGenerator(ggd);
2017-04-14 19:02:05 +02:00
cmStateSnapshot snapshot = cm.GetCurrentSnapshot();
2016-03-13 13:35:51 +01:00
snapshot.GetDirectory().SetCurrentBinary(startOutDir);
snapshot.GetDirectory().SetCurrentSource(startDir);
2018-01-26 17:06:56 +01:00
cmMakefile mf(ggd, snapshot);
std::unique_ptr<cmLocalGenerator> lgd(ggd->CreateLocalGenerator(&mf));
2014-08-03 19:52:23 +02:00
// Actually scan dependencies.
2016-07-09 11:21:54 +02:00
return lgd->UpdateDependencies(depInfo.c_str(), verbose, color) ? 0
: 2;
2014-08-03 19:52:23 +02:00
}
2016-07-09 11:21:54 +02:00
return 1;
}
2014-08-03 19:52:23 +02:00
// Internal CMake link script support.
2017-04-14 19:02:05 +02:00
if (args[1] == "cmake_link_script" && args.size() >= 3) {
2014-08-03 19:52:23 +02:00
return cmcmd::ExecuteLinkScript(args);
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
2016-10-30 18:24:19 +01:00
#ifdef CMAKE_BUILD_WITH_CMAKE
// Internal CMake ninja dependency scanning support.
2017-04-14 19:02:05 +02:00
if (args[1] == "cmake_ninja_depends") {
2016-10-30 18:24:19 +01:00
return cmcmd_cmake_ninja_depends(args.begin() + 2, args.end());
}
// Internal CMake ninja dyndep support.
2017-04-14 19:02:05 +02:00
if (args[1] == "cmake_ninja_dyndep") {
2016-10-30 18:24:19 +01:00
return cmcmd_cmake_ninja_dyndep(args.begin() + 2, args.end());
}
#endif
2014-08-03 19:52:23 +02:00
// Internal CMake unimplemented feature notification.
2017-04-14 19:02:05 +02:00
if (args[1] == "cmake_unimplemented_variable") {
2014-08-03 19:52:23 +02:00
std::cerr << "Feature not implemented for this platform.";
2016-07-09 11:21:54 +02:00
if (args.size() == 3) {
2014-08-03 19:52:23 +02:00
std::cerr << " Variable " << args[2] << " is not set.";
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
std::cerr << std::endl;
return 1;
2017-04-14 19:02:05 +02:00
}
if (args[1] == "vs_link_exe") {
2014-08-03 19:52:23 +02:00
return cmcmd::VisualStudioLink(args, 1);
2017-04-14 19:02:05 +02:00
}
if (args[1] == "vs_link_dll") {
2014-08-03 19:52:23 +02:00
return cmcmd::VisualStudioLink(args, 2);
2016-07-09 11:21:54 +02:00
}
2017-04-14 19:02:05 +02:00
2014-08-03 19:52:23 +02:00
// Internal CMake color makefile support.
2017-04-14 19:02:05 +02:00
if (args[1] == "cmake_echo_color") {
2014-08-03 19:52:23 +02:00
return cmcmd::ExecuteEchoColor(args);
2016-07-09 11:21:54 +02:00
}
2017-04-14 19:02:05 +02:00
2015-08-17 11:37:30 +02:00
#ifdef CMAKE_BUILD_WITH_CMAKE
2018-04-23 21:13:27 +02:00
if ((args[1] == "cmake_autogen") && (args.size() >= 4)) {
cmQtAutoGeneratorMocUic autoGen;
std::string const& infoDir = args[2];
2016-07-09 11:21:54 +02:00
std::string const& config = args[3];
2018-04-23 21:13:27 +02:00
return autoGen.Run(infoDir, config) ? 0 : 1;
}
if ((args[1] == "cmake_autorcc") && (args.size() >= 3)) {
cmQtAutoGeneratorRcc autoGen;
std::string const& infoFile = args[2];
std::string config;
if (args.size() > 3) {
config = args[3];
};
return autoGen.Run(infoFile, config) ? 0 : 1;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
#endif
// Tar files
2017-04-14 19:02:05 +02:00
if (args[1] == "tar" && args.size() > 3) {
2016-07-09 11:21:54 +02:00
const char* knownFormats[] = { "7zip", "gnutar", "pax", "paxr", "zip" };
2015-08-17 11:37:30 +02:00
2017-07-20 19:35:53 +02:00
std::string const& flags = args[2];
std::string const& outFile = args[3];
2015-04-27 22:25:09 +02:00
std::vector<std::string> files;
std::string mtime;
2015-08-17 11:37:30 +02:00
std::string format;
2015-04-27 22:25:09 +02:00
bool doing_options = true;
2016-07-09 11:21:54 +02:00
for (std::string::size_type cc = 4; cc < args.size(); cc++) {
2015-04-27 22:25:09 +02:00
std::string const& arg = args[cc];
2016-07-09 11:21:54 +02:00
if (doing_options && cmHasLiteralPrefix(arg, "--")) {
if (arg == "--") {
2015-04-27 22:25:09 +02:00
doing_options = false;
2016-07-09 11:21:54 +02:00
} else if (cmHasLiteralPrefix(arg, "--mtime=")) {
2015-04-27 22:25:09 +02:00
mtime = arg.substr(8);
2016-07-09 11:21:54 +02:00
} else if (cmHasLiteralPrefix(arg, "--files-from=")) {
2015-04-27 22:25:09 +02:00
std::string const& files_from = arg.substr(13);
2016-07-09 11:21:54 +02:00
if (!cmTarFilesFrom(files_from, files)) {
2015-04-27 22:25:09 +02:00
return 1;
}
2016-07-09 11:21:54 +02:00
} else if (cmHasLiteralPrefix(arg, "--format=")) {
2015-08-17 11:37:30 +02:00
format = arg.substr(9);
2016-07-09 11:21:54 +02:00
bool isKnown =
2018-04-23 21:13:27 +02:00
std::find(cm::cbegin(knownFormats), cm::cend(knownFormats),
format) != cm::cend(knownFormats);
2015-08-17 11:37:30 +02:00
2016-07-09 11:21:54 +02:00
if (!isKnown) {
2015-08-17 11:37:30 +02:00
cmSystemTools::Error("Unknown -E tar --format= argument: ",
2016-07-09 11:21:54 +02:00
format.c_str());
2015-08-17 11:37:30 +02:00
return 1;
}
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
cmSystemTools::Error("Unknown option to -E tar: ", arg.c_str());
return 1;
}
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
files.push_back(arg);
2014-08-03 19:52:23 +02:00
}
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
cmSystemTools::cmTarCompression compress =
cmSystemTools::TarCompressNone;
2014-08-03 19:52:23 +02:00
bool verbose = false;
2015-04-27 22:25:09 +02:00
int nCompress = 0;
2017-07-20 19:35:53 +02:00
if (flags.find_first_of('j') != std::string::npos) {
2015-04-27 22:25:09 +02:00
compress = cmSystemTools::TarCompressBZip2;
++nCompress;
2016-07-09 11:21:54 +02:00
}
2017-07-20 19:35:53 +02:00
if (flags.find_first_of('J') != std::string::npos) {
2015-04-27 22:25:09 +02:00
compress = cmSystemTools::TarCompressXZ;
++nCompress;
2016-07-09 11:21:54 +02:00
}
2017-07-20 19:35:53 +02:00
if (flags.find_first_of('z') != std::string::npos) {
2015-04-27 22:25:09 +02:00
compress = cmSystemTools::TarCompressGZip;
++nCompress;
2016-07-09 11:21:54 +02:00
}
if ((format == "7zip" || format == "zip") && nCompress > 0) {
2015-08-17 11:37:30 +02:00
cmSystemTools::Error("Can not use compression flags with format: ",
2016-07-09 11:21:54 +02:00
format.c_str());
2015-08-17 11:37:30 +02:00
return 1;
2016-10-30 18:24:19 +01:00
}
if (nCompress > 1) {
2015-04-27 22:25:09 +02:00
cmSystemTools::Error("Can only compress a tar file one way; "
"at most one flag of z, j, or J may be used");
return 1;
2016-07-09 11:21:54 +02:00
}
2017-07-20 19:35:53 +02:00
if (flags.find_first_of('v') != std::string::npos) {
2014-08-03 19:52:23 +02:00
verbose = true;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
2017-07-20 19:35:53 +02:00
if (flags.find_first_of('t') != std::string::npos) {
2016-07-09 11:21:54 +02:00
if (!cmSystemTools::ListTar(outFile.c_str(), verbose)) {
2015-04-27 22:25:09 +02:00
cmSystemTools::Error("Problem listing tar: ", outFile.c_str());
2014-08-03 19:52:23 +02:00
return 1;
}
2017-07-20 19:35:53 +02:00
} else if (flags.find_first_of('c') != std::string::npos) {
2016-07-09 11:21:54 +02:00
if (!cmSystemTools::CreateTar(outFile.c_str(), files, compress,
verbose, mtime, format)) {
2014-08-03 19:52:23 +02:00
cmSystemTools::Error("Problem creating tar: ", outFile.c_str());
return 1;
}
2017-07-20 19:35:53 +02:00
} else if (flags.find_first_of('x') != std::string::npos) {
2016-07-09 11:21:54 +02:00
if (!cmSystemTools::ExtractTar(outFile.c_str(), verbose)) {
2014-08-03 19:52:23 +02:00
cmSystemTools::Error("Problem extracting tar: ", outFile.c_str());
return 1;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
#ifdef WIN32
// OK, on windows 7 after we untar some files,
// sometimes we can not rename the directory after
// the untar is done. This breaks the external project
// untar and rename code. So, by default we will wait
// 1/10th of a second after the untar. If CMAKE_UNTAR_DELAY
// is set in the env, its value will be used instead of 100.
int delay = 100;
2016-10-30 18:24:19 +01:00
std::string delayVar;
if (cmSystemTools::GetEnv("CMAKE_UNTAR_DELAY", delayVar)) {
delay = atoi(delayVar.c_str());
2016-07-09 11:21:54 +02:00
}
if (delay) {
2014-08-03 19:52:23 +02:00
cmSystemTools::Delay(delay);
}
2016-07-09 11:21:54 +02:00
#endif
2014-08-03 19:52:23 +02:00
}
2016-07-09 11:21:54 +02:00
return 0;
2017-04-14 19:02:05 +02:00
}
if (args[1] == "server") {
2016-10-30 18:24:19 +01:00
const std::string pipePrefix = "--pipe=";
bool supportExperimental = false;
bool isDebug = false;
std::string pipe;
for (size_t i = 2; i < args.size(); ++i) {
const std::string& a = args[i];
if (a == "--experimental") {
supportExperimental = true;
} else if (a == "--debug") {
pipe.clear();
isDebug = true;
} else if (a.substr(0, pipePrefix.size()) == pipePrefix) {
isDebug = false;
pipe = a.substr(pipePrefix.size());
if (pipe.empty()) {
cmSystemTools::Error("No pipe given after --pipe=");
return 2;
}
} else {
cmSystemTools::Error("Unknown argument for server mode");
return 1;
}
}
2018-01-26 17:06:56 +01:00
#if defined(CMAKE_BUILD_WITH_CMAKE)
cmConnection* conn;
2016-10-30 18:24:19 +01:00
if (isDebug) {
conn = new cmServerStdIoConnection;
} else {
conn = new cmServerPipeConnection(pipe);
}
cmServer server(conn, supportExperimental);
std::string errorMessage;
if (server.Serve(&errorMessage)) {
return 0;
}
2017-04-14 19:02:05 +02:00
cmSystemTools::Error(errorMessage.c_str());
2016-10-30 18:24:19 +01:00
#else
static_cast<void>(supportExperimental);
static_cast<void>(isDebug);
cmSystemTools::Error("CMake was not built with server mode enabled");
#endif
2017-04-14 19:02:05 +02:00
return 1;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
#if defined(CMAKE_BUILD_WITH_CMAKE)
// Internal CMake Fortran module support.
2017-04-14 19:02:05 +02:00
if (args[1] == "cmake_copy_f90_mod" && args.size() >= 4) {
2016-07-09 11:21:54 +02:00
return cmDependsFortran::CopyModule(args) ? 0 : 1;
}
2014-08-03 19:52:23 +02:00
#endif
#if defined(_WIN32) && !defined(__CYGWIN__)
// Write registry value
2017-04-14 19:02:05 +02:00
if (args[1] == "write_regv" && args.size() > 3) {
2014-08-03 19:52:23 +02:00
return cmSystemTools::WriteRegistryValue(args[2].c_str(),
2016-07-09 11:21:54 +02:00
args[3].c_str())
? 0
: 1;
}
2014-08-03 19:52:23 +02:00
// Delete registry value
2017-04-14 19:02:05 +02:00
if (args[1] == "delete_regv" && args.size() > 2) {
2014-08-03 19:52:23 +02:00
return cmSystemTools::DeleteRegistryValue(args[2].c_str()) ? 0 : 1;
2016-07-09 11:21:54 +02:00
}
2017-04-14 19:02:05 +02:00
2014-08-03 19:52:23 +02:00
// Remove file
2017-04-14 19:02:05 +02:00
if (args[1] == "comspec" && args.size() > 2) {
2014-08-03 19:52:23 +02:00
std::cerr << "Win9x helper \"cmake -E comspec\" no longer supported\n";
return 1;
2017-04-14 19:02:05 +02:00
}
if (args[1] == "env_vs8_wince" && args.size() == 3) {
2014-08-03 19:52:23 +02:00
return cmcmd::WindowsCEEnvironment("8.0", args[2]);
2017-04-14 19:02:05 +02:00
}
if (args[1] == "env_vs9_wince" && args.size() == 3) {
2014-08-03 19:52:23 +02:00
return cmcmd::WindowsCEEnvironment("9.0", args[2]);
}
2016-07-09 11:21:54 +02:00
#endif
}
2014-08-03 19:52:23 +02:00
::CMakeCommandUsage(args[0].c_str());
return 1;
}
2018-01-26 17:06:56 +01:00
int cmcmd::HashSumFile(std::vector<std::string>& args, cmCryptoHash::Algo algo)
{
if (args.size() < 3) {
return -1;
}
int retval = 0;
for (std::string::size_type cc = 2; cc < args.size(); cc++) {
const char* filename = args[cc].c_str();
// Cannot compute sum of a directory
if (cmSystemTools::FileIsDirectory(filename)) {
std::cerr << "Error: " << filename << " is a directory" << std::endl;
retval++;
} else {
std::string value = cmSystemTools::ComputeFileHash(filename, algo);
if (value.empty()) {
// To mimic "md5sum/shasum" behavior in a shell:
std::cerr << filename << ": No such file or directory" << std::endl;
retval++;
} else {
std::cout << value << " " << filename << std::endl;
}
}
}
return retval;
}
2014-08-03 19:52:23 +02:00
int cmcmd::SymlinkLibrary(std::vector<std::string>& args)
{
int result = 0;
2018-04-23 21:13:27 +02:00
std::string realName = args[2];
std::string soName = args[3];
std::string name = args[4];
cmSystemTools::ConvertToUnixSlashes(realName);
cmSystemTools::ConvertToUnixSlashes(soName);
cmSystemTools::ConvertToUnixSlashes(name);
2016-07-09 11:21:54 +02:00
if (soName != realName) {
if (!cmcmd::SymlinkInternal(realName, soName)) {
2014-08-03 19:52:23 +02:00
cmSystemTools::ReportLastSystemError("cmake_symlink_library");
result = 1;
}
2016-07-09 11:21:54 +02:00
}
if (name != soName) {
if (!cmcmd::SymlinkInternal(soName, name)) {
2014-08-03 19:52:23 +02:00
cmSystemTools::ReportLastSystemError("cmake_symlink_library");
result = 1;
}
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
return result;
}
int cmcmd::SymlinkExecutable(std::vector<std::string>& args)
{
int result = 0;
2017-07-20 19:35:53 +02:00
std::string const& realName = args[2];
std::string const& name = args[3];
2016-07-09 11:21:54 +02:00
if (name != realName) {
if (!cmcmd::SymlinkInternal(realName, name)) {
2014-08-03 19:52:23 +02:00
cmSystemTools::ReportLastSystemError("cmake_symlink_executable");
result = 1;
}
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
return result;
}
bool cmcmd::SymlinkInternal(std::string const& file, std::string const& link)
{
2018-04-23 21:13:27 +02:00
if (cmSystemTools::FileExists(link) || cmSystemTools::FileIsSymlink(link)) {
2015-04-27 22:25:09 +02:00
cmSystemTools::RemoveFile(link);
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
#if defined(_WIN32) && !defined(__CYGWIN__)
return cmSystemTools::CopyFileAlways(file.c_str(), link.c_str());
#else
std::string linktext = cmSystemTools::GetFilenameName(file);
2015-04-27 22:25:09 +02:00
return cmSystemTools::CreateSymlink(linktext, link);
2014-08-03 19:52:23 +02:00
#endif
}
2016-07-09 11:21:54 +02:00
static void cmcmdProgressReport(std::string const& dir, std::string const& num)
2015-08-17 11:37:30 +02:00
{
std::string dirName = dir;
dirName += "/Progress";
std::string fName;
2016-07-09 11:21:54 +02:00
FILE* progFile;
2015-08-17 11:37:30 +02:00
// read the count
fName = dirName;
fName += "/count.txt";
2016-07-09 11:21:54 +02:00
progFile = cmsys::SystemTools::Fopen(fName, "r");
2015-08-17 11:37:30 +02:00
int count = 0;
2016-07-09 11:21:54 +02:00
if (!progFile) {
2015-08-17 11:37:30 +02:00
return;
2016-07-09 11:21:54 +02:00
}
2016-10-30 18:24:19 +01:00
if (1 != fscanf(progFile, "%i", &count)) {
cmSystemTools::Message("Could not read from progress file.");
}
fclose(progFile);
2015-08-17 11:37:30 +02:00
const char* last = num.c_str();
2016-07-09 11:21:54 +02:00
for (const char* c = last;; ++c) {
if (*c == ',' || *c == '\0') {
if (c != last) {
2015-08-17 11:37:30 +02:00
fName = dirName;
fName += "/";
2016-07-09 11:21:54 +02:00
fName.append(last, c - last);
progFile = cmsys::SystemTools::Fopen(fName, "w");
if (progFile) {
fprintf(progFile, "empty");
2015-08-17 11:37:30 +02:00
fclose(progFile);
}
2016-07-09 11:21:54 +02:00
}
if (*c == '\0') {
2015-08-17 11:37:30 +02:00
break;
}
2016-07-09 11:21:54 +02:00
last = c + 1;
2015-08-17 11:37:30 +02:00
}
2016-07-09 11:21:54 +02:00
}
int fileNum =
static_cast<int>(cmsys::Directory::GetNumberOfFilesInDirectory(dirName));
if (count > 0) {
2015-08-17 11:37:30 +02:00
// print the progress
2016-07-09 11:21:54 +02:00
fprintf(stdout, "[%3i%%] ", ((fileNum - 3) * 100) / count);
}
2015-08-17 11:37:30 +02:00
}
2014-08-03 19:52:23 +02:00
int cmcmd::ExecuteEchoColor(std::vector<std::string>& args)
{
// The arguments are
// argv[0] == <cmake-executable>
// argv[1] == cmake_echo_color
bool enabled = true;
int color = cmsysTerminal_Color_Normal;
bool newline = true;
2015-08-17 11:37:30 +02:00
std::string progressDir;
2016-07-09 11:21:54 +02:00
for (unsigned int i = 2; i < args.size(); ++i) {
if (args[i].find("--switch=") == 0) {
2014-08-03 19:52:23 +02:00
// Enable or disable color based on the switch value.
std::string value = args[i].substr(9);
2016-07-09 11:21:54 +02:00
if (!value.empty()) {
2016-10-30 18:24:19 +01:00
enabled = cmSystemTools::IsOn(value.c_str());
2014-08-03 19:52:23 +02:00
}
2016-07-09 11:21:54 +02:00
} else if (cmHasLiteralPrefix(args[i], "--progress-dir=")) {
2015-08-17 11:37:30 +02:00
progressDir = args[i].substr(15);
2016-07-09 11:21:54 +02:00
} else if (cmHasLiteralPrefix(args[i], "--progress-num=")) {
if (!progressDir.empty()) {
2015-08-17 11:37:30 +02:00
std::string const& progressNum = args[i].substr(15);
cmcmdProgressReport(progressDir, progressNum);
}
2016-07-09 11:21:54 +02:00
} else if (args[i] == "--normal") {
2014-08-03 19:52:23 +02:00
color = cmsysTerminal_Color_Normal;
2016-07-09 11:21:54 +02:00
} else if (args[i] == "--black") {
2014-08-03 19:52:23 +02:00
color = cmsysTerminal_Color_ForegroundBlack;
2016-07-09 11:21:54 +02:00
} else if (args[i] == "--red") {
2014-08-03 19:52:23 +02:00
color = cmsysTerminal_Color_ForegroundRed;
2016-07-09 11:21:54 +02:00
} else if (args[i] == "--green") {
2014-08-03 19:52:23 +02:00
color = cmsysTerminal_Color_ForegroundGreen;
2016-07-09 11:21:54 +02:00
} else if (args[i] == "--yellow") {
2014-08-03 19:52:23 +02:00
color = cmsysTerminal_Color_ForegroundYellow;
2016-07-09 11:21:54 +02:00
} else if (args[i] == "--blue") {
2014-08-03 19:52:23 +02:00
color = cmsysTerminal_Color_ForegroundBlue;
2016-07-09 11:21:54 +02:00
} else if (args[i] == "--magenta") {
2014-08-03 19:52:23 +02:00
color = cmsysTerminal_Color_ForegroundMagenta;
2016-07-09 11:21:54 +02:00
} else if (args[i] == "--cyan") {
2014-08-03 19:52:23 +02:00
color = cmsysTerminal_Color_ForegroundCyan;
2016-07-09 11:21:54 +02:00
} else if (args[i] == "--white") {
2014-08-03 19:52:23 +02:00
color = cmsysTerminal_Color_ForegroundWhite;
2016-07-09 11:21:54 +02:00
} else if (args[i] == "--bold") {
2014-08-03 19:52:23 +02:00
color |= cmsysTerminal_Color_ForegroundBold;
2016-07-09 11:21:54 +02:00
} else if (args[i] == "--no-newline") {
2014-08-03 19:52:23 +02:00
newline = false;
2016-07-09 11:21:54 +02:00
} else if (args[i] == "--newline") {
2014-08-03 19:52:23 +02:00
newline = true;
2016-07-09 11:21:54 +02:00
} else {
2014-08-03 19:52:23 +02:00
// Color is enabled. Print with the current color.
2016-07-09 11:21:54 +02:00
cmSystemTools::MakefileColorEcho(color, args[i].c_str(), newline,
enabled);
2014-08-03 19:52:23 +02:00
}
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
return 0;
}
int cmcmd::ExecuteLinkScript(std::vector<std::string>& args)
{
// The arguments are
// argv[0] == <cmake-executable>
// argv[1] == cmake_link_script
// argv[2] == <link-script-name>
// argv[3] == --verbose=?
bool verbose = false;
2016-07-09 11:21:54 +02:00
if (args.size() >= 4) {
if (args[3].find("--verbose=") == 0) {
if (!cmSystemTools::IsOff(args[3].substr(10).c_str())) {
2014-08-03 19:52:23 +02:00
verbose = true;
}
}
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
// Allocate a process instance.
cmsysProcess* cp = cmsysProcess_New();
2016-07-09 11:21:54 +02:00
if (!cp) {
2014-08-03 19:52:23 +02:00
std::cerr << "Error allocating process instance in link script."
<< std::endl;
return 1;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
// Children should share stdout and stderr with this process.
cmsysProcess_SetPipeShared(cp, cmsysProcess_Pipe_STDOUT, 1);
cmsysProcess_SetPipeShared(cp, cmsysProcess_Pipe_STDERR, 1);
// Run the command lines verbatim.
cmsysProcess_SetOption(cp, cmsysProcess_Option_Verbatim, 1);
// Read command lines from the script.
cmsys::ifstream fin(args[2].c_str());
2016-07-09 11:21:54 +02:00
if (!fin) {
std::cerr << "Error opening link script \"" << args[2] << "\""
<< std::endl;
2014-08-03 19:52:23 +02:00
return 1;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
// Run one command at a time.
std::string command;
int result = 0;
2016-07-09 11:21:54 +02:00
while (result == 0 && cmSystemTools::GetLineFromStream(fin, command)) {
2014-08-03 19:52:23 +02:00
// Skip empty command lines.
2017-07-20 19:35:53 +02:00
if (command.find_first_not_of(" \t") == std::string::npos) {
2014-08-03 19:52:23 +02:00
continue;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
// Setup this command line.
2018-01-26 17:06:56 +01:00
const char* cmd[2] = { command.c_str(), nullptr };
2014-08-03 19:52:23 +02:00
cmsysProcess_SetCommand(cp, cmd);
// Report the command if verbose output is enabled.
2016-07-09 11:21:54 +02:00
if (verbose) {
2014-08-03 19:52:23 +02:00
std::cout << command << std::endl;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
// Run the command and wait for it to exit.
cmsysProcess_Execute(cp);
2018-01-26 17:06:56 +01:00
cmsysProcess_WaitForExit(cp, nullptr);
2014-08-03 19:52:23 +02:00
// Report failure if any.
2016-07-09 11:21:54 +02:00
switch (cmsysProcess_GetState(cp)) {
case cmsysProcess_State_Exited: {
2014-08-03 19:52:23 +02:00
int value = cmsysProcess_GetExitValue(cp);
2016-07-09 11:21:54 +02:00
if (value != 0) {
2014-08-03 19:52:23 +02:00
result = value;
}
2016-07-09 11:21:54 +02:00
} break;
2014-08-03 19:52:23 +02:00
case cmsysProcess_State_Exception:
std::cerr << "Error running link command: "
<< cmsysProcess_GetExceptionString(cp) << std::endl;
result = 1;
break;
case cmsysProcess_State_Error:
std::cerr << "Error running link command: "
<< cmsysProcess_GetErrorString(cp) << std::endl;
result = 2;
break;
default:
break;
2016-07-09 11:21:54 +02:00
};
}
2014-08-03 19:52:23 +02:00
// Free the process instance.
cmsysProcess_Delete(cp);
// Return the final resulting return value.
return result;
}
int cmcmd::WindowsCEEnvironment(const char* version, const std::string& name)
{
2016-10-30 18:24:19 +01:00
#if defined(CMAKE_BUILD_WITH_CMAKE) && defined(_WIN32) && !defined(__CYGWIN__)
2014-08-03 19:52:23 +02:00
cmVisualStudioWCEPlatformParser parser(name.c_str());
parser.ParseVersion(version);
2016-07-09 11:21:54 +02:00
if (parser.Found()) {
2014-08-03 19:52:23 +02:00
std::cout << "@echo off" << std::endl;
std::cout << "echo Environment Selection: " << name << std::endl;
std::cout << "set PATH=" << parser.GetPathDirectories() << std::endl;
2016-07-09 11:21:54 +02:00
std::cout << "set INCLUDE=" << parser.GetIncludeDirectories() << std::endl;
std::cout << "set LIB=" << parser.GetLibraryDirectories() << std::endl;
2014-08-03 19:52:23 +02:00
return 0;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
#else
(void)version;
#endif
std::cerr << "Could not find " << name;
return -1;
}
2015-11-17 17:22:37 +01:00
class cmVSLink
{
int Type;
bool Verbose;
bool Incremental;
bool LinkGeneratesManifest;
std::vector<std::string> LinkCommand;
std::vector<std::string> UserManifests;
std::string LinkerManifestFile;
std::string ManifestFile;
std::string ManifestFileRC;
std::string ManifestFileRes;
std::string TargetFile;
2016-07-09 11:21:54 +02:00
2015-11-17 17:22:37 +01:00
public:
cmVSLink(int type, bool verbose)
: Type(type)
, Verbose(verbose)
, Incremental(false)
, LinkGeneratesManifest(true)
2016-07-09 11:21:54 +02:00
{
}
2015-11-17 17:22:37 +01:00
bool Parse(std::vector<std::string>::const_iterator argBeg,
std::vector<std::string>::const_iterator argEnd);
int Link();
2016-07-09 11:21:54 +02:00
2015-11-17 17:22:37 +01:00
private:
int LinkIncremental();
int LinkNonIncremental();
int RunMT(std::string const& out, bool notify);
};
2014-08-03 19:52:23 +02:00
// For visual studio 2005 and newer manifest files need to be embedded into
// exe and dll's. This code does that in such a way that incremental linking
// still works.
2018-01-26 17:06:56 +01:00
int cmcmd::VisualStudioLink(std::vector<std::string> const& args, int type)
2014-08-03 19:52:23 +02:00
{
2016-07-09 11:21:54 +02:00
if (args.size() < 2) {
2014-08-03 19:52:23 +02:00
return -1;
2016-07-09 11:21:54 +02:00
}
2016-10-30 18:24:19 +01:00
const bool verbose = cmSystemTools::HasEnv("VERBOSE");
2014-08-03 19:52:23 +02:00
std::vector<std::string> expandedArgs;
2018-01-26 17:06:56 +01:00
for (std::string const& i : args) {
2014-08-03 19:52:23 +02:00
// check for nmake temporary files
2018-01-26 17:06:56 +01:00
if (i[0] == '@' && i.find("@CMakeFiles") != 0) {
cmsys::ifstream fin(i.substr(1).c_str());
2014-08-03 19:52:23 +02:00
std::string line;
2016-07-09 11:21:54 +02:00
while (cmSystemTools::GetLineFromStream(fin, line)) {
2014-08-03 19:52:23 +02:00
cmSystemTools::ParseWindowsCommandLine(line.c_str(), expandedArgs);
}
2016-07-09 11:21:54 +02:00
} else {
2018-01-26 17:06:56 +01:00
expandedArgs.push_back(i);
2014-08-03 19:52:23 +02:00
}
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
2015-11-17 17:22:37 +01:00
cmVSLink vsLink(type, verbose);
2016-07-09 11:21:54 +02:00
if (!vsLink.Parse(expandedArgs.begin() + 2, expandedArgs.end())) {
2014-08-03 19:52:23 +02:00
return -1;
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
return vsLink.Link();
2014-08-03 19:52:23 +02:00
}
2018-01-26 17:06:56 +01:00
enum NumberFormat
{
FORMAT_DECIMAL,
FORMAT_HEX
};
struct NumberFormatter
{
NumberFormat Format;
int Value;
NumberFormatter(NumberFormat format, int value)
: Format(format)
, Value(value)
{
}
};
std::ostream& operator<<(std::ostream& stream,
NumberFormatter const& formatter)
{
auto const& flags = stream.flags();
if (formatter.Format == FORMAT_DECIMAL) {
stream << std::dec << formatter.Value;
} else {
stream << "0x" << std::hex << formatter.Value;
}
stream.flags(flags);
return stream;
}
2016-07-09 11:21:54 +02:00
static bool RunCommand(const char* comment, std::vector<std::string>& command,
2018-01-26 17:06:56 +01:00
bool verbose, NumberFormat exitFormat,
int* retCodeOut = nullptr,
bool (*retCodeOkay)(int) = nullptr)
2014-08-03 19:52:23 +02:00
{
2016-07-09 11:21:54 +02:00
if (verbose) {
2014-08-03 19:52:23 +02:00
std::cout << comment << ":\n";
2015-08-17 11:37:30 +02:00
std::cout << cmJoin(command, " ") << "\n";
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
std::string output;
2016-07-09 11:21:54 +02:00
int retCode = 0;
2018-01-26 17:06:56 +01:00
bool commandResult = cmSystemTools::RunSingleCommand(
command, &output, &output, &retCode, nullptr, cmSystemTools::OUTPUT_NONE);
bool const retCodeSuccess =
retCode == 0 || (retCodeOkay && retCodeOkay(retCode));
bool const success = commandResult && retCodeSuccess;
2016-07-09 11:21:54 +02:00
if (retCodeOut) {
2018-01-26 17:06:56 +01:00
if (commandResult || !retCodeSuccess) {
*retCodeOut = retCode;
} else {
*retCodeOut = -1;
}
2016-07-09 11:21:54 +02:00
}
2018-01-26 17:06:56 +01:00
if (!success) {
std::cout << comment << ": command \"" << cmJoin(command, " ")
<< "\" failed (exit code "
<< NumberFormatter(exitFormat, retCode)
<< ") with the following output:\n"
<< output;
} else {
// always print the output of the command, unless
// it is the dumb rc command banner
if (output.find("Resource Compiler Version") == std::string::npos) {
std::cout << output;
}
2016-07-09 11:21:54 +02:00
}
2018-01-26 17:06:56 +01:00
return success;
2014-08-03 19:52:23 +02:00
}
2015-11-17 17:22:37 +01:00
bool cmVSLink::Parse(std::vector<std::string>::const_iterator argBeg,
std::vector<std::string>::const_iterator argEnd)
{
// Parse our own arguments.
std::string intDir;
std::vector<std::string>::const_iterator arg = argBeg;
2016-07-09 11:21:54 +02:00
while (arg != argEnd && cmHasLiteralPrefix(*arg, "-")) {
if (*arg == "--") {
2015-11-17 17:22:37 +01:00
++arg;
break;
2017-07-20 19:35:53 +02:00
}
if (*arg == "--manifests") {
2016-07-09 11:21:54 +02:00
for (++arg; arg != argEnd && !cmHasLiteralPrefix(*arg, "-"); ++arg) {
2015-11-17 17:22:37 +01:00
this->UserManifests.push_back(*arg);
}
2016-07-09 11:21:54 +02:00
} else if (cmHasLiteralPrefix(*arg, "--intdir=")) {
2015-11-17 17:22:37 +01:00
intDir = arg->substr(9);
++arg;
2016-07-09 11:21:54 +02:00
} else {
2015-11-17 17:22:37 +01:00
std::cerr << "unknown argument '" << *arg << "'\n";
return false;
}
2016-07-09 11:21:54 +02:00
}
if (intDir.empty()) {
2015-11-17 17:22:37 +01:00
return false;
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
// The rest of the arguments form the link command.
2016-07-09 11:21:54 +02:00
if (arg == argEnd) {
2015-11-17 17:22:37 +01:00
return false;
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
this->LinkCommand.insert(this->LinkCommand.begin(), arg, argEnd);
// Parse the link command to extract information we need.
2016-07-09 11:21:54 +02:00
for (; arg != argEnd; ++arg) {
if (cmSystemTools::Strucmp(arg->c_str(), "/INCREMENTAL:YES") == 0) {
2015-11-17 17:22:37 +01:00
this->Incremental = true;
2016-07-09 11:21:54 +02:00
} else if (cmSystemTools::Strucmp(arg->c_str(), "/INCREMENTAL") == 0) {
2015-11-17 17:22:37 +01:00
this->Incremental = true;
2016-07-09 11:21:54 +02:00
} else if (cmSystemTools::Strucmp(arg->c_str(), "/MANIFEST:NO") == 0) {
2015-11-17 17:22:37 +01:00
this->LinkGeneratesManifest = false;
2016-07-09 11:21:54 +02:00
} else if (cmHasLiteralPrefix(*arg, "/Fe")) {
2015-11-17 17:22:37 +01:00
this->TargetFile = arg->substr(3);
2016-07-09 11:21:54 +02:00
} else if (cmHasLiteralPrefix(*arg, "/out:")) {
2015-11-17 17:22:37 +01:00
this->TargetFile = arg->substr(5);
}
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
2016-07-09 11:21:54 +02:00
if (this->TargetFile.empty()) {
2015-11-17 17:22:37 +01:00
return false;
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
this->ManifestFile = intDir + "/embed.manifest";
this->LinkerManifestFile = intDir + "/intermediate.manifest";
2016-07-09 11:21:54 +02:00
if (this->Incremental) {
2015-11-17 17:22:37 +01:00
// We will compile a resource containing the manifest and
// pass it to the link command.
this->ManifestFileRC = intDir + "/manifest.rc";
this->ManifestFileRes = intDir + "/manifest.res";
2016-07-09 11:21:54 +02:00
} else if (this->UserManifests.empty()) {
2015-11-17 17:22:37 +01:00
// Prior to support for user-specified manifests CMake placed the
// linker-generated manifest next to the binary (as if it were not to be
// embedded) when not linking incrementally. Preserve this behavior.
this->ManifestFile = this->TargetFile + ".manifest";
this->LinkerManifestFile = this->ManifestFile;
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
2016-07-09 11:21:54 +02:00
if (this->LinkGeneratesManifest) {
2015-11-17 17:22:37 +01:00
this->LinkCommand.push_back("/MANIFEST");
this->LinkCommand.push_back("/MANIFESTFILE:" + this->LinkerManifestFile);
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
return true;
}
int cmVSLink::Link()
{
if (this->Incremental &&
2016-07-09 11:21:54 +02:00
(this->LinkGeneratesManifest || !this->UserManifests.empty())) {
if (this->Verbose) {
2015-11-17 17:22:37 +01:00
std::cout << "Visual Studio Incremental Link with embedded manifests\n";
}
2016-07-09 11:21:54 +02:00
return LinkIncremental();
}
if (this->Verbose) {
if (!this->Incremental) {
2015-11-17 17:22:37 +01:00
std::cout << "Visual Studio Non-Incremental Link\n";
2016-07-09 11:21:54 +02:00
} else {
2015-11-17 17:22:37 +01:00
std::cout << "Visual Studio Incremental Link without manifests\n";
}
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
return LinkNonIncremental();
}
2018-01-26 17:06:56 +01:00
static bool mtRetIsUpdate(int mtRet)
{
// 'mt /notify_update' returns a special value (differing between
// Windows and POSIX hosts) when it updated the manifest file.
return mtRet == 0x41020001 || mtRet == 0xbb;
}
2015-11-17 17:22:37 +01:00
int cmVSLink::LinkIncremental()
2014-08-03 19:52:23 +02:00
{
// This follows the steps listed here:
// http://blogs.msdn.com/zakramer/archive/2006/05/22/603558.aspx
// 1. Compiler compiles the application and generates the *.obj files.
// 2. An empty manifest file is generated if this is a clean build and if
// not the previous one is reused.
// 3. The resource compiler (rc.exe) compiles the *.manifest file to a
// *.res file.
// 4. Linker generates the binary (EXE or DLL) with the /incremental
// switch and embeds the dummy manifest file. The linker also generates
// the real manifest file based on the binaries that your binary depends
// on.
// 5. The manifest tool (mt.exe) is then used to generate the final
// manifest.
// If the final manifest is changed, then 6 and 7 are run, if not
// they are skipped, and it is done.
// 6. The resource compiler is invoked one more time.
// 7. Finally, the Linker does another incremental link, but since the
// only thing that has changed is the *.res file that contains the
// manifest it is a short link.
2015-11-17 17:22:37 +01:00
// Create a resource file referencing the manifest.
std::string absManifestFile =
cmSystemTools::CollapseFullPath(this->ManifestFile);
2016-07-09 11:21:54 +02:00
if (this->Verbose) {
2015-11-17 17:22:37 +01:00
std::cout << "Create " << this->ManifestFileRC << "\n";
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
{
2016-07-09 11:21:54 +02:00
cmsys::ofstream fout(this->ManifestFileRC.c_str());
if (!fout) {
return -1;
2014-08-03 19:52:23 +02:00
}
2016-07-09 11:21:54 +02:00
fout << this->Type << " /* CREATEPROCESS_MANIFEST_RESOURCE_ID */ "
"24 /* RT_MANIFEST */ \""
<< absManifestFile << "\"";
2015-11-17 17:22:37 +01:00
}
// If we have not previously generated a manifest file,
// generate an empty one so the resource compiler succeeds.
2016-07-09 11:21:54 +02:00
if (!cmSystemTools::FileExists(this->ManifestFile)) {
if (this->Verbose) {
2015-11-17 17:22:37 +01:00
std::cout << "Create empty: " << this->ManifestFile << "\n";
2014-08-03 19:52:23 +02:00
}
2016-07-09 11:21:54 +02:00
cmsys::ofstream foutTmp(this->ManifestFile.c_str());
}
2015-11-17 17:22:37 +01:00
// Compile the resource file.
std::vector<std::string> rcCommand;
2018-01-26 17:06:56 +01:00
rcCommand.push_back("rc");
2015-11-17 17:22:37 +01:00
rcCommand.push_back("/fo" + this->ManifestFileRes);
rcCommand.push_back(this->ManifestFileRC);
2018-01-26 17:06:56 +01:00
if (!RunCommand("RC Pass 1", rcCommand, this->Verbose, FORMAT_DECIMAL)) {
2014-08-03 19:52:23 +02:00
return -1;
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
2015-12-03 18:43:53 +01:00
// Tell the linker to use our manifest compiled into a resource.
this->LinkCommand.push_back(this->ManifestFileRes);
2015-11-17 17:22:37 +01:00
// Run the link command (possibly generates intermediate manifest).
2018-01-26 17:06:56 +01:00
if (!RunCommand("LINK Pass 1", this->LinkCommand, this->Verbose,
FORMAT_DECIMAL)) {
2014-08-03 19:52:23 +02:00
return -1;
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
// Run the manifest tool to create the final manifest.
int mtRet = this->RunMT("/out:" + this->ManifestFile, true);
2018-01-26 17:06:56 +01:00
// If mt returns a special value then it updated the manifest file so
// we need to embed it again. Otherwise we are done.
if (!mtRetIsUpdate(mtRet)) {
2014-08-03 19:52:23 +02:00
return mtRet;
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
// Compile the resource file again.
2018-01-26 17:06:56 +01:00
if (!RunCommand("RC Pass 2", rcCommand, this->Verbose, FORMAT_DECIMAL)) {
2014-08-03 19:52:23 +02:00
return -1;
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
// Link incrementally again to use the updated resource.
2018-01-26 17:06:56 +01:00
if (!RunCommand("FINAL LINK", this->LinkCommand, this->Verbose,
FORMAT_DECIMAL)) {
2014-08-03 19:52:23 +02:00
return -1;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
return 0;
}
2015-11-17 17:22:37 +01:00
int cmVSLink::LinkNonIncremental()
2014-08-03 19:52:23 +02:00
{
2015-11-17 17:22:37 +01:00
// Run the link command (possibly generates intermediate manifest).
2018-01-26 17:06:56 +01:00
if (!RunCommand("LINK", this->LinkCommand, this->Verbose, FORMAT_DECIMAL)) {
2014-08-03 19:52:23 +02:00
return -1;
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
// If we have no manifest files we are done.
2016-07-09 11:21:54 +02:00
if (!this->LinkGeneratesManifest && this->UserManifests.empty()) {
2014-08-03 19:52:23 +02:00
return 0;
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
// Run the manifest tool to embed the final manifest in the binary.
std::string mtOut =
2016-07-09 11:21:54 +02:00
"/outputresource:" + this->TargetFile + (this->Type == 1 ? ";#1" : ";#2");
2015-11-17 17:22:37 +01:00
return this->RunMT(mtOut, false);
}
int cmVSLink::RunMT(std::string const& out, bool notify)
{
2015-04-27 22:25:09 +02:00
std::vector<std::string> mtCommand;
2018-01-26 17:06:56 +01:00
mtCommand.push_back("mt");
2014-08-03 19:52:23 +02:00
mtCommand.push_back("/nologo");
mtCommand.push_back("/manifest");
2016-07-09 11:21:54 +02:00
if (this->LinkGeneratesManifest) {
2015-11-17 17:22:37 +01:00
mtCommand.push_back(this->LinkerManifestFile);
2016-07-09 11:21:54 +02:00
}
mtCommand.insert(mtCommand.end(), this->UserManifests.begin(),
this->UserManifests.end());
2015-11-17 17:22:37 +01:00
mtCommand.push_back(out);
2016-07-09 11:21:54 +02:00
if (notify) {
2015-11-17 17:22:37 +01:00
// Add an undocumented option that enables a special return
// code to notify us when the manifest is modified.
mtCommand.push_back("/notify_update");
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
int mtRet = 0;
2018-01-26 17:06:56 +01:00
if (!RunCommand("MT", mtCommand, this->Verbose, FORMAT_HEX, &mtRet,
mtRetIsUpdate)) {
2014-08-03 19:52:23 +02:00
return -1;
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
return mtRet;
2014-08-03 19:52:23 +02:00
}