Ccache: Difference between revisions
Appearance
Content deleted Content added
Update to version 4.4.2 |
Citation bot (talk | contribs) Add: website, title. Changed bare reference to CS1/2. | Use this bot. Report bugs. | Suggested by Abductive | Category:Cache (computing) | #UCB_Category 3/47 |
||
(26 intermediate revisions by 4 users not shown) | |||
Line 7: | Line 7: | ||
| collapsible = |
| collapsible = |
||
| author = [[Andrew Tridgell]] |
| author = [[Andrew Tridgell]] |
||
| developer = Joel Rosdahl<ref>{{cite web |title=ccache — Credits |url=https://ccache.dev/credits.html |website=ccache.dev |accessdate= |
| developer = Joel Rosdahl<ref>{{cite web |title=ccache — Credits |url=https://ccache.dev/credits.html |website=ccache.dev |accessdate=2024-07-22}}</ref> |
||
| released = {{Start date and age|2002|03|30}}<ref>{{cite web | url=https://github.com/ccache/ccache/commit/2ddc45e8a6fdb766423b874c76b6840104ac2d74 | title=Released 1.0 · ccache/Ccache@2ddc45e | website=[[GitHub]] }}</ref> |
|||
| released = <!-- {{Start date|YYYY|MM|DD}} --> |
|||
| discontinued = |
| discontinued = |
||
| latest release version = 4. |
| latest release version = 4.10.2 |
||
| latest release date = {{Start date and age| |
| latest release date = {{Start date and age|2024|7|22}}<ref>{{cite web |title=ccache news |url=https://ccache.dev/releasenotes.html#_ccache_4_10_2 |website=ccache.dev |accessdate=2024-07-22}}</ref> |
||
| programming language = [[C++ (programming language)|C++]] |
| programming language = [[C++ (programming language)|C++]] |
||
| operating system = [[Unix-like]] |
| operating system = [[Unix-like]], Windows |
||
| platform = [[Cross-platform]] |
| platform = [[Cross-platform]] |
||
| size = |
| size = |
||
| language = |
| language = |
||
| genre = [[Compiling tools]] |
| genre = [[Compiling tools]] |
||
| license = [[GPL#Version 3|GPLv3]]<ref>{{cite web |title=ccache copyright and license |url=https://ccache.dev/license.html |website=ccache.dev |accessdate= |
| license = [[GPL#Version 3|GPLv3]]<ref>{{cite web |title=ccache copyright and license |url=https://ccache.dev/license.html |website=ccache.dev |accessdate=2024-07-22}}</ref> |
||
| website = {{URL|ccache.dev}} |
| website = {{URL|ccache.dev}} |
||
}} |
}} |
||
'''Ccache''' is a [[software development]] tool that [[Cache (computing)|caches |
'''Ccache''' is a [[software development]] tool that [[Cache (computing)|caches]] [[compiler|compilations]] so that the next time, the same compilation can be avoided and the results can be taken from the cache. This can greatly speed up recompilation time. The detection is done by [[Fingerprint (computing)|hashing]] different kinds of information that should be unique for the compilation and then using the hash sum to identify the cached output. Ccache is licensed under the [[GNU General Public License]]. |
||
== See also == |
== See also == |
||
{{Portal|Free and open-source software}} |
{{stack|{{Portal|Free and open-source software}}}} |
||
* [[distcc]] |
* [[distcc]] |
||
==References== |
== References == |
||
{{Reflist}} |
{{Reflist}} |
||
==External links== |
== External links == |
||
* {{Official website|https://ccache.dev}} |
* {{Official website|https://ccache.dev}} |
||
Latest revision as of 18:33, 14 November 2024
This article needs additional citations for verification. (January 2021) |
Original author(s) | Andrew Tridgell |
---|---|
Developer(s) | Joel Rosdahl[1] |
Initial release | March 30, 2002[2] |
Stable release | 4.10.2
/ July 22, 2024[3] |
Repository | |
Written in | C++ |
Operating system | Unix-like, Windows |
Platform | Cross-platform |
Type | Compiling tools |
License | GPLv3[4] |
Website | ccache |
Ccache is a software development tool that caches compilations so that the next time, the same compilation can be avoided and the results can be taken from the cache. This can greatly speed up recompilation time. The detection is done by hashing different kinds of information that should be unique for the compilation and then using the hash sum to identify the cached output. Ccache is licensed under the GNU General Public License.
See also
[edit]References
[edit]- ^ "ccache — Credits". ccache.dev. Retrieved 2024-07-22.
- ^ "Released 1.0 · ccache/Ccache@2ddc45e". GitHub.
- ^ "ccache news". ccache.dev. Retrieved 2024-07-22.
- ^ "ccache copyright and license". ccache.dev. Retrieved 2024-07-22.
External links
[edit]