| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
| |
```
git grep -lz 'Copyright.txt or https://cmake.org/licensing ' |
while IFS= read -r -d $'\0' f ; do
sed -i '/Copyright.txt or https:\/\/cmake.org\/licensing / {
s/Copyright.txt/LICENSE.rst/
}' "$f" ; done
```
|
| |
|
|
| |
Issue: #26426
|
| |
|
|
|
|
|
| |
If not explicitly set to `-f `, the default `@` is used,
which is not supported by Tasking.
Issue: #26426
|
| |
|
|
|
|
|
| |
The extension `.o` is used by the compiler itself,
and is the only one found in its documentation.
Issue: #26426
|
| |\
| |
| |
| |
| |
| |
| |
| |
| | |
00932ea864 Introduce CMAKE_<LANG>_LINK_MODE variable.
Acked-by: Kitware Robot <kwrobot@kitware.com>
Tested-by: buildbot <buildbot@kitware.com>
Acked-by: Alex <leha-bot@yandex.ru>
Merge-request: !10162
|
| | |
| |
| |
| |
| |
| | |
This variable define how the link step is done. Possible values are:
* DRIVER: the compiler is used as driver for the link step
* LINKER: the linker is used directly for the link step.
|
| |/
|
|
| |
Issue: #26591
|
| |
|
|
|
|
|
|
|
|
|
| |
Don't initialize the other CMAKE_<LANG>_COMPILER_PREDEFINES_COMMAND
variables.
The only language variant that is used is
CMAKE_CXX_COMPILER_PREDEFINES_COMMAND, and the other language variants
contained invalid, namely C++-specific commands.
Fixes: #23968
|
| |
|
|
|
|
|
| |
Architecture specific compile options should be set through
toolchain files.
Fixes: #24115
|
| |
|
|
| |
Fixes: #24114
|
| | |
|
|
|
Add support for the Tasking compiler toolset:
* TriCore Compiler Toolset 6.3 (with TriCore, ARM, MCS,
8051 and PCP architecture compilers)
* SmartCode Compiler Toolset 10.1 (with TriCore, ARC, MCS,
8051 architecture compilers)
* ARM Compiler 6.0
* MCS Complier 3.3
* 8051 Compiler 7.2
Fixes: #23756
|