summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* FindMPI: Add support for IntelLLVMWilliam R. Dieter2021-01-281-1/+11
| | | | Signed-off-by: William R. Dieter <william.r.dieter@intel.com>
* IRSL: Add support for IntelLLVMWilliam R. Dieter2021-01-281-7/+7
| | | | | | Use the same code paths as the `Intel` compiler id. Signed-off-by: William R. Dieter <william.r.dieter@intel.com>
* cmake: Reduce default recursion depth when compiling with IntelLLVMBrad King2021-01-281-0/+2
| | | | | | This compiler makes stack frames large enough (at least in Debug builds) that CMake language recursion to depth 1000 overflows the stack. Reduce the limit for this compiler.
* Utilities: Suppress warnings in third-party code when using IntelLLVMBrad King2021-01-2812-12/+12
|
* IntelLLVM: Add support for Intel LLVM-based compilersWilliam R. Dieter2021-01-2829-12/+497
| | | | | | | | | | | | | | | | | | Using a single ID 'IntelLLVM' for the suite of Intel compilers based on the LLVM backend. The 'IntelLLVM' ID are used for C, C++, and Fortran. Data Parallel C++ will be handled in a separate commit. The C and C++ definitions are based on the Clang definitions. The Intel LLVM-based C and C++ compilers are based on the Clang front end, so existing Clang options are more likely to be a good match than options for the older Intel compilers. Fortran is based on the older Fortran front end with the LLVM backend. It has a similar interface to the older versions, though many options are shared with the C and C++ compilers. Fixes: #21561 Signed-off-by: William R. Dieter <william.r.dieter@intel.com>
* GenerateExportHeader: Recognize Intel < 12 more strictlyWilliam R. Dieter2021-01-281-1/+1
| | | | | | Match exactly the `Intel` compiler id. Signed-off-by: William R. Dieter <william.r.dieter@intel.com>
* Tests: Cleanup CPack message when files are expected and none are foundWilliam R. Dieter2021-01-281-0/+5
| | | | | | | | | | | | Previously, when looking for exactly one file and the number of files was not one, the test printed out an error message saying that too many files were found, then printing the list of files. However, 0 is not 1 and also not too many files. To reduce confusion, this commit adds a different message when 0 files are found and 1 is expected. Signed-off-by: William R. Dieter <william.r.dieter@intel.com>
* Tests: Update RunCMake.DependencyGraph to canonicalize paths when comparingWilliam R. Dieter2021-01-281-1/+2
| | | | | | | A symbolic link in the path was causing false path mismatches. Resolving the symlinks makes both paths identical. Signed-off-by: William R. Dieter <william.r.dieter@intel.com>
* Tests: Make GCOV test more robust to symbolic links in pathsWilliam R. Dieter2021-01-281-0/+19
| | | | | | | | Symbolic links in the path to the cmake build directory caused some paths to have '..' directories in the path, which are equivalent, but not a string match for the expected path. As a result, some tests fail. Signed-off-by: William R. Dieter <william.r.dieter@intel.com>
* Tests: Fix Fortran test C function prototypesWilliam R. Dieter2021-01-281-2/+2
| | | | | | | | Several extern functions were declared without return type, which results in warnings. The functions are for calling Fortran subroutines, so there should not be a return value. Signed-off-by: William R. Dieter <william.r.dieter@intel.com>
* Tests: Use the CVS :local: access method for local directoriesWilliam R. Dieter2021-01-282-17/+7
| | | | | | | | | | | | | Windows absolute paths start with a drive letter, followed by the path. Without an explicit access method specification, CVS treats the drive letter as a host name. This changes explicitly adds `:local:` to local directory repository paths used in tests to avoid this confusion. See the CVS Manual [1] for more information. [1] https://www.gnu.org/software/trans-coord/manual/cvs/cvs.html#Repository Signed-off-by: William R. Dieter <william.r.dieter@intel.com>
* Tests: Fix CMP0115 warnings in CompileFeatures testBrad King2021-01-281-1/+4
| | | | Pass source file extensions explicitly.
* Merge topic 'nvhpc-compiler'Brad King2021-01-2821-11/+92
|\ | | | | | | | | | | | | | | | | | | | | 4de28ba4e6 Tests: Update tests for NVHPC compiler 90502d76b7 FindOpenMP: Add support for NVHPC compiler 76dee5831b FindOpenACC: Add support for NVHPC compiler ff7bab83c2 GenerateExportHeader: Add support for NVHPC compiler 83ea49818f NVHPC: Add support for NVIDIA HPC SDK compilers based on PGI Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5475
| * Tests: Update tests for NVHPC compilerTin Huynh2021-01-275-8/+8
| | | | | | | | Treat it just like PGI.
| * FindOpenMP: Add support for NVHPC compilerTin Huynh2021-01-271-0/+1
| |
| * FindOpenACC: Add support for NVHPC compilerTin Huynh2021-01-271-1/+4
| |
| * GenerateExportHeader: Add support for NVHPC compilerBrad King2021-01-271-2/+2
| | | | | | | | Treat it just like PGI.
| * NVHPC: Add support for NVIDIA HPC SDK compilers based on PGITin Huynh2021-01-2713-0/+77
| | | | | | | | | | | | | | Identify the compilers as `NVHPC` to distinguish it from the older PGI compilers from which they evolved, and from other `NVIDIA` compilers. Fixes: #20887
* | Merge topic 'ci-aarch64'Brad King2021-01-2814-89/+296
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 430224b6e8 gitlab-ci: add test:debian10-aarch64-ninja job 300a91d42d gitlab-ci: add build:centos7-aarch64 job d997637fa3 gitlab-ci: add rules infrastructure to allow non-MR jobs a54e43670d gitlab-ci: rename build:centos6-{release => x86_64} 616bf0d2f0 gitlab-ci: consolidate release and package job infrastructure 227ca689a7 ci: download cmake on aarch64 a601ed8e0e ci: download ninja on aarch64 54c2c5f889 ci: generalize ninja download script to support non-upstream builds ... Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5745
| * | gitlab-ci: add test:debian10-aarch64-ninja jobBrad King2021-01-275-0/+176
| | |
| * | gitlab-ci: add build:centos7-aarch64 jobBrad King2021-01-271-0/+10
| | | | | | | | | | | | | | | Test building our release for the `aarch64` architecture. For now, leave this job out during merge requests.
| * | gitlab-ci: add rules infrastructure to allow non-MR jobsBrad King2021-01-271-0/+6
| | |
| * | gitlab-ci: rename build:centos6-{release => x86_64}Brad King2021-01-271-7/+7
| | | | | | | | | | | | This makes room for a future equivalent for other architectures.
| * | gitlab-ci: consolidate release and package job infrastructureBrad King2021-01-274-61/+27
| | | | | | | | | | | | | | | | | | Use `linux_release` in names associated with building or testing release-style binaries. Add a `.linux_package` helper to adjust the release binary build behavior for package-specific jobs.
| * | ci: download cmake on aarch64Brad King2021-01-271-0/+5
| | |
| * | ci: download ninja on aarch64Brad King2021-01-271-0/+7
| | |
| * | ci: generalize ninja download script to support non-upstream buildsBrad King2021-01-271-9/+8
| | |
| * | ci: add docker spec to build ninja for linux-aarch64Brad King2021-01-273-0/+38
| | |
| * | ci: update to use CMake 3.19.3Brad King2021-01-272-12/+12
| |/
* | CMake Nightly Date StampKitware Robot2021-01-281-1/+1
|/
* Merge topic 'clang-tidy-fixes'Brad King2021-01-27117-481/+426
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | ef935b17ab clang-tidy: fix `readability-use-anyofallof` warnings 9ac8dbbb94 clang-tidy: fix `readability-simplify-boolean-expr` warnings ca505718f4 clang-tidy: fix `readability-redundant-string-init` warnings b3b6ede6a1 clang-tidy: fix `readability-redundant-access-specifiers` warnings cdfc4e3195 clang-tidy: fix `readability-qualified-auto` warnings 808b17b120 clang-tidy: fix `readability-make-member-function-const` warnings 4470eb5179 clang-tidy: fix `performance-trivially-destructible` warnings 4f396e6528 clang-tidy: fix `performance-no-automatic-move` warnings ... Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5731
| * clang-tidy: fix `readability-use-anyofallof` warningsBen Boeckel2021-01-2714-189/+161
| |
| * clang-tidy: fix `readability-simplify-boolean-expr` warningsBen Boeckel2021-01-272-3/+2
| |
| * clang-tidy: fix `readability-redundant-string-init` warningsBen Boeckel2021-01-273-3/+0
| |
| * clang-tidy: fix `readability-redundant-access-specifiers` warningsBen Boeckel2021-01-2725-42/+0
| |
| * clang-tidy: fix `readability-qualified-auto` warningsBen Boeckel2021-01-2736-80/+85
| |
| * clang-tidy: fix `readability-make-member-function-const` warningsBen Boeckel2021-01-2737-91/+108
| |
| * clang-tidy: fix `performance-trivially-destructible` warningsBen Boeckel2021-01-2710-19/+7
| |
| * clang-tidy: fix `performance-no-automatic-move` warningsBen Boeckel2021-01-273-3/+2
| |
| * clang-tidy: fix `bugprone-suspicious-include` warningsBen Boeckel2021-01-273-1/+3
| |
| * clang-tidy: fix `bugprone-signed-char-misuse` warningsBen Boeckel2021-01-272-3/+1
| |
| * clang-tidy: fix `bugprone-reserved-identifier` warningsBen Boeckel2021-01-2713-50/+60
| |
* | Merge topic 'rel-package-names'Brad King2021-01-2710-12/+22
|\ \ | | | | | | | | | | | | | | | | | | | | | 2186f8988f Utilities/Release: Rename Windows packages to 'windows-$arch' dc9340dbc4 Utilities/Release: Rename Linux packages to 'linux-$arch' Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5738
| * | Utilities/Release: Rename Windows packages to 'windows-$arch'Brad King2021-01-263-2/+6
| | |
| * | Utilities/Release: Rename Linux packages to 'linux-$arch'Brad King2021-01-258-10/+16
| | |
* | | Merge topic 'update-bison-parser'Brad King2021-01-2719-3693/+3998
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7c6192472b LexerParser: Suppress -Wused-but-marked-unused warning in cmExprParser 6f64300a01 LexerParser: Clean up includes following include-what-you-use 699d50e376 LexerParser: Regenerate parser files with GNU Bison 3.7.4 c95442b9b1 LexerParser: Manual removing code from Bison is no longer needed 5a8a61a798 LexerParser: Do not use GNU Bison's yacc mode, we use Bison extensions Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5730
| * | | LexerParser: Suppress -Wused-but-marked-unused warning in cmExprParserBrad King2021-01-262-52/+62
| | | |
| * | | LexerParser: Clean up includes following include-what-you-useChristoph Grüninger2021-01-259-115/+115
| | | |
| * | | LexerParser: Regenerate parser files with GNU Bison 3.7.4Christoph Grüninger2021-01-2514-3666/+3977
| | | | | | | | | | | | | | | | Adjust expected test output.
| * | | LexerParser: Manual removing code from Bison is no longer neededChristoph Grüninger2021-01-255-16/+0
| | | | | | | | | | | | | | | | | | | | This was needed to avoid warnings while compiling the sources generated by older versions of GNU Bison, but is not with GNU Bison 3.7.4.