summaryrefslogtreecommitdiffstats
path: root/Modules/Compiler/IAR-FindBinUtils.cmake
Commit message (Collapse)AuthorAgeFilesLines
* IAR: Add 8051 supportMicael Borgefeldt2019-10-111-1/+2
| | | | Issue: #17264
* IAR: Add v850 supportNico Mueller2019-09-161-1/+2
| | | | | | Add compiler identification for V850. Issue: #17264
* IAR: Add support for the RISC-V compilerStefan Andersson2019-07-081-1/+2
|
* IAR: Add architecture support for RL78, RH850 and MSP430Stefan Andersson2019-05-081-3/+6
|
* IAR: Changes required for LinuxStefan Andersson2019-04-251-11/+14
|
* IAR: Generalize and add support for IAR RX compilerStefan Andersson2019-04-121-10/+10
| | | | Moved common ASM setup to the common macros and changed version check.
* Merge topic 'fix-iar-binutils-for-cxx'Brad King2017-12-121-2/+2
|\ | | | | | | | | | | | | e4707048 IAR: FindBinUtils should work for CXX as well as C Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !1572
| * IAR: FindBinUtils should work for CXX as well as CIslam Amer2017-12-121-2/+2
| | | | | | | | | | | | The IAR compiler test works when a project specifies LANGUAGES C CXX but fails if CXX comes before C. This change makes it work regardless of the order.
* | Fix trivial typos in textluzpaz2017-11-031-1/+1
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | Some are user facing. Found using codespell -q 3 --skip="./Utilities" -I .cmake-whitelist.txt` whereby the whitelist contained: ans dum helpfull emmited emmitted buil iff isnt nto ot pathes substract te todays upto whitespaces
* IAR: Improve support for IAR ARM CompilerNorbert Lange2017-06-291-0/+54
Make the implementation for this compiler more complete. IAR has multiple C++ modes, historically they were reduced c++ versions for embedded that gradually improved to the full standard (which can be reduced again by e.g. disabling rtti and exceptions). The new implementation picks the best available, but the c++ mode can also be overridden by defining `CMAKE_IAR_CXX_FLAG`. Add C/C++ standard flags so that all modes up to and including the last supported standard are defined. Fixes: #16826