summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Do not exit if stoptime is passed.Zach Mullen2010-06-155-6/+32
|
* KWSys Nightly Date StampKWSys Robot2010-06-151-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-06-141-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-06-131-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-06-121-1/+1
|
* KWSys: Teach Process to error on empty commandBrad King2010-06-112-0/+16
| | | | | Do not try to execute a child with no command line. Previously this led to a silent hang.
* KWSys: Process tree kill for SolarisBrad King2010-06-111-0/+3
|
* KWSys Nightly Date StampKWSys Robot2010-06-111-1/+1
|
* Merge branch 'suppress-sgi-warning-3968'Brad King2010-06-101-0/+1
|\
| * Suppress SGI MIPSpro warning 3968Brad King2010-06-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The warning appears everywhere we use static_cast to explicitly truncate an integer width. It appears in the form cc-3968 CC: WARNING File = ..., Line = ... implicit conversion of a 64-bit integral type to a smaller integral type (potential portability problem) static_cast<...>(...); ^ which is strange because a "static_cast" is not implicit. It also appears in system library code.
| * Mask out warnings on ferrari dashboard.David Cole2010-06-081-0/+1
| |
* | KWSys: Configure DynamicLoader library prefix/suffixBrad King2010-06-103-88/+12
| | | | | | | | | | | | | | | | The DynamicLoader::LibPrefix and DynamicLoader::LibExtension methods previously hard-coded the module name components for each platform. Set them from the CMAKE_SHARED_MODULE_PREFIX and CMAKE_SHARED_MODULE_SUFFIX CMake variables instead. This ensures consistency in a program that uses these methods to construct the file names for its own modules.
* | KWSys Nightly Date StampKWSys Robot2010-06-101-1/+1
| |
* | KWSys Nightly Date StampKWSys Robot2010-06-091-1/+1
|/
* Merge branch 'sunCC-5.11-rpath-link'Brad King2010-06-082-1/+9
|\
| * ChangeLog: Mention new Sun compiler supportBrad King2010-06-081-0/+1
| |
| * Fix rpath-link flag for SunPro C++ 5.11 on LinuxBrad King2010-06-071-1/+8
| | | | | | | | | | | | | | | | Commit 82c081ba (Fix rpath-link flag for SunPro C++ on Linux, 2009-07-13) taught CMake to pass '-rpath-link' because SunPro C++ 5.9 does not support '-Wl,'. Now SunPro C++ 5.11 does not recognize the option without using '-Wl,'. Detect whether to use '-Wl,' based on the output of "sunCC -flags".
* | KWSys Nightly Date StampKWSys Robot2010-06-081-1/+1
| |
* | ChangeLog: Update for today's topic mergesBrad King2010-06-071-0/+9
| |
* | Merge branch 'per-config-link-flags'Brad King2010-06-0713-45/+217
|\ \
| * | Intel-specific workaround for LinkFlags testsBrad King2010-06-033-2/+13
| | | | | | | | | | | | | | | | | | | | | | | | The Intel C compiler for Linux does not seem to reject any bad flags or object files on its link lines. Work around the problem by using a preprocessor #error directive to ensure that BADFLAG appears in the build output. This does not really achieve the purpose of the tests but it allows them to pass.
| * | Borland-specific bad flag for LinkFlags testsBrad King2010-06-021-6/+9
| | | | | | | | | | | | | | | | | | The Borland librarian actually creates a BADFLAG.obj when the object is missing the first time! This causes later tests to not reject it. Instead use a Borland-specific variation on the flag.
| * | Better "bad" flag in LinkFlags testBrad King2010-06-011-6/+7
| | | | | | | | | | | | | | | The Intel C Compiler for Linux ignores _BADFLAG_ when linking! Use a flag that looks like a missing object file to ensure its rejection.
| * | Watcom: Use LINK_FLAGS and STATIC_LIBRARY_FLAGSBrad King2010-06-011-3/+3
| | | | | | | | | | | | Add the <LINK_FLAGS> rule variable in Watcom command lines.
| * | Xcode: Archives use STATIC_LIBRARY_FLAGS, not LINK_FLAGSBrad King2010-05-281-3/+9
| | | | | | | | | | | | | | | | | | | | | The LINK_FLAGS property is defined only for targets that really link. These include executables and shared libraries. For static libraries we define the STATIC_LIBRARY_FLAGS property. Teach the Xcode generator to make this distinction.
| * | Add STATIC_LIBRARY_FLAGS_<CONFIG> property (#10768)Brad King2010-05-287-13/+77
| | | | | | | | | | | | This is a per-configuration version of STATIC_LIBRARY_FLAGS.
| * | Test LINK_FLAGS and STATIC_LIBRARY_FLAGS (#10768)Brad King2010-05-284-0/+57
| | | | | | | | | | | | | | | | | | Add a LinkFlags test series to check that these properties work. Since no link flag is accepted everywhere we test for presence of flags by adding a bad flag and looking for the complaint in the test output.
| * | Implement LINK_FLAGS_<CONFIG> in VS 10 generatorBrad King2010-05-281-0/+14
| | | | | | | | | | | | | | | Add support for the per-config LINK_FLAGS property in VS 10. This was simply missing.
| * | Fix LINK_FLAGS_<CONFIG> in VS 6 generatorBrad King2010-05-281-29/+45
| | | | | | | | | | | | Add the flags to the link step, not the compile step!
* | | Merge branch 'ctest-update-git-submodule'Brad King2010-06-071-1/+1
|\ \ \
| * | | Fix ctest_update log prefix for git submodule updateBrad King2010-06-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit 67277bac (Teach ctest_update about Git submodules, 2010-05-04) accidentally logged "git submodule update" with the prefixes "pull-out" and "pull-err". Fix it to use "submodule-out" and "submodule-err" instead.
* | | | Merge branch 'fix-large-output-test'Brad King2010-06-072-0/+6
|\ \ \ \
| * | | | Use the long test timeout value for SubmitLargeOutput.David Cole2010-06-032-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Hopefully this will be a large enough value to get the large output test to pass on the still exceedingly slow dash19.
* | | | | Merge branch 'cpack-remove-temp-dir'Brad King2010-06-073-2/+20
|\ \ \ \ \
| * | | | | CPack: Try harder to remove temporary dir (#10793)Brad King2010-06-043-2/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Windows filesystems sometimes lock files temporarily. Try removing the CPack temp install folder multiple times before giving up.
* | | | | | Merge branch 'file-write-umask'Brad King2010-06-072-24/+18
|\ \ \ \ \ \
| * | | | | | Borland: No S_IWGRP is availableBrad King2010-06-032-0/+4
| | | | | | |
| * | | | | | Really trust umask in file(WRITE) command (#10789, #10126)Brad King2010-06-032-24/+14
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit 8d0161c8 (Trust umask for file permissions, 2010-01-12) taught these commands to set permissions to 0666 explicitly. The intention was to let the open() call inside ofstream handle permsisions so that umask would be honored. Now we set permissions only when we need to preserve those on an existing file. New files will be created with umask-based permissions.
* | | | | | Merge branch 'cygwin-exe-export-all'Brad King2010-06-071-0/+1
|\ \ \ \ \ \
| * | | | | | Cygwin: Export all symbols with ENABLE_EXPORTSYaakov Selkowitz2010-05-271-0/+1
| | |_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | The ENABLE_EXPORTS property exports all symbols from executables on UNIX-like platforms, typically for use by plugins. Honor this behavior on Cygwin. See issue #10122.
* | | | | | Merge branch 'verbose_failed_tests_releases'Brad King2010-06-071-1/+1
|\ \ \ \ \ \
| * | | | | | When running tests for releases use verbose output for failed tests.Bill Hoffman2010-06-051-1/+1
| | | | | | |
* | | | | | | Merge branch 'update_release_scripts'Brad King2010-06-072-2/+2
|\ \ \ \ \ \ \
| * | | | | | | change nightly release builds to use next, and move qmake on dash2win64Bill Hoffman2010-05-282-2/+2
| | | | | | | |
* | | | | | | | Merge branch 'add-git-to-CheckSourceTreeTest'Brad King2010-06-072-53/+176
|\ \ \ \ \ \ \ \
| * | | | | | | | Allow return value of 1 from git status.David Cole2010-05-281-3/+3
| | | | | | | | |
| * | | | | | | | Further refinements to the CheckSourceTree test.David Cole2010-05-271-4/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Echo results of calling git status before exiting with an error. Add one special case so that the test may pass on the dashmacmini2 continuous dashboard, despite a 'git status' non-zero return code. More logic like this may be required. I will re-evaluate based on tomorrow's nightly dashboard runs.
| * | | | | | | | Add git support to the CMake.CheckSourceTree test.David Cole2010-05-272-53/+153
| | |_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Additionally, output some more information in both cvs and git cases. When it is a cvs checkout, echo the contents of CVS/Root and CVS/Repository to the test output. When it is a git checkout, echo the output of 'git branch -a'. This will allow us to see more details about any given CMake source tree right in the CDash results for this test.
* | | | | | | | Merge branch 'improve-file-download'Brad King2010-06-077-29/+373
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: Modules/ExternalProject.cmake
| * | | | | | | | Allow redirects: set CURLOPT_FOLLOWLOCATION to 1David Cole2010-06-041-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Enable file(DOWNLOAD ...) to follow redirects. Thanks to Michael Wild for requesting the addition and providing the majority of the patch.