- Nov 30, 2017
-
-
Brad King authored
-
1e9b7d3c server: Switched to a auto model for handles f43b9219 tests: Added tests to verify UV RAII semantics/constructs a3abb85c Add RAII handles for libuv handle types 90f8db26 tests: unconditionally enabled server tests b56b51fc utility: Disabled copy ctors in thread classes Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1453
-
acb4cb95 CMakeFindBinUtils: Improve switch between MSVC- and GNU-like tools Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1533
-
fb3c5bfd cmTargetPropertyComputer: whitelist custom properties Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1515
-
3726ded1 FindCUDA: Add cublas device library to separable compilation Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Robert Maynard <robert.maynard@kitware.com> Merge-request: !1446
-
95646591 FindIconv: Add the FindIconv module. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1530
-
3eee3301 CheckIncludeFiles: Fix name of source file used for check Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1538
-
Brad King authored
In commit 7669695a (CheckIncludeFiles: extend to allow a LANGUAGE argument, 2017-11-08) the file name used for the check was accidentally left as `${var}.c`, where `var` is not a variable we define. It was passing tests by accidentally using just `.c` as the file name, but can break in real projects that may leave `var` defined to something else. The reference was taken from similar code in CheckTypeSize where the variable names are different. Fix our reference to be `${VARIABLE}`.
-
Kitware Robot authored
-
- Nov 29, 2017
-
-
-
-
The `uv_*_t` handle types are closed by `uv_close`, but the semantics are tricky. Calling `uv_close` may not close immediately. Instead it hands ownership to the uv loop to which the handle is currently attached. When the loop decides to close it, a callback is used to allow the `uv_close` caller to free resources. Provide an abstraction layer as `cm::uv_*_ptr` types corresponding to the `uv_*_t` handle types. Each pointer is either empty (`nullptr`) or has an initialized handle attached to a loop. Use move semantics to ensure a single owner of the handle so that clients can predict when the handle is destroyed.
-
-
-
fbe91dba CTest: Check failed fixture dependencies before test command and args Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Brad King <brad.king@kitware.com> Merge-request: !1526
-
Add cublas libraries to separable compilation device link line to resolve missing symbols when using cublas device library.
-
Christian Pfeiffer authored
This module provides abstraction over the various ways POSIX platforms handle the iconv calls defined in POSIX.1-2001 and later versions.
-
Brad King authored
-
e04f1d1b CodeBlocks: add option for the CB compiler ID Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1512
-
4ff89fb6 AIX: Add -pthread flag to enable std::thread with GCC 6e613ff3 bootstrap: Add infrastructure to detect threading flags Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1535
-
f969f1a9 Clang: Do not mistake clang-cl 6.0 for GNU-like clang Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1522
-
b31d5e1d CheckIncludeFiles: improve warning for missing argument 1f1c2a9f CheckIncludeFiles: clean up documentation of new features c8609992 Help: Add notes for topic 'CheckIncludeFiles-language-CXX' ea1bb902 CheckIncludeFiles: add unit tests 7669695a CheckIncludeFiles: extend to allow a LANGUAGE argument Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1464
-
458c589f FindBoost: Add Windows ABI tag for Clang debug 00e39a4a FindBoost: Use CMAKE_CXX_COMPILER_ID for Intel compiler Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1529
-
72d3161a TestDriver: fix style-'variableScope' cppcheck warning Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1518
-
f19c70c3 Fortran: Add option to run the compiler through launcher tools Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1517
-
2f72573a CUDA: Treat /usr/include as an implicit include directory Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1528
-
24e2bc42 GNUInstallDirs: Update link to 64-bit ABI documents Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1527
-
Kitware Robot authored
-
- Nov 28, 2017
-
-
Craig Scott authored
-
Brad King authored
-
Brad King authored
In our loop to detect -std flags, add another layer to detect threading flags.
-
Brad King authored
Merge-request: !1522
-
Ismail Donmez authored
The check added by commit v3.10.0-rc2~2^2 (Clang: Diagnose unsupported GNU-like clang targeting MSVC ABI, 2017-10-10) is incorrectly detecting clang-cl 6.0 as GNU-like. Currently cmake is testing if the clang compiler accepts `--version` to see if it accepts GNU style flags. However, with the latest llvm snapshot this also works for clang-cl: > clang-cl --version clang version 6.0.0 (trunk) Target: x86_64-pc-windows-msvc Thread model: posix InstalledDir: C:\Program Files\LLVM\bin So instead we should use the `/?` flag which fails with clang but works with clang-cl: > clang-cl /? &> /dev/null; echo $? 0 > clang /? &> /dev/null; echo $? 1 Fixes: #17518
-
Brad King authored
The switch was not considering some languages, such as `ASM`. Instead of memorizing the list of languages in the condition, use a language specified by the includer. Fixes: #17510
-
Kitware Robot authored
-
- Nov 27, 2017
-
-
CodeBlocks uses his own compiler ID string which may differ from CMAKE_<LANG>_COMPILER_ID. In particular CodeBlocks supports a large number of different compiler configurations (with different IDs) This commit adds a cache variable "CMAKE_CODEBLOCKS_COMPILER_ID", so the user might adjust it when needed.
-
Thanks to Walter Pearce for this suggestion. Fixes: #17505
-
-
Brad King authored
Merge-request: !1528
-
Brad King authored
We already do this for C and C++. Fixes: #17512
-