Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Change the default rules so they fit better to the new ASM handling | Alex Neundorf | 2011-02-23 | 1 | -2/+0 |
| | | | | | | | | CMAKE_ASM_COMPILE_OBJECT is now so that it fits for GNU, Intel, HP and Sun ASM_ATT had to be adjusted. Also adjusted the default CMAKE_ASM_LINK_EXECUTABLE Alex | ||||
* | Actually use CMAKE_ASM_COMPILER for asm, instead of CMAKE_C_COMPILER | Alex Neundorf | 2011-02-23 | 1 | -1/+1 |
| | | | | Alex | ||||
* | Add ASM support for the Intel compiler | Alex Neundorf | 2011-02-23 | 1 | -1/+1 |
| | | | | Alex | ||||
* | Rework the way assembler is handled, use the C/CXX compiler by default | Alex Neundorf | 2011-01-30 | 1 | -0/+8 |
This commit changes the way how the assembler support works in cmake. The language "ASM" now always uses the C/Cxx compiler instead of the assembler directly. This fixes #8392, assembler files are not preprocessed. If one wants to use the assembler directly, the specific assembler "dialect" has to be enabled. I.e. to get as/gas, you have to use now ASM-ATT, the same way for ASM_MASM and ASM_NASM. Implemented this now for gcc. SunStudio, IBM, HP and Intel still todo. Alex |