MantisBT - CMake | |||||
| View Issue Details | |||||
| ID | Project | Category | View Status | Date Submitted | Last Update |
| 0014481 | CMake | CMake | public | 2013-10-13 19:44 | 2014-03-05 09:58 |
| Reporter | Dragos Carp | ||||
| Assigned To | Brad King | ||||
| Priority | normal | Severity | major | Reproducibility | always |
| Status | closed | Resolution | fixed | ||
| Platform | x86_64 | OS | Linux | OS Version | Fedora 19 |
| Product Version | CMake 2.8.11.2 | ||||
| Target Version | CMake 3.0 | Fixed in Version | CMake 3.0 | ||
| Summary | 0014481: Unable to support a new language using CMAKE_MODULE_PATH within an outside project. | ||||
| Description | As described in Modules/CMakeAddNewLanguage.txt it should be possible to add support for a new language (D in my case) by including the language modules using the CMAKE_MODULE_PATH variable. This works very nicely with the exception of the compiler identification, when Modules/CMakeDetermineCompilerId.cmake contains hardcoded the path to the source configuration file in line 88: file(READ ${CMAKE_ROOT}/Modules/${src}.in ID_CONTENT_IN) | ||||
| Steps To Reproduce | |||||
| Additional Information | Following patch will correct the problem: --- install-cmake-ref/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake 2013-10-07 17:31:00.000000000 +0200 +++ install-cmake/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake 2013-10-14 00:45:00.000000000 +0200 @@ -85,7 +85,8 @@ #----------------------------------------------------------------------------- # Function to write the compiler id source file. function(CMAKE_DETERMINE_COMPILER_ID_WRITE lang src) - file(READ ${CMAKE_ROOT}/Modules/${src}.in ID_CONTENT_IN) + find_file(src_in ${src}.in PATHS ${CMAKE_ROOT}/Modules ${CMAKE_MODULE_PATH}) + file(READ ${src_in} ID_CONTENT_IN) string(CONFIGURE "${ID_CONTENT_IN}" ID_CONTENT_OUT @ONLY) file(WRITE ${CMAKE_${lang}_COMPILER_ID_DIR}/${src} "${ID_CONTENT_OUT}") endfunction() | ||||
| Tags | No tags attached. | ||||
| Relationships | |||||
| Attached Files | |||||
| Issue History | |||||
| Date Modified | Username | Field | Change | ||
| 2013-10-13 19:44 | Dragos Carp | New Issue | |||
| 2013-10-25 09:55 | Brad King | Assigned To | => Brad King | ||
| 2013-10-25 09:55 | Brad King | Status | new => assigned | ||
| 2013-10-25 09:55 | Brad King | Target Version | => CMake 3.0 | ||
| 2013-10-25 09:55 | Brad King | Note Added: 0034243 | |||
| 2013-10-28 09:16 | Brad King | Note Added: 0034271 | |||
| 2013-10-28 09:17 | Brad King | Status | assigned => resolved | ||
| 2013-10-28 09:17 | Brad King | Resolution | open => fixed | ||
| 2013-10-28 09:17 | Brad King | Fixed in Version | => CMake 3.0 | ||
| 2014-03-05 09:58 | Robert Maynard | Note Added: 0035299 | |||
| 2014-03-05 09:58 | Robert Maynard | Status | resolved => closed | ||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||