summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/ParseImplicitLinkInfo/results/linux-C-XL-16.1.0.0.output
Commit message (Collapse)AuthorAgeFilesLines
* LinkerId: Fix detection of linker tool for XL compilersBrad King2024-01-031-1/+1
| | | | | These compilers print an explicit `export XL_LINKER=` line. Parse it separately.
* Tests: Cover detection of linker tool while parsing implicit link infoBrad King2024-01-031-0/+1
| | | | | There are a few cases where content besides the path is picked up. Match them for now. We will fix them in following commits.
* CMakeDetermineCompilerABI: Revert "Parse library arch from versioned paths"Robert Maynard2021-04-051-1/+1
| | | | | | | | | | The change in commit 657fc3a9a7 (CMakeDetermineCompilerABI: Parse library arch from versioned paths, 2021-02-03, v3.20.0-rc1~40^2) caused `CMAKE_LIBRARY_ARCHITECTURE` to be populated on non-multiarch platforms if their compilers happen to use `$arch/$version` library directories. Revert the use of versioned library paths. Fixes: #22024
* CMakeDetermineCompilerABI: Parse library arch from versioned pathsRobert Maynard2021-02-041-0/+1
| | | | | | Teach CMake how to extract `CMAKE_<LANG>_LIBRARY_ARCHITECTURE` from versioned paths such as `/usr/lib/gcc/x86_64-linux-gnu/9`. These kind of paths are generated by NVHPC compilers.
* Introduce a ParseImplicitLinkInfo testRobert Maynard2019-08-281-0/+2
By sharing the information used by ParseImplicitIncludeInfo we can also verify the parsing of implicit link info such as directories.