summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge topic 'cleanup-unused-variable-check'Brad King2011-03-314-27/+28
|\ | | | | | | | | | | a4335a6 Fix unused cache warning after multiple configure iterations a75ebe3 Refine unused cache variable warning
| * Fix unused cache warning after multiple configure iterationsBrad King2011-03-241-2/+5
| | | | | | | | | | | | | | | | | | | | The curses dialog (ccmake) allows variables to be specified on the command line. If any of these variables is used during any configure iteration or during generate we must not warn about it. The Qt dialog (cmake-gui) allows variables to be added and removed in the GUI interactively. If a variable is added, removed, and then added again we must still warn if it is unused.
| * Refine unused cache variable warningBrad King2011-03-244-25/+23
| | | | | | | | | | List all unused variables in one warning. Cleanup implementation to run the check exactly once at the end of generation.
* | Merge topic 'CPack-fix11930-LeftOverComponents'Brad King2011-03-3111-303/+193
|\ \ | | | | | | | | | | | | 6dfc818 CPack fix #11930 and simplifies component packaging options
| * | CPack fix #11930 and simplifies component packaging optionsEric NOULARD2011-03-2311-303/+193
| | |
* | | Merge topic 'fix-FortranCInterface-for-Cray-7.3.2'Brad King2011-03-313-15/+12
|\ \ \ | | | | | | | | | | | | | | | | d0203fb FortranCInterface: Fix mangling detection with Cray Fortran >= 7.3.2
| * | | FortranCInterface: Fix mangling detection with Cray Fortran >= 7.3.2Brad King2011-03-243-15/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Cray Fortran compiler started using module init symbols in version 7.3.2. Starting in commit 71287734 (Teach FortranC interface for Intel, PGI, and gcc 4.2, 2009-08-05) we provide C versions of the module init symbols so that the detection executable can link when the C versions of the module-mangled symbols are picked up. If no C module-mangled symbol matches then we cannot let the C module init symbol appear because it will be duplicated by the Fortran copy that provides the module-mangled symbol. This was first handled for the PathScale compiler in commit 21faaa5d (FortranCInterface: Fix PathScale detection, 2010-01-22) and commit 46858720 (FortranCInterface: Fix PathScale detection again, 2010-02-16). Handle it now for the Cray compiler too.
* | | | Merge topic 'doc-include_directories-typo-issue-12020'Brad King2011-03-311-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 84b7d92 Fix typo in include_directories documentation (#12020)
| * | | | Fix typo in include_directories documentation (#12020)Brad King2011-03-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A search-and-replace in commit 8d32d229 (make commands lower case by default, 2007-10-10) accidentally changed the variable reference CMAKE_INCLUDE_DIRECTORIES_BEFORE to CMAKE_include_directories_BEFORE. Change it back.
* | | | | Merge topic 'generator-expression-dot-in-name-issue-12002'Brad King2011-03-311-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 08428ba Allow '.' in target names in generator expressions (#12002)
| * | | | | Allow '.' in target names in generator expressions (#12002)Brad King2011-03-221-1/+1
| | |_|_|/ | |/| | | | | | | | | | | | | | | | | | Simply add this character to the allowed list in the regular expression used to parse generator expression components.
* | | | | KWSys Nightly Date StampKWSys Robot2011-03-311-1/+1
| | | | |
* | | | | KWSys Nightly Date StampKWSys Robot2011-03-301-1/+1
| | | | |
* | | | | KWSys: Recognize rxvt-unicode-256color terminal (#12013)Brad King2011-03-291-0/+1
| |/ / / |/| | | | | | | | | | | Author: Matti Niemenmaa
* | | | KWSys Nightly Date StampKWSys Robot2011-03-291-1/+1
| | | |
* | | | KWSys Nightly Date StampKWSys Robot2011-03-281-1/+1
| | | |
* | | | KWSys Nightly Date StampKWSys Robot2011-03-271-1/+1
| | | |
* | | | KWSys Nightly Date StampKWSys Robot2011-03-261-1/+1
| | | |
* | | | KWSys Nightly Date StampKWSys Robot2011-03-251-1/+1
| | | |
* | | | KWSys Nightly Date StampKWSys Robot2011-03-241-1/+1
| | | |
* | | | KWSys: Do not trust EXECUTABLE_OUTPUT_PATH for ProcessFwd9x encodingBrad King2011-03-231-8/+4
| | | | | | | | | | | | | | | | | | | | | | | | Set target property RUNTIME_OUTPUT_DIRECTORY explicitly on ProcessFwd9x and EncodeExecutable so that we know exactly where the executables will exist on disk.
* | | | KWSys Nightly Date StampKWSys Robot2011-03-231-1/+1
| |_|/ |/| |
* | | Merge topic 'asn_check_proto'Brad King2011-03-223-0/+138
|\ \ \ | | | | | | | | | | | | | | | | | | | | 93c56a7 Tests: Added test for check_prototype_definition. 4f252ab Modules: Added CheckPrototypeDefinition module.
| * | | Tests: Added test for check_prototype_definition.Andreas Schneider2011-03-181-0/+13
| | | |
| * | | Modules: Added CheckPrototypeDefinition module.Andreas Schneider2011-03-182-0/+125
| | | | | | | | | | | | | | | | | | | | | | | | This check if the function exists and the prototype we want to use is correct. There are still functions which have different prototypes on different UNIX systems.
* | | | Merge topic 'CPackDeb-fixTestCrash'Brad King2011-03-222-5/+14
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 21007f8 CPack fix CPackDeb crash when CPackDeb.cmake ends with a FATAL_ERROR
| * | | | CPack fix CPackDeb crash when CPackDeb.cmake ends with a FATAL_ERROREric NOULARD2011-03-192-5/+14
| |/ / /
* | | | Merge topic 'include-flags-response-file'Brad King2011-03-2210-18/+93
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 86cb17b Pass include directories with response files to GNU on Windows 9a0b9bc Optionally pass include directories with response files 6e8a67f Generate target-wide flags before individual build rules d099546 Factor old-style -D flags out from -I flag generation
| * | | | Pass include directories with response files to GNU on WindowsBrad King2011-03-171-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The GNU 4.x toolchain on MinGW (and therefore MSYS) allows compiler options to be passed via response files. Use this to pass include directory -I options. This allows the include file search path to be very long despite shell and mingw32-make command line length limits.
| * | | | Optionally pass include directories with response filesBrad King2011-03-177-11/+79
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Create platform option CMAKE_<lang>_USE_RESPONSE_FILE_FOR_INCLUDES to enable use of response files for passing the list of include directories to compiler command lines.
| * | | | Generate target-wide flags before individual build rulesBrad King2011-03-172-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This switches the internal generation order but does not affect the results. The new order ensures that any internal state changed by generating target-wide flags is known when the individual rules that use those flags are generated.
| * | | | Factor old-style -D flags out from -I flag generationBrad King2011-03-152-2/+6
| | |/ / | |/| | | | | | | | | | | | | | | | | | Move the GetDefineFlags call from cmLocalGenerator::GetIncludeFlags to all call sites so that the method exclusively constructs a string of include search path flags.
* | | | Merge topic 'fix-Java-test-enable-logic'Brad King2011-03-221-33/+24
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | 80ccc9a Disable Java test with Xcode generator 46c0a58 Enable Java test more carefully on Apple
| * | | | Disable Java test with Xcode generatorBrad King2011-03-181-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The parent commit 46c0a583 (Enable Java test more carefully on Apple, 2011-03-18) failed to restore the exclusion of Xcode when enabling the Java test that was originally removed by commit c8f39193 (Avoid problem reading jni.h on Macs, 2010-10-25). The Xcode generator does not work with the current Java support at all.
| * | | | Enable Java test more carefully on AppleBrad King2011-03-181-33/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The CTEST_RUN_Java option added by commit c8f39193 (Avoid problem reading jni.h on Macs, 2010-10-25) was a quick hack to disable the Java test on Mac machines after an update from Apple created a broken jni.h symlink. Remove the option and instead test whether jni.h exists as a readable file before reading it. This restores the original Java test enabling logic but makes it robust to the broken symlink.
* | | | | Merge topic 'ctest-detect-maven-errors-and-warnings'Brad King2011-03-221-1/+3
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | fcf3208 CTest: catch warning output of Apache Maven
| * | | | | CTest: catch warning output of Apache MavenRolf Eike Beer2011-03-181-1/+3
| | |_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some samples of things that got unnoticed by our nightly builds: $ JAVA_HOME= mvn Warning: JAVA_HOME environment variable is not set. ... $ mvn [INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [ERROR] BUILD FAILURE ...
* | | | | Merge topic 'FindBLAS-acml-search-improvement'Brad King2011-03-221-8/+88
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | ac475c4 ACML search improvement
| * | | | | ACML search improvementAlexey Ozeritsky2011-03-151-8/+88
| | | | | |
* | | | | | Merge topic 'add-ProcessorCount-module'Brad King2011-03-223-0/+256
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | e6c2701 ProcessorCount: Use ERROR_QUIET with execute_process (#11302) 4dd2ec2 ProcessorCount: Test fails if count is 0 (#11302) 6dd74d5 ProcessorCount: Add support for remaining platforms (#11302) c159836 ProcessorCount test: more output, do not fail. (#11302) 6259bc4 Compare ProcessorCount to SystemInformation count. (#11302) 3430955 Add ProcessorCount support for QNX via pidin. (#11302) 4d6418f If getconf returns empty output, try cpuinfo. (#11302) 9cc8ad9 Add correct module notice header. abbaa12 Add module ProcessorCount.cmake (#11302)
| * | | | | | ProcessorCount: Use ERROR_QUIET with execute_process (#11302)David Cole2011-03-182-13/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also, comment out all "debugging" calls to message() that helped us interpret the output on other platforms when running on the dashboard clients. Using ERROR_QUIET avoids unnecessary stderr output while calling external tools to determine the processor count. If there's an error parsing the output, we set the count to 0 anyhow. Also, the test will fail on a CMake dashboard run if the count comes back equal to 0. Now that the code is "done"-ish, remove the debugging output. Expect no output on stdout or stderr when calling the ProcessorCount function from now on.
| * | | | | | ProcessorCount: Test fails if count is 0 (#11302)David Cole2011-03-151-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | It also fails if count is not a decimal integer.
| * | | | | | ProcessorCount: Add support for remaining platforms (#11302)David Cole2011-03-151-24/+103
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Including AIX, cygwin, FreeBSD, HPUX, IRIX, OpenBSD and Sun.
| * | | | | | ProcessorCount test: more output, do not fail. (#11302)David Cole2011-03-151-1/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | More dev work remains to be done here. Removing test failure condition until that dev work is complete, so it does not mask or hide other, more important failures, on the dashboard.
| * | | | | | Compare ProcessorCount to SystemInformation count. (#11302)David Cole2011-03-151-3/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Maximize output to gather data on the dashboards. Only FATAL_ERROR out once at the bottom if an error occurred earlier.
| * | | | | | Add ProcessorCount support for QNX via pidin. (#11302)David Cole2011-03-152-3/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Thanks to Rolf Eike Beer <eike@sf-mail.de> for the code snippet parsing the pidin output.
| * | | | | | If getconf returns empty output, try cpuinfo. (#11302)David Cole2011-03-151-8/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also, add message output (temporarily) for gathering data on all the dashboard machines. After the test runs on the overnight dashboards tonight, I'll comment out the message output and commit/push again.
| * | | | | | Add correct module notice header.David Cole2011-03-151-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes failing ModuleNotices test.
| * | | | | | Add module ProcessorCount.cmake (#11302)Michael Wild2011-03-153-0/+70
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Credit goes to David Cole ( http://www.kitware.com/blog/home/post/63 ). Also add a script-based test of the new module. Signed-off-by: Michael Wild <themiwi@users.sourceforge.net>
* | | | | | KWSys Nightly Date StampKWSys Robot2011-03-221-1/+1
| | | | | |