Jump to content

Ccache: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Jrosdahl (talk | contribs)
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=2021-09-28}}</ref>
| 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.4.2
| latest release version = 4.10.2
| latest release date = {{Start date and age|2021|09|28}}<ref>{{cite web |title=ccache news |url=https://ccache.dev/releasenotes.html#_ccache_4_4_2 |website=ccache.dev |accessdate=2021-09-28}}</ref>
| 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=2021-09-28}}</ref>
| 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]] the output of [[C (programming language)|C]]/[[C++]] [[compiler|compilation]] 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 recompiling 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]].
'''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

ccache
Original author(s)Andrew Tridgell
Developer(s)Joel Rosdahl[1]
Initial releaseMarch 30, 2002; 22 years ago (2002-03-30)[2]
Stable release
4.10.2 / July 22, 2024; 3 months ago (2024-07-22)[3]
Repository
Written inC++
Operating systemUnix-like, Windows
PlatformCross-platform
TypeCompiling tools
LicenseGPLv3[4]
Websiteccache.dev

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]
  1. ^ "ccache — Credits". ccache.dev. Retrieved 2024-07-22.
  2. ^ "Released 1.0 · ccache/Ccache@2ddc45e". GitHub.
  3. ^ "ccache news". ccache.dev. Retrieved 2024-07-22.
  4. ^ "ccache copyright and license". ccache.dev. Retrieved 2024-07-22.
[edit]