-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbugs.html
More file actions
124 lines (124 loc) · 2.8 KB
/
bugs.html
File metadata and controls
124 lines (124 loc) · 2.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ccache — Bugs</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="ccache.css">
</head>
<body>
<header>
<div class="container">
<h1>
<a href="/">
<span style="font-size: 150%; ">Ccache</span> — a fast C/C++ compiler cache
</a>
</h1>
<button class="sidebar-toggle" aria-label="Toggle menu">☰</button>
</div>
</header>
<div class="layout">
<div class="overlay"></div>
<aside class="sidebar">
<nav>
<ul>
<li>
<a href="/">Overview</a>
</li>
<li>
<a href="/download.html">Download</a>
</li>
<li>
<a href="/documentation.html">Documentation</a>
<ul>
<li>
<a href="/platform-compiler-language-support.html">Supported platforms and compilers</a>
</li>
<li>
<a href="/storage-helpers.html">Storage helpers</a>
</li>
<li>
<a href="/performance.html">Performance</a>
</li>
</ul>
</li>
<li>
<a href="/contribution.html">Contribution</a>
<ul>
<li>
<a class="current" href="/bugs.html">Bug report</a>
</li>
<li>
<a href="/repo.html">Source repository</a>
</li>
<li>
<a href="https://github.com/ccache/ccache/discussions">Discussions</a>
</li>
<li>
<a href="https://lists.samba.org/mailman/listinfo/ccache/">Mailing list</a>
</li>
</ul>
</li>
<li>
<a href="/news.html">News</a>
</li>
<li>
<a href="/credits.html">Credits</a>
</li>
<li>
<a href="/license.html">License</a>
</li>
</ul>
</nav>
</aside>
<main class="content">
<h1>Bugs</h1>
<p>So, you found a bug?</p>
<ul>
<li>If you're not using the <a href="download.html">latest released
version</a>, please upgrade and see if the bug has already been fixed.</li>
<li>Check <a href="https://github.com/ccache/ccache/issues">existing bug
reports</a> to see if the bug has already been reported.</li>
</ul>
<p>To report a bug or request a feature, or maybe contribute with a patch, you
may:</p>
<ul>
<li>
<a href="https://github.com/ccache/ccache/issues">Report an issue on
GitHub</a>.
</li>
<li>
<a href="https://github.com/ccache/ccache/pulls">Submit pull requests on
GitHub</a>.
</li>
<li>
Discuss in <a href="https://github.com/ccache/ccache/discussions">GitHub
discussions</a>.
</li>
<li>
Discuss on the
<a href="https://lists.samba.org/mailman/listinfo/ccache">ccache mailing
list</a>.
</li>
<li>
You can also send patches directly to <a href="mailto:joel@rosdahl.net">the
ccache maintainer (Joel Rosdahl)</a> if you like.
</li>
</ul>
</main>
</div> <!-- layout -->
<script>
const sidebar = document.querySelector(".sidebar");
const overlay = document.querySelector(".overlay");
const toggle = document.querySelector(".sidebar-toggle");
toggle.addEventListener("click", () => {
sidebar.classList.toggle("show");
overlay.classList.toggle("show");
});
overlay.addEventListener("click", () => {
sidebar.classList.remove("show");
overlay.classList.remove("show");
});
</script>
</body>
</html>