Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | STYLE: Fixed docs of new CMakeForceCompiler | Brad King | 2008-03-03 | 1 | -2/+4 |
| | |||||
* | ENH: Restore CMAKE_FORCE_C_COMPILER and CMAKE_FORCE_CXX_COMPILER macros in ↵ | Brad King | 2008-03-03 | 1 | -27/+47 |
| | | | | CMakeForceCompiler module. | ||||
* | ENH: Remove unnecessary compiler force macros. The compiler ID can now be ↵ | Brad King | 2008-02-14 | 1 | -61/+25 |
| | | | | detected without linking an executable. | ||||
* | BUG: When forcing the C and CXX compilers do not try to detect the ABI ↵ | Brad King | 2008-02-03 | 1 | -2/+3 |
| | | | | information. Cleanup configured language compiler info files by always using @ONLY. This addresses bug#6297. | ||||
* | STYLE: fix typo in the docs | Alexander Neundorf | 2007-08-24 | 1 | -1/+1 |
| | | | | Alex | ||||
* | ENH: second try for handling the linker language with integer priority ↵ | Alexander Neundorf | 2007-07-12 | 1 | -0/+11 |
| | | | | | | values (returning a pointer to a string on the stack is no good idea) Alex | ||||
* | COMP: revert last commit for now, broke Visual Studio | Alexander Neundorf | 2007-07-11 | 1 | -11/+0 |
| | | | | Alex | ||||
* | ENH: CMAKE_<LANG>_LINKER_PREFERENCE is now an integer priority, not a | Alexander Neundorf | 2007-07-11 | 1 | -0/+11 |
| | | | | | | | | | | | | | | | | | | | two-step priority (None or Prefered) Current order: ASM 0, C 10, Fortran 20, CXX 30, Java 40 This is the same order as automake choses: http://www.gnu.org/software/automake/manual/html_node/How-the-Linker-is-Chosen.html This change should be backward compatible: if there is a project using fortran and CXX, they had to set the LINKER_LANGUAGE explicitely, otherwise cmake complained (but still generated the project files). Explicitely setting the linker language still overrides automatic detection. If somebody has a custom language for cmake and the PREFERENCE starts with "P", its changed to 100, which gives it preference over all other languages (except the other custom languages which have also "Prefered"). "None" is converted to 0. Alex | ||||
* | ENH: make supporting embedded compilers need a user specific linker file for | Alexander Neundorf | 2007-07-02 | 1 | -0/+51 |
compiling an executable (amd thus cannot build the compiler-id program) easier by providing CMAKE_FORCE_XXX() macros which force cmake to use the given compilers anyway Alex |