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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
|
dnl Process this file with autoconf to produce a configure script.
AC_INIT()
AC_PREREQ(2.52)
AC_MSG_NOTICE([configuring ccache])
AC_CONFIG_HEADER(config.h)
AC_CANONICAL_HOST
case $host in
*mingw32* | *mingw64* | *cygwin* | *wince* | *mingwce*)
windows_os=yes
AC_DEFINE(_WIN32_WINNT,0x0600, Windows Vista or newer is required)
;;
*os400* | *aix*)
AR="ar -X64"
;;
esac
AC_SUBST(disable_cross)
AC_SUBST(disable_man)
AC_SUBST(extra_libs)
AC_SUBST(extra_sources)
AC_SUBST(include_dev_mk)
AC_SUBST(more_warnings)
AC_SUBST(no_implicit_fallthrough_warning)
AC_SUBST(test_suites)
m4_include(m4/feature_macros.m4)
m4_include(m4/ax_cxx_compile_stdcxx.m4)
m4_include(m4/clang.m4)
mkdir -p .deps src/third_party unittest
dnl Checks for programs.
AC_PROG_CC
AX_CXX_COMPILE_STDCXX(11, noext, mandatory)
_AC_LANG_COMPILER_CLANG
AC_PROG_INSTALL
# Prefer bash, needed for test.sh
AC_PATH_TOOL(BASH, bash, "/bin/bash")
# If GCC (or clang), turn on warnings.
if test "$ac_compiler_gnu" = yes; then
CFLAGS="$CFLAGS -Wall -W"
CXXFLAGS="$CXXFLAGS -Wall -W"
else
CFLAGS="$CXXFLAGS -O"
CXXFLAGS="$CXXFLAGS -O"
fi
more_warnings="-Wextra -Wpedantic"
if test "$ac_compiler_clang" = yes; then
more_warnings="$more_warnings -Weverything"
more_warnings="$more_warnings -Wno-c++98-compat"
more_warnings="$more_warnings -Wno-c++98-compat-pedantic"
more_warnings="$more_warnings -Wno-conversion"
more_warnings="$more_warnings -Wno-disabled-macro-expansion"
more_warnings="$more_warnings -Wno-format-nonliteral"
more_warnings="$more_warnings -Wno-implicit-fallthrough"
more_warnings="$more_warnings -Wno-padded"
more_warnings="$more_warnings -Wno-shorten-64-to-32"
more_warnings="$more_warnings -Wno-sign-conversion"
# TODO: Enable these in the future:
more_warnings="$more_warnings -Wno-old-style-cast"
more_warnings="$more_warnings -Wno-zero-as-null-pointer-constant"
fi
AC_ARG_ENABLE(more_warnings,
[AS_HELP_STRING([--enable-more-warnings],
[enable more compiler warnings])])
if test x${enable_more_warnings} = xyes; then
CFLAGS="$CFLAGS $more_warnings"
CXXFLAGS="$CXXFLAGS $more_warnings"
fi
AC_HEADER_DIRENT
AC_HEADER_TIME
AC_HEADER_SYS_WAIT
AC_CHECK_TYPES(long long)
AC_CHECK_HEADERS(ctype.h pwd.h stdlib.h string.h strings.h sys/time.h sys/mman.h)
AC_CHECK_HEADERS(syslog.h)
AC_CHECK_HEADERS(termios.h)
AC_CHECK_HEADERS(sys/ioctl.h)
AC_CHECK_HEADERS(linux/fs.h)
AC_CHECK_HEADERS(sys/clonefile.h)
AC_CHECK_FUNCS(gethostname)
AC_CHECK_FUNCS(getopt_long)
AC_CHECK_FUNCS(getpwuid)
AC_CHECK_FUNCS(gettimeofday)
AC_CHECK_FUNCS(localtime_r)
AC_CHECK_FUNCS(mkstemp)
AC_CHECK_FUNCS(realpath)
AC_CHECK_FUNCS(setenv)
AC_CHECK_FUNCS(strndup)
AC_CHECK_FUNCS(strtok_r)
AC_CHECK_FUNCS(syslog)
AC_CHECK_FUNCS(unsetenv)
AC_CHECK_FUNCS(utimes)
AC_CACHE_CHECK([for compar_fn_t in stdlib.h],ccache_cv_COMPAR_FN_T, [
AC_TRY_COMPILE(
[#include <stdlib.h>],
[void test_fn(void) { qsort(NULL, 0, 0, (__compar_fn_t)NULL); }],
ccache_cv_COMPAR_FN_T=yes,
ccache_cv_COMPAR_FN_T=no)])
if test x"$ccache_cv_COMPAR_FN_T" = x"yes"; then
AC_DEFINE(HAVE_COMPAR_FN_T, 1,
Define to 1 if you have the `__compar_fn_t' typedef.)
fi
dnl Replacements of snprintf and friends.
m4_include(m4/snprintf.m4)
HW_FUNC_VSNPRINTF
HW_FUNC_SNPRINTF
HW_FUNC_VASPRINTF
HW_FUNC_ASPRINTF
dnl Check if -lm is needed.
AC_SEARCH_LIBS(cos, m)
dnl Check for libzstd
zstd_version=1.4.1
zstd_url=https://github.com/facebook/zstd/releases/download/v${zstd_version}/zstd-${zstd_version}.tar.gz
AC_ARG_WITH(libzstd-from-internet,
[AS_HELP_STRING([--with-libzstd-from-internet],
[download and use libzstd from the Internet instead of using the system's default libzstd])])
if test x${with_libzstd_from_internet} = x; then
AC_CHECK_LIB(zstd, ZSTD_versionNumber, [found_libzstd=yes])
if test x${found_libzstd} = x; then
AC_MSG_ERROR(please install libzstd or use --with-libzstd-from-internet)
fi
LIBS="$LIBS -lzstd"
else
zstd_archive=`basename ${zstd_url}`
if ! test -f ${zstd_archive}; then
AC_CHECK_TOOL(WGET, wget)
if test -n "$WGET"; then
AC_MSG_NOTICE(downloading libzstd from $zstd_url)
wget -q ${zstd_url}
else
AC_CHECK_TOOL(CURL, curl)
if test -n "$CURL"; then
AC_MSG_NOTICE(downloading libzstd from $zstd_url)
curl -sLOJ ${zstd_url}
else
AC_MSG_ERROR(please install wget or curl)
fi
fi
fi
(cd src/third_party && tar -xzf ../../${zstd_archive})
rm -rf src/third_party/zstd
mv src/third_party/zstd-${zstd_version} src/third_party/zstd
CPPFLAGS="$CPPFLAGS -I$PWD/src/third_party/zstd/lib"
extra_libs="src/third_party/zstd/lib/libzstd.a"
fi
dnl Check for libb2
libb2_version=0.98.1
libb2_url=https://github.com/BLAKE2/libb2/releases/download/v${libb2_version}/libb2-${libb2_version}.tar.gz
AC_ARG_WITH(libb2-from-internet,
[AS_HELP_STRING([--with-libb2-from-internet],
[download and use libb2 from the Internet instead of using the system's default libb2])])
if test x${with_libb2_from_internet} = x; then
AC_CHECK_LIB([b2],[blake2b], [found_libb2=yes])
if test x${found_libb2} = x; then
AC_MSG_ERROR(please install libb2 or use --with-libb2-from-internet)
fi
LIBS="$LIBS -lb2"
else
libb2_archive=`basename ${libb2_url}`
if ! test -f ${libb2_archive}; then
AC_CHECK_TOOL(WGET, wget)
if test -n "$WGET"; then
AC_MSG_NOTICE(downloading libb2 from $libb2_url)
wget -q ${libb2_url}
else
AC_CHECK_TOOL(CURL, curl)
if test -n "$CURL"; then
AC_MSG_NOTICE(downloading libb2 from $libb2_url)
curl -sLOJ ${libb2_url}
else
AC_MSG_ERROR(please install wget or curl)
fi
fi
fi
(cd src/third_party && tar -xzf ../../${libb2_archive})
rm -rf src/third_party/libb2
mv src/third_party/libb2-${libb2_version} src/third_party/libb2
# try to make clang happy by changing the header guard macros
sed -i -e 's/__BLAKE2_H__/BLAKE2_H/' src/third_party/libb2/src/blake2.h
CPPFLAGS="$CPPFLAGS -I$PWD/src/third_party/libb2/src"
extra_libs="$extra_libs src/third_party/libb2/src/.libs/libb2.a"
fi
if test "$cross_compiling" != no -o "$host_cpu" != 'x86_64'; then
disable_cross=''
else
disable_cross='#'
fi
AC_ARG_ENABLE(man,
[AS_HELP_STRING([--disable-man],
[disable installing man pages])])
if test x${enable_man} = xno; then
disable_man='#'
fi
AC_ARG_ENABLE(tracing,
[AS_HELP_STRING([--enable-tracing],
[enable possibility to use internal ccache tracing])])
if test x${enable_tracing} = xyes; then
CPPFLAGS="$CPPFLAGS -DMTR_ENABLED"
extra_sources="src/third_party/minitrace.c"
fi
dnl Linking on Windows needs ws2_32
if test x${windows_os} = xyes; then
LIBS="$LIBS -lws2_32"
AC_CHECK_FUNCS(GetFinalPathNameByHandleW,[],[LIBS="$LIBS -lpsapi"])
fi
AC_C_BIGENDIAN
AC_C_INLINE
dnl Check for "extern inline".
AC_CACHE_CHECK(
for extern inline,
ac_cv_c_extern_inline,
[
ac_cv_c_extern_inline=no
AC_TRY_COMPILE(
[
extern $ac_cv_c_inline double foo(double x);
extern $ac_cv_c_inline double foo(double x) { return x+1.0; };
double foo (double x) { return x + 1.0; };
],
[foo(1.0)],
[ac_cv_c_extern_inline="yes"])])
if test "$ac_cv_c_extern_inline" != no ; then
AC_DEFINE(HAVE_EXTERN_INLINE, 1,
Define to 1 if your compiler supports extern inline)
fi
dnl Enable developer mode if dev.mk.in exists.
if test ! -f $srcdir/dev_mode_disabled; then
AC_MSG_NOTICE(developer mode enabled)
AC_CONFIG_FILES([dev.mk])
include_dev_mk='include dev.mk'
version=`(git --git-dir=$srcdir/.git describe --dirty 2>/dev/null || echo vunknown) | sed -e 's/v//' -e 's/-/+/' -e 's/-/_/g'`
echo "extern const char CCACHE_VERSION@<:@@:>@; const char CCACHE_VERSION@<:@@:>@ = \"$version\";" >src/version.cpp
AC_CHECK_TOOL(GPERF, gperf)
if test -z "$GPERF"; then
AC_MSG_ERROR(please install gperf)
fi
else
AC_MSG_NOTICE(developer mode disabled)
fi
if test ! -f $srcdir/src/version.cpp -a ! -f src/version.cpp ; then
AC_MSG_WARN(unable to determine ccache version)
echo "extern const char CCACHE_VERSION@<:@@:>@; const char CCACHE_VERSION@<:@@:>@ = \"unknown\";" >src/version.cpp
fi
dnl Check for -Wno-implicit-fallthrough
AC_MSG_CHECKING([whether C compiler supports -Wno-implicit-fallthrough])
saved_cflags=$CFLAGS
CFLAGS=-Wno-implicit-fallthrough
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
[AC_MSG_RESULT([yes])]
[no_implicit_fallthrough_warning="-Wno-implicit-fallthrough"],
[AC_MSG_RESULT([no])]
)
CFLAGS=$saved_cflags
dnl Find test suite files.
test_suites=$(cd $srcdir && ls unittest/test_*.cpp | egrep -v 'BASE|BACKUP|LOCAL|REMOTE' | xargs echo)
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
cat <<EOF >config.h.tmp
#ifndef CCACHE_CONFIG_H
#define CCACHE_CONFIG_H
#ifdef __clang__
#pragma clang diagnostic push
#if __has_warning("-Wreserved-id-macro")
#pragma clang diagnostic ignored "-Wreserved-id-macro"
#endif
#endif
EOF
cat config.h >>config.h.tmp
cat <<EOF >>config.h.tmp
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ifndef CCACHE_CONFIG_H
EOF
mv config.h.tmp config.h
AC_MSG_NOTICE(now build ccache by running make)
|