forked from skvadrik/re2c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
190 lines (156 loc) · 6.25 KB
/
configure.ac
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
AC_INIT([re2c],[2.2],[[email protected]])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([foreign subdir-objects dist-xz dist-lzip no-dist-gzip])
AM_SILENT_RULES([yes])
AC_CONFIG_SRCDIR([src/main.cc])
AC_CONFIG_HEADERS([config.h])
AC_SUBST(PACKAGE_VERSION)
AC_SUBST(PACKAGE_NAME)
AC_SUBST(PACKAGE_TARNAME)
AC_SUBST(PACKAGE_RELEASE, ${PACKAGE_RELEASE:-1})
# without this, --std=c++98 disables POSIX functions on Cygwin
AC_USE_SYSTEM_EXTENSIONS
# --enable-debug
AC_ARG_ENABLE([debug], [AS_HELP_STRING([--enable-debug],
[enable checks and assertions])])
AM_CONDITIONAL([DEBUG], [test "x$enable_debug" = "xyes"])
# --enable-docs
AC_ARG_ENABLE([docs], [AS_HELP_STRING([--enable-docs], [regenerate manpage])])
AM_CONDITIONAL([REBUILD_DOCS], [test "x$enable_docs" = "xyes"])
AM_COND_IF([REBUILD_DOCS], [
AC_CHECK_PROGS(RST2MAN, [rst2man rst2man.py], no)
AS_IF([test "x$RST2MAN" = "xno"], [
AC_MSG_ERROR([need rst2man or rst2man.py for --enable-docs])
])
])
# --enable-lexers
AC_ARG_ENABLE([lexers], [AS_HELP_STRING([--enable-lexers], [regenerate lexers])])
AM_CONDITIONAL([REBUILD_LEXERS], [test "x$enable_lexers" = "xyes"])
AM_COND_IF([REBUILD_LEXERS], [
AC_ARG_VAR(RE2C_FOR_BUILD, re2c executable used to regenerate lexers)
AS_IF([test ! -x "$RE2C_FOR_BUILD"], [
AC_MSG_ERROR([RE2C_FOR_BUILD must be set to an executable file with --enable-lexers])
])
])
# --enable-libs
AC_ARG_ENABLE([libs], [AS_HELP_STRING([--enable-libs], [build libraries])])
AM_CONDITIONAL([WITH_LIBS], [test "x$enable_libs" = "xyes"])
AM_COND_IF([WITH_LIBS], [
AC_SUBST(LDFLAGS_RE2, [])
AC_LANG_PUSH([C++])
AC_CHECK_HEADERS([re2/re2.h], [AS_VAR_SET([LDFLAGS_RE2], ["-lre2"])], [], [[]])
AC_LANG_POP([C++])
])
# --enable-golang
AC_ARG_ENABLE([golang], [AS_HELP_STRING([--enable-golang], [build re2go executable])])
AM_CONDITIONAL([WITH_GOLANG], [test "x$enable_golang" != "xno"])
# --enable-benchmarks
AC_ARG_ENABLE([benchmarks], [AS_HELP_STRING([--enable-benchmarks],
[build benchmarks])])
AM_CONDITIONAL([WITH_BENCHMARKS], [test "x$enable_benchmarks" = "xyes"])
AM_COND_IF([WITH_BENCHMARKS], [
AC_LANG_PUSH([C++])
AC_CHECK_HEADERS([benchmark/benchmark.h], [],
[AC_MSG_ERROR([benchmark library is required with --enable-benchmarks])], [[]])
AC_LANG_POP([C++])
])
AM_CONDITIONAL([WITH_JAVA], [test -n "$JAVA_HOME"])
# --enable-benchmarks-regenerate
AC_ARG_ENABLE([benchmarks_regenerate],
[AS_HELP_STRING([--enable-benchmarks-regenerate],
[regenerate C code for benchmarks])])
AM_CONDITIONAL([REGEN_BENCHMARKS],
[test "x$enable_benchmarks_regenerate" = "xyes"])
# checks for programs
AC_PATH_PROG(BISON, bison, no)
AC_CHECK_PROGS(PYTHON, [python3 python])
AC_PROG_CC # used in skeleton tests
AC_PROG_CXX
AC_PROG_INSTALL
# checks for C++ compiler flags
AC_SUBST(CXXFLAGSDEFAULT, [])
# TRY_CXXFLAG (flag [implied-flags])
# Iff C++ compiler recognizes 'flag', append 'flag' and 'implied-flags' to CXXFLAGSDEFAULT
# (Second param 'implied-flags' is needed for warning suppressions '-Wno-<warning>':
# GCC warns about unrecognized suppressions options only in presence of other warnings,
# which makes it hard to test for them with autoconf.)
AC_DEFUN([TRY_CXXFLAG], [
AC_MSG_CHECKING([C++ compiler flag $1])
AS_VAR_SET([CXXFLAGS_BACKUP], ["$CXXFLAGS"])
AS_VAR_SET([CXXFLAGS], ["$CXXFLAGS $1"])
AC_LANG_PUSH([C++])
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM()],
[
AS_VAR_SET([TRY_CXXFLAG_RESULT], [yes])
AS_VAR_SET([CXXFLAGSDEFAULT], ["$CXXFLAGSDEFAULT $1 $2"])
],
[AS_VAR_SET([TRY_CXXFLAG_RESULT], [no])]
)
AC_LANG_POP([C++])
AS_VAR_SET([CXXFLAGS], ["$CXXFLAGS_BACKUP"])
AC_MSG_RESULT([$TRY_CXXFLAG_RESULT])
])
TRY_CXXFLAG([-std=c++98])
TRY_CXXFLAG([-W])
TRY_CXXFLAG([-Wall])
TRY_CXXFLAG([-Wextra])
TRY_CXXFLAG([-Weffc++])
TRY_CXXFLAG([-pedantic])
TRY_CXXFLAG([-Wformat=2])
TRY_CXXFLAG([-Wredundant-decls])
TRY_CXXFLAG([-Wsuggest-attribute=format])
TRY_CXXFLAG([-Wconversion])
TRY_CXXFLAG([-Wsign-conversion])
TRY_CXXFLAG([-Werror=return-type])
TRY_CXXFLAG([-O2])
TRY_CXXFLAG([-Weverything], m4_join([ ],
[-Wno-unknown-warning-option], dnl CLANG eats some GCC options only to warn they are unknown
[-Wno-reserved-id-macro], dnl to allow header guards of the form '_RE2C_PATH_TO_HEADER_BASENAME_'
[-Wno-padded],
[-Wno-old-style-cast], dnl RE2C-generated lexer has lots of C-syle casts because of 're2c:yych:conversion = 1;'
[-Wno-nested-anon-types],
[-Wno-global-constructors] dnl initialization of global constants with std::numeric_limits<...> (mostly for size_t)
[-Wno-shadow-field-in-constructor] dnl using same names in ctor seems more like a feature
[-Wno-undefined-func-template])) dnl explicit specialization to reduce build dependencies
# needed by src/c99_stdint.h
# avoid AC_INCLUDES_DEFAULT
AC_CHECK_HEADERS([stdint.h], [], [], [[]])
# needed for POSIX file API
AC_CHECK_HEADERS([sys/types.h], [], [], [[]])
AC_CHECK_HEADERS([sys/stat.h], [], [], [[]])
AC_CHECK_HEADERS([fcntl.h], [], [], [[]])
AC_CHECK_HEADERS([unistd.h], [], [], [[]])
AC_CHECK_HEADERS([io.h], [], [], [[]]) # windows POSIX-like API
# list of possible types to use in typedefs
AC_CHECK_SIZEOF([char], [], [[]])
AC_CHECK_SIZEOF([short], [], [[]])
AC_CHECK_SIZEOF([int], [], [[]])
AC_CHECK_SIZEOF([long], [], [[]])
AC_CHECK_SIZEOF([long long], [], [[]])
AC_CHECK_SIZEOF([__int64], [], [[]])
# size of pointers
AC_CHECK_SIZEOF([void *], [], [[]])
# 64-bit integer constant suffix
AC_CHECK_SIZEOF([0l], [], [[]])
AC_CHECK_SIZEOF([0ll], [], [[]])
AC_CHECK_SIZEOF([0i8], [], [[]])
AC_CONFIG_FILES([\
Makefile \
benchmarks/submatch_nfa/Makefile \
benchmarks/submatch_dfa_aot/Makefile \
benchmarks/submatch_dfa_jit/Makefile \
benchmarks/submatch_java/Makefile \
doc/manpage.rst \
doc/help.rst \
])
AC_CONFIG_FILES([run_tests.py],
[chmod +x run_tests.py])
AC_CONFIG_FILES([benchmarks/submatch_dfa_aot/run.py],
[chmod +x benchmarks/submatch_dfa_aot/run.py])
AC_CONFIG_FILES([benchmarks/submatch_java/run.py],
[chmod +x benchmarks/submatch_java/run.py])
AC_CONFIG_LINKS([benchmarks/submatch_java/chart.js:benchmarks/submatch_java/chart.js])
LT_INIT([dlopen win32-dll])
AC_CONFIG_MACRO_DIRS([m4])
AC_OUTPUT