Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Pass large types by const&, small types by value | Daniel Pfeifer | 2017-06-03 | 1 | -2/+2 |
| | |||||
* | Use CM_DISABLE_COPY | Daniel Pfeifer | 2017-04-24 | 1 | -0/+4 |
| | |||||
* | Use quotes for non-system includes | Daniel Pfeifer | 2017-04-11 | 1 | -1/+1 |
| | | | | | | | | | | | | | Automate with: git grep -l '#include <cm_' -- Source \ | xargs sed -i 's/#include <\(cm_.*\)>/#include "\1"/g' git grep -l '#include <cmsys/' -- Source \ | xargs sed -i 's/#include <\(cmsys\/.*\)>/#include "\1"/g' git grep -l '#include <cm[A-Z]' -- Source \ | xargs sed -i 's/#include <\(cm[A-Z].*\)>/#include "\1"/g' | ||||
* | fix some include-what-you-use diagnostics | Daniel Pfeifer | 2017-02-17 | 1 | -0/+9 |
| | |||||
* | CUDA: Now pass correct FLAGS when device link cuda executables. | Robert Maynard | 2017-01-12 | 1 | -0/+3 |
| | | | | | | | | Previously we had a two issues when building cuda executables that required separable compilation. The first was that we didn't propagate FLAGS causing any -arch / -gencode flags to be dropped, and secondly generators such as ninja would use the CXX language flags instead of CUDA when the executable was mixed language. | ||||
* | CUDA: Add LinkLineComputer that computes cuda dlink lines. | Robert Maynard | 2016-11-14 | 1 | -0/+36 |