Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Compiler/TI: Avoid response file usage for linker | Josef Angstenberger | 2020-07-14 | 1 | -1/+5 |
| | | | | | | | | | | | The object and library files have to be listed after the `--run-linker` flag. But after this flag the `--cmd_file` flag for response files cannot be used any more. Putting the whole command line into a response file would work, but this is not supported by CMake (yet). | ||||
* | Compiler/TI: Add compiler flags to linker | Josef Angstenberger | 2020-07-14 | 1 | -1/+1 |
| | | | | | | | | | | | | | | By adding the compiler flags via `<FLAGS>` to the linker call, the linker can decide which default library to use. CMake replaces `<FLAGS>` by the content of `CMAKE_<LANG>_FLAGS`. So any relevant flag needs to be defined in this variable, preferably in a toolchain file. The compiler flags have to be specified before the `--run_linker` flag and the linker flags afterwards. Replaces Merge-request !4890 | ||||
* | Compiler/TI: Avoid usage of ranlib | Josef Angstenberger | 2020-07-14 | 1 | -0/+1 |
| | | | | | | | | | If a ranlib executable has been found it is used for finishing an archive. In case of the TI compiler the archive file gets corrupted. Fixes: #14876 | ||||
* | Compiler/TI: Refactor C/CXX to use a common file | Josef Angstenberger | 2020-07-14 | 1 | -0/+35 |