ENH: add COPY_FILE argument to TRY_COMPILE, so the compiled executable can

be used e.g. for getting strings out of it.

Alex
This commit is contained in:
Alexander Neundorf 2007-05-24 12:06:59 -04:00
parent 7d7aba292c
commit 7147c3e1cc
4 changed files with 50 additions and 8 deletions

View File

@ -90,6 +90,24 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv)
} }
} }
// look for COPY_FILE
std::string copyFile;
for (i = 3; i < argv.size(); ++i)
{
if (argv[i] == "COPY_FILE")
{
if ( argv.size() <= (i+1) )
{
cmSystemTools::Error(
"COPY_FILE specified but there is no variable");
return -1;
}
extraArgs += 2;
copyFile = argv[i+1];
break;
}
}
// do we have a srcfile signature // do we have a srcfile signature
if (argv.size() - extraArgs == 3) if (argv.size() - extraArgs == 3)
{ {
@ -112,6 +130,11 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv)
"COMPILE_FLAGS specified on a srcdir type TRY_COMPILE"); "COMPILE_FLAGS specified on a srcdir type TRY_COMPILE");
return -1; return -1;
} }
if (copyFile.size())
{
cmSystemTools::Error("COPY_FILE specified on a srcdir type TRY_COMPILE");
return -1;
}
} }
// make sure the binary directory exists // make sure the binary directory exists
cmSystemTools::MakeDirectory(this->BinaryDirectory.c_str()); cmSystemTools::MakeDirectory(this->BinaryDirectory.c_str());
@ -262,6 +285,15 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv)
if (this->SrcFileSignature) if (this->SrcFileSignature)
{ {
this->FindOutputFile(targetName); this->FindOutputFile(targetName);
if ((res==0) && (copyFile.size()))
{
if(!cmSystemTools::CopyFileAlways(this->OutputFile.c_str(),
copyFile.c_str()))
{
cmSystemTools::Error("Could not COPY_FILE");
return -1;
}
}
} }
return res; return res;
} }

View File

@ -60,20 +60,22 @@ public:
{ {
return return
" TRY_COMPILE(RESULT_VAR bindir srcdir\n" " TRY_COMPILE(RESULT_VAR bindir srcdir\n"
" projectName <targetname> <CMAKE_FLAGS <Flags>>\n" " projectName <targetname> [CMAKE_FLAGS <Flags>]\n"
" <OUTPUT_VARIABLE var>)\n" " [OUTPUT_VARIABLE var])\n"
"Try compiling a program. In this form, srcdir should contain a complete " "Try compiling a program. In this form, srcdir should contain a complete "
"CMake project with a CMakeLists.txt file and all sources. The bindir and " "CMake project with a CMakeLists.txt file and all sources. The bindir and "
"srcdir will not be deleted after this command is run. " "srcdir will not be deleted after this command is run. "
"If <target name> is specified then build just that target " "If <target name> is specified then build just that target "
"otherwise the all or ALL_BUILD target is built.\n" "otherwise the all or ALL_BUILD target is built.\n"
" TRY_COMPILE(RESULT_VAR bindir srcfile\n" " TRY_COMPILE(RESULT_VAR bindir srcfile\n"
" <CMAKE_FLAGS <Flags>>\n" " [CMAKE_FLAGS <Flags>]\n"
" <COMPILE_DEFINITIONS <flags> ...>\n" " [COMPILE_DEFINITIONS <flags> ...]\n"
" <OUTPUT_VARIABLE var>)\n" " [OUTPUT_VARIABLE var]\n"
" [COPY_FILE <filename> )\n"
"Try compiling a srcfile. In this case, the user need only supply a " "Try compiling a srcfile. In this case, the user need only supply a "
"source file. CMake will create the appropriate CMakeLists.txt file " "source file. CMake will create the appropriate CMakeLists.txt file "
"to build the source. " "to build the source. If COPY_FILE is used, the compiled file will be"
"copied to the given file.\n"
"In this version all files in bindir/CMakeFiles/CMakeTmp, " "In this version all files in bindir/CMakeFiles/CMakeTmp, "
"will be cleaned automatically, for debugging a --debug-trycompile can " "will be cleaned automatically, for debugging a --debug-trycompile can "
"be passed to cmake to avoid the clean. Some extra flags that " "be passed to cmake to avoid the clean. Some extra flags that "

View File

@ -76,7 +76,6 @@ bool cmTryRunCommand::InitialPass(std::vector<std::string> const& argv)
// now try running the command if it compiled // now try running the command if it compiled
if (!res) if (!res)
{ {
fprintf(stderr, "running %s\n", this->OutputFile.c_str());
if (this->OutputFile.size() == 0) if (this->OutputFile.size() == 0)
{ {
cmSystemTools::Error(this->FindErrorMessage.c_str()); cmSystemTools::Error(this->FindErrorMessage.c_str());

View File

@ -1,13 +1,22 @@
PROJECT(TryCompile) PROJECT(TryCompile)
# try to compile a file that should compile # try to compile a file that should compile
# also check that COPY_FILE works
TRY_COMPILE(SHOULD_PASS TRY_COMPILE(SHOULD_PASS
${TryCompile_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp ${TryCompile_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp
${TryCompile_SOURCE_DIR}/pass.c ${TryCompile_SOURCE_DIR}/pass.c
OUTPUT_VARIABLE TRY_OUT) OUTPUT_VARIABLE TRY_OUT
COPY_FILE ${TryCompile_BINARY_DIR}/CopyOfPass
)
IF(NOT SHOULD_PASS) IF(NOT SHOULD_PASS)
MESSAGE(SEND_ERROR "should pass failed ${TRY_OUT}") MESSAGE(SEND_ERROR "should pass failed ${TRY_OUT}")
ENDIF(NOT SHOULD_PASS) ENDIF(NOT SHOULD_PASS)
IF(NOT EXISTS "${TryCompile_BINARY_DIR}/CopyOfPass")
MESSAGE(SEND_ERROR "COPY_FILE to \"${TryCompile_BINARY_DIR}/CopyOfPass\" failed")
ELSE(NOT EXISTS "${TryCompile_BINARY_DIR}/CopyOfPass")
FILE(REMOVE "${TryCompile_BINARY_DIR}/CopyOfPass")
ENDIF(NOT EXISTS "${TryCompile_BINARY_DIR}/CopyOfPass")
# try to compile a file that should not compile # try to compile a file that should not compile
TRY_COMPILE(SHOULD_FAIL TRY_COMPILE(SHOULD_FAIL