summaryrefslogtreecommitdiffstats
path: root/Utilities
Commit message (Collapse)AuthorAgeFilesLines
* Merge topic 'doc-presets'Brad King2021-02-181-0/+1
|\ | | | | | | | | | | | | | | | | | | 47ab2d4d2e Help: Clarify role of binaryDir inheritance in cmake-presets(7) 0e3c361f77 Help: Link to tool-specific preset arguments from cmake-presets(7) dd6165fbd4 Help: Mention version 2 in cmake-presets(7) cdbd1ae64b Utilities/Sphinx: Avoid converting -- to an en-dash Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5829
| * Utilities/Sphinx: Avoid converting -- to an en-dashBrad King2021-02-181-0/+1
| |
* | Configure CMake itself with policies through CMake 3.19Brad King2021-02-102-2/+2
|/
* curl: Set build options the way we need for CMakeBrad King2021-02-031-0/+2
|
* Merge branch 'upstream-curl' into update-curlBrad King2021-02-03145-6620/+9148
| | | | | * upstream-curl: curl 2021-02-03 (2f33be81)
* curl: Update script to get curl 7.75.0Brad King2021-02-031-1/+1
|
* Utilities: Suppress warnings in third-party code when using IntelLLVMBrad King2021-01-2811-11/+11
|
* gitlab-ci: consolidate release and package job infrastructureBrad King2021-01-272-2/+2
| | | | | | 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.
* Merge topic 'rel-package-names'Brad King2021-01-277-9/+9
|\ | | | | | | | | | | | | | | 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-262-2/+2
| |
| * Utilities/Release: Rename Linux packages to 'linux-$arch'Brad King2021-01-255-7/+7
| |
* | Merge topic 'update-bison-parser'Brad King2021-01-271-6/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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: Manual removing code from Bison is no longer neededChristoph GrĂ¼ninger2021-01-251-5/+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.
| * | LexerParser: Do not use GNU Bison's yacc mode, we use Bison extensionsChristoph GrĂ¼ninger2021-01-251-1/+1
| |/ | | | | | | Silence Bison warnings regarding use of Bison extensions.
* | libarchive: Fix lzma_stream_encoder_mt detectionRodolfo Lima2021-01-261-1/+7
| | | | | | | | | | The test for lzma_stream_encoder_mt was always failing because the lzma libraries weren't being used by linker.
* | cm::optional: Fix `-Wunused-parameter` warnings in comparison operatorsBrad King2021-01-251-4/+4
|/
* Utilities/Sphinx: Add role and directive for 'genex' in CMake domainBrad King2021-01-182-2/+20
| | | | | | | | | | | | | | | | | This enables cross-reference syntax for CMake generator expressions: :genex:`SOME_GENEX` :genex:`$<SOME_GENEX>` :genex:`$<SOME_GENEX:...>` and definition of CMake generator expressions via a directive: .. genex:: SOME_GENEX .. genex:: $<SOME_GENEX> .. genex:: $<SOME_GENEX:...> It also adds generator expressions defined by the directive and by `Help/genex/SOME_GENEX.rst` documents to the index.
* Merge branch 'backport-rel-macos-modern' into rel-macos-modernBrad King2021-01-072-0/+127
|\
| * Utilities/Release: Add script to build Qt 5.15.2 macOS universal binariesBrad King2021-01-071-0/+125
| | | | | | | | | | These may be used to build a CMake universal binary for macOS that supports both architectures on Apple Silicon and is compatible with OS X 10.13.
| * Utilities/Release: Fix macOS Qt 5.9 build script umaskBrad King2021-01-071-0/+2
| | | | | | | | Produce a tarball with world-readable permissions.
* | Code style: add missed explicit 'this->'Oleksandr Koval2021-01-053-2411/+2883
| | | | | | | | | | CMake uses explicit 'this->' style. Using custom clang-tidy check we can detect and fix places where 'this->' was missed.
* | Merge branch 'backport-rel-linux-aarch64' into rel-linux-aarch64Brad King2020-12-229-0/+347
|\ \ | |/
| * Utilities/Release: Add docker specs for Linux aarch64 binariesHi Key2020-12-229-0/+347
| | | | | | | | | | | | | | | | Base them on the existing `x86_64` specs. Update the centos base image from centos 6 to centos 7 to get aarch64 support. The resulting binaries require GLIBC 2.17. Fixes: #17923
* | Merge topic 'rel-macos-apple-silicon'Brad King2020-12-152-0/+21
|\ \ | |/ | | | | | | | | | | 23de430545 Utilities/Release: Update macOS Qt 5.9 build for platform versioning Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5615
| * Utilities/Release: Update macOS Qt 5.9 build for platform versioningBrad King2020-12-142-0/+21
| | | | | | | | | | | | | | | | | | Backport the upstream Qt patch [1] to link Qt binaries using the `-isysroot` flag instead of `-Wl,-syslibroot`. This is needed so that the binaries have a SDK version set, which is needed for runtime validation on modern macOS versions. [1] https://code.qt.io/cgit/qt/qtbase.git/commit/?id=6387138a7991b4588639dc48847f175b5afaff84
* | Merge topic 'update-curl'Brad King2020-12-14328-3684/+4813
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | d0bac89cea curl: Set build options the way we need for CMake 54931fdff0 Merge branch 'upstream-curl' into update-curl 5aacc593a9 curl 2020-12-09 (e0528597) 4cd65e5d88 curl: Update script to get curl 7.74.0 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5592
| * | curl: Set build options the way we need for CMakeBrad King2020-12-111-1/+3
| | |
| * | Merge branch 'upstream-curl' into update-curlBrad King2020-12-09327-3682/+4809
| | | | | | | | | | | | | | | * upstream-curl: curl 2020-12-09 (e0528597)
| * | curl: Update script to get curl 7.74.0Brad King2020-12-091-1/+1
| | |
* | | Merge topic 'rel-macos-apple-silicon'Brad King2020-12-102-0/+138
|\ \ \ | |/ / |/| / | |/ | | | | | | | | | | | | | | 56a075eb5d ci: update macOS package to produce universal binaries b184cc256b ci: do not use sccache for macOS packaging 41bddf1028 ci: update to pre-built Qt 5.9.9 universal binaries for macOS packages b201dc0d42 Utilities/Release: Add script to build Qt 5.9.9 macOS universal binaries Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !5595
| * Utilities/Release: Add script to build Qt 5.9.9 macOS universal binariesBrad King2020-12-102-0/+138
| | | | | | | | | | These may be used to build a CMake universal binary for macOS that supports both architectures on Apple Silicon and is compatible with OS X 10.10.
* | Help: Improve styling for versionadded/deprecated directivesNikita Nemkin2020-12-021-0/+6
| | | | | | | | | | | | | | Sphinx theme CSS removes top margin for dd > p combination, but directives add an intervening div and need a separate rule. Issue: #19715
* | Merge topic 'doc-html-lang'Brad King2020-11-091-0/+1
|\ \ | |/ | | | | | | | | | | f25e4313ac Utilities/Sphinx: Tell Sphinx that documentation is written in English Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5480
| * Utilities/Sphinx: Tell Sphinx that documentation is written in EnglishBrad King2020-11-091-0/+1
| | | | | | | | Fixes: #21409
* | cm::optional: Add constructor delegation to nullopt_t constructorKyle Edwards2020-10-221-0/+1
| | | | | | | | | | | | Some static analysis tools incorrectly identify this constructor as leaving _has_value in an undefined state. Explicitly call the default constructor to force _has_value to false.
* | cm::optional: Fix move assignmentKyle Edwards2020-10-211-13/+34
| |
* | Configure CMake itself with policies through CMake 3.18Brad King2020-10-132-2/+2
|/
* IWYU: Map <*> headers to <cm/*> headersKyle Edwards2020-10-081-1/+6
| | | | | For headers which exclusively contain things that were not present in C++11.
* Merge topic 'sphinx-deprecations'Brad King2020-10-061-27/+27
|\ | | | | | | | | | | | | | | 2254fcb68f Utilities/Sphinx: Avoid using deprecated sphinx APIs e0f643dddc Utilities/Sphinx: Clarify check for sphinx < 1.4 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5326
| * Utilities/Sphinx: Avoid using deprecated sphinx APIsBrad King2020-10-051-19/+23
| | | | | | | | | | | | | | | | Sphinx has deprecated `sphinx.util.pycompat.htmlescape` and `sphinx.builders.qthelp.QtHelpBuilder`. We only import these as part of a monkey-patch to work around a bug in versions of sphinx before 1.7.2, so make that code path conditional. The imports are not deprecated on the versions where we need them.
| * Utilities/Sphinx: Clarify check for sphinx < 1.4Brad King2020-10-051-8/+4
| |
* | Merge branch 'upstream-expat' into update-expatBrad King2020-10-057-36/+64
| | | | | | | | | | | | # By Expat Upstream * upstream-expat: expat 2020-10-03 (162e16b0)
* | expat: Update script to get Expat 2.2.10Brad King2020-10-051-1/+1
|/
* Utilities/Scripts: Update regenerate-lexers.bashKyle Edwards2020-10-021-1/+4
| | | | | | | 62d7acc6 added arguments to Flex when regenerating cmCommandArgumentLexer, but this was not reflected in Utilities/Scripts/regenerate-lexers.bash. Update the script with the proper arguments.
* libuv: Add support for building for QNX within CMakeElad Lahav2020-09-251-0/+18
|
* Merge topic 'update-libuv'Brad King2020-09-2449-536/+1602
|\ | | | | | | | | | | | | | | | | | | 7a0506bafe libuv: Suppress conversion warning on Windows 2269ad6a0a libuv: Add fs_copy stub to cmake-bootstrap.c e21325c2c6 Merge branch 'upstream-libuv' into update-libuv c1463f959f libuv 2020-09-22 (ed5b42d5) Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5259
| * libuv: Suppress conversion warning on WindowsBrad King2020-09-231-1/+1
| | | | | | | | | | Add a cast to avoid the conversion warning with minimal changes to third-party code.
| * libuv: Add fs_copy stub to cmake-bootstrap.cBrad King2020-09-231-0/+8
| | | | | | | | | | This is now called by `uv__fs_sendfile` in `src/unix/fs.c` but we do not need that feature during CMake bootstrap.
| * Merge branch 'upstream-libuv' into update-libuvBrad King2020-09-2348-536/+1594
| | | | | | | | | | * upstream-libuv: libuv 2020-09-22 (ed5b42d5)
* | zstd: version 1.4.5 updateCristian Adam2020-09-232-1/+4
| | | | | | | | | | Add source files needed to properly compile / link to zstd version 1.4.5