clcache
clcache copied to clipboard
A compiler cache for MSVC, much like ccache for gcc
There are problems with ASM identification, using clcache. - cmake version 3.15.5 - clcache.py v4.2.0-dev - Python 3.8.1 `project(${PROJECT_NAME} LANGUAGES C CXX ASM VERSION ${PROJECT_VERSION})` > -- The ASM compiler...
Here's some general info about our system: > Windows Server 2012 R2 x64 6 GB RAM E5-2650 We are using this machine for CI. Build duration is usually 5 to...
I'll fill in details later... but it seems nobody reads this issue tracker anymore
This is one possible way to fix #364 . If you are certain that your build system won't call `clcache.exe` with multiple source files to compile (AFAIK it is only...
This fixes #363. Essentially the `clcache.exe` installed from Choco or Pip was used to simply call `main()` skipping the `if CLCACHE_PROFILE` check. Class and function names may be changed at...
I have been using ccache for a long time in CMake and have integrated it the following way: ``` find_program(CCACHE_FOUND ccache) if (CCACHE_FOUND) set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache) set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK...
Basically, what I get after combining `pstats`:  This doesn't help me if I want to profile `processSingleSource()` which is called inside `scheduleJobs`. What I actually want to see: ...
Apparently, because `setup.py` mentions ``` entry_points={ 'console_scripts': [ 'clcache = clcache.__main__:main', ``` , the `if 'CLCACHE_PROFILE' in os.environ:` check is ignored, since it is not located in `def main()`. I...
As per the last comment in #18 there is a less intrusive way to integrate clcache. Each vcxproj file should include "$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" In this props file you can add the...
I see the following warning when using clcache: > Error processing line 1 of c:\users\jcoulon\conan\clcache.pth: > > Traceback (most recent call last): > File "C:\Program Files\Python38\lib\site.py", line 169, in addpackage...