summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'upstream-KWSys' into update-kwsysBrad King2016-07-182-71/+166
|\ | | | | | | | | * upstream-KWSys: KWSys 2016-07-15 (f396bf43)
| * KWSys 2016-07-15 (f396bf43)KWSys Upstream2016-07-182-71/+166
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Code extracted from: http://public.kitware.com/KWSys.git at commit f396bf43fc8a3e475e703acb99d629d123dbd003 (master). Upstream Shortlog ----------------- Brad King (2): e43689db SystemTools: Factor out environment storage class 2aa7dd82 SystemTools: Do not free buffer passed to putenv("A=") on Windows Dāvis Mosāns (4): 19c31914 SystemTools: Abstract environment storage character type 61301786 SystemTools: Tweak GetEnv/PutEnv implementation layout 85920d53 SystemTools: Teach GetEnv/PutEnv to use correct encoding on Windows f396bf43 SystemTools: Add HasEnv function
* | Merge branch 'release'Brad King2016-07-180-0/+0
|\ \
| * \ Merge branch 'ninja-no-accidental-rsp' into releaseBrad King2016-07-151-1/+1
| |\ \
| * \ \ Merge branch 'vs14-debug-enum-older-toolsets' into releaseBrad King2016-07-131-1/+2
| |\ \ \
* | \ \ \ Merge topic 'vs-natvis'Brad King2016-07-182-0/+7
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | a6290cff VS: Add support for NATVIS files
| * | | | | VS: Add support for NATVIS filesRobert Dailey2016-07-152-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add an explicit `<Natvis>` element in VS project files for `*.natvis` files. These enable custom debug visualizers for project-specific types. Fixes #16043.
* | | | | | Merge topic 'ninja-no-accidental-rsp'Brad King2016-07-181-1/+1
|\ \ \ \ \ \ | | |_|_|/ / | |/| | | | | | | | | | | | | | | | 86dd2427 Ninja: Do not force response files when no sysconf(3) limit is used
| * | | | | Ninja: Do not force response files when no sysconf(3) limit is usedBrad King2016-07-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit v3.6.0-rc1~174^2~1 (cmGlobalNinjaGenerator: Clarify logic for forcing use of response files, 2016-04-06) started using negative command line length values to represent forced use of response files but forgot to update `calculateCommandLineLengthLimit()` accordingly. Teach it to return `0` instead of `-1` when no limit is computed from the system to avoid forcing response files. Reported-by: Raphael Kubo da Costa <rakuco@FreeBSD.org>
* | | | | | Merge topic 'ninja-portable-arg-max'Brad King2016-07-181-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5ec17e61 Ninja: Generalize check for sysconf(3) call
| * | | | | | Ninja: Generalize check for sysconf(3) callRaphael Kubo da Costa2016-07-151-1/+1
| | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use `sysconf(_SC_ARG_MAX)` wherever `_SC_ARG_MAX` is available instead of hard-coding an incomplete list of operating systems that implement it. In particular, it is available on BSD platforms that were not previously listed.
* | | | | | Merge topic 'FindGIF-version'Brad King2016-07-181-11/+35
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0a6c227d FindGIF: Detect version from GIF 4.1.6 and above
| * | | | | | FindGIF: Detect version from GIF 4.1.6 and aboveBen Campbell2016-07-151-11/+35
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | GIF 4.1.6 introduced version macros in the header file. Use them to get a full version. Fixes #16196.
* | | | | | CMake Nightly Date StampKitware Robot2016-07-181-1/+1
| | | | | |
* | | | | | CMake Nightly Date StampKitware Robot2016-07-171-1/+1
| | | | | |
* | | | | | CMake Nightly Date StampKitware Robot2016-07-161-1/+1
|/ / / / /
* | | | | Merge topic 'toolchain-flag-init'Brad King2016-07-1521-54/+219
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8a98cf64 Honor CMAKE_*_LINKER_FLAGS[_<CONFIG>]_INIT set in toolchain files 37d15c39 MSVC: Set all CMAKE_*_LINKER_FLAGS_INIT directly 55c884ed Embarcadero: Set all CMAKE_*_LINKER_FLAGS_INIT directly aec3c79a Strip CMAKE_*_LINKER_FLAGS[_<CONFIG>] initializer whitespace
| * | | | | Honor CMAKE_*_LINKER_FLAGS[_<CONFIG>]_INIT set in toolchain filesBrad King2016-07-1420-21/+195
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Document these variables. Change our convention for setting these variables from: set(CMAKE_EXE_LINKER_FLAGS_INIT "...") to string(APPEND CMAKE_EXE_LINKER_FLAGS_INIT " ...") so that any value previously set by a toolchain file will be used.
| * | | | | MSVC: Set all CMAKE_*_LINKER_FLAGS_INIT directlyBrad King2016-07-131-28/+19
| | | | | | | | | | | | | | | | | | | | | | | | Avoid copying CMAKE_EXE_LINKER_FLAGS_INIT to the others.
| * | | | | Embarcadero: Set all CMAKE_*_LINKER_FLAGS_INIT directlyBrad King2016-07-131-9/+5
| | | | | | | | | | | | | | | | | | | | | | | | Avoid copying CMAKE_EXE_LINKER_FLAGS_INIT to the others.
| * | | | | Strip CMAKE_*_LINKER_FLAGS[_<CONFIG>] initializer whitespaceBrad King2016-07-131-5/+9
| | | | | |
* | | | | | Merge topic 'fix-pq-libraries'Brad King2016-07-151-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 58677c32 FindPostgreSQL: Fix initialization of PostgreSQL_LIBRARIES
| * | | | | | FindPostgreSQL: Fix initialization of PostgreSQL_LIBRARIESNils Gladitz2016-07-141-1/+1
| | | | | | |
* | | | | | | Merge topic 'cmake-internal-info'Brad King2016-07-1517-40/+92
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4db08807 CMake: Report whether generators support platforms 43a68a6d cmGlobalGeneratorFactory: Use CM_OVERRIDE for all derived classes af0e1cd4 Make CMake version dirty state available to code 6a077b5d Make CMake version suffix available to code
| * | | | | | | CMake: Report whether generators support platformsTobias Hunger2016-07-1414-0/+40
| | | | | | | |
| * | | | | | | cmGlobalGeneratorFactory: Use CM_OVERRIDE for all derived classesTobias Hunger2016-07-147-35/+35
| | | | | | | |
| * | | | | | | Make CMake version dirty state available to codeTobias Hunger2016-07-143-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Set `CMake_VERSION_IS_DIRTY` to 1 or 0 depending on whether the CMake source tree is considered dirty or not.
| * | | | | | | Make CMake version suffix available to codeTobias Hunger2016-07-142-4/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make the string (e.g. "rc1" or "gSHA-dirty") available to the code.
* | | | | | | | CMake Nightly Date StampKitware Robot2016-07-151-1/+1
| |/ / / / / / |/| | | | | |
* | | | | | | Merge topic 'update-win-release'Brad King2016-07-142-2/+2
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9587011d Utilities/Release: Update Windows binary host path to CMake
| * | | | | | | Utilities/Release: Update Windows binary host path to CMakeBrad King2016-07-132-2/+2
| | |/ / / / / | |/| | | | |
* | | | | | | Merge topic 'FindOpenMP-updates'Brad King2016-07-142-10/+116
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 73e9f36e FindOpenMP: Detect version (specification date) from compiler 8f1103c0 FindOpenMP: Cleanup all variables unconditionally ec963f04 FindOpenMP: Improve documentation formatting
| * | | | | | | FindOpenMP: Detect version (specification date) from compilerSujin Philip2016-07-132-0/+107
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Port changes from VTK commit fda6a31cb9 (Added Improved FindOpenMP module, 2015-04-23). Improve use of try_compile to avoid needing to pass OpenMP flags as libraries.
| * | | | | | | FindOpenMP: Cleanup all variables unconditionallyBrad King2016-07-131-2/+4
| | | | | | | |
| * | | | | | | FindOpenMP: Improve documentation formattingBrad King2016-07-131-11/+8
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also drop link to OpenMP compilers because our supported list may not include all compilers.
* | | | | | | Merge topic 'ExternalData-SecurityFix'Brad King2016-07-141-1/+2
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9b588b2b ExternalData: Hide security-sensitive details from output
| * | | | | | | ExternalData: Hide security-sensitive details from outputAlex Turbov2016-07-131-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Do not disclose credentials when printing URIs used to fetch external resources.
* | | | | | | | Merge topic 'cmake-ifw-package-updates'Brad King2016-07-144-11/+29
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2aadb02f QtIFW: Don't show component selection page if it don't need 53992808 QtIFW: process USE_LGPL when CMake_INSTALL_COMPONENTS 8ae035a5 CMake: install COMPONENT cmcldeps
| * | | | | | | | QtIFW: Don't show component selection page if it don't needKonstantin Podsvirov2016-07-131-1/+2
| | | | | | | | |
| * | | | | | | | QtIFW: process USE_LGPL when CMake_INSTALL_COMPONENTSKonstantin Podsvirov2016-07-131-2/+4
| | | | | | | | |
| * | | | | | | | CMake: install COMPONENT cmcldepsKonstantin Podsvirov2016-07-133-8/+23
| | |/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | Added in Tools group with IFW installer
* | | | | | | | Merge topic 'ExternalProject-alt-urls'Brad King2016-07-142-41/+62
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2eec433f ExternalProject: Add support for multiple alternative URLs
| * | | | | | | | ExternalProject: Add support for multiple alternative URLsLars Schmertmann2016-07-132-41/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now it is possible to pass multiple URLs as a list that will be tried in and foreach(). So it will try next URL if the previous failed. Fixes #15749.
* | | | | | | | | Merge topic 'vs14-debug-enum-older-toolsets'Brad King2016-07-141-1/+2
|\ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | 36fc3a53 VS: Fix VS 2015 .vcxproj debug setting for v90 toolset (#15986)
| * | | | | | | | VS: Fix VS 2015 .vcxproj debug setting for v90 toolset (#15986)Brad King2016-07-131-1/+2
| | | | | | | | |
* | | | | | | | | Merge topic 'no-implicit-link-clang-rt'Brad King2016-07-142-1/+7
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 35322226 CMakeParseImplicitLinkInfo: Exclude libclang_rt libraries
| * | | | | | | | | CMakeParseImplicitLinkInfo: Exclude libclang_rt librariesBrad King2016-07-112-1/+7
| | |_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These libraries are used for Clang runtime analysis support with flags like `-fsanitize=memory` and are not actually implicitly linked libraries. Fixes #16194.
* | | | | | | | | CMake Nightly Date StampKitware Robot2016-07-141-1/+1
| |_|_|/ / / / / |/| | | | | | |
* | | | | | | | Merge topic 'findicu'Brad King2016-07-131-8/+7
|\ \ \ \ \ \ \ \ | |_|_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | 0e9e6aa8 Tests: Run clang-format on FindICU test code
| * | | | | | | Tests: Run clang-format on FindICU test codeBrad King2016-07-131-8/+7
| | | | | | | |