-
Notifications
You must be signed in to change notification settings - Fork 173
/
configure.ac
268 lines (231 loc) · 9.71 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
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
AC_INIT([re2c],[4.0.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})
AM_PATH_PYTHON([3.7])
# without this, --std=c++11 disables POSIX functions on Cygwin and NetBSD
# (alternatively we could use -std=gnu++11, as CMake does)
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], [
AS_IF([$PYTHON -c "import docutils"], [], [
AC_MSG_ERROR([need docutils (python3 module) for --enable-docs])
])
])
# --enable-syntax
AC_ARG_ENABLE([syntax], [AS_HELP_STRING([--enable-syntax], [regenerate syntax files])])
AM_CONDITIONAL([REBUILD_SYNTAX], [test "x$enable_syntax" = "xyes"])
# --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-parsers
AC_PATH_PROG(BISON, bison, no)
AC_ARG_ENABLE([parsers], [AS_HELP_STRING([--enable-parsers], [regenerate parsers with Bison])])
AM_CONDITIONAL([REBUILD_PARSERS], [test "x$enable_parsers" = "xyes"])
AM_COND_IF([REBUILD_PARSERS], [
AS_IF([test "$BISON" = "no" ], [
AC_MSG_ERROR([need Bison for --enable-parsers])
])
])
# --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-dlang
AC_ARG_ENABLE([dlang], [AS_HELP_STRING([--enable-dlang], [build re2d executable])])
AM_CONDITIONAL([WITH_DLANG], [test "x$enable_dlang" != "xno"])
# --enable-golang
AC_ARG_ENABLE([golang], [AS_HELP_STRING([--enable-golang], [build re2go executable])])
AM_CONDITIONAL([WITH_GOLANG], [test "x$enable_golang" != "xno"])
# --enable-haskell
AC_ARG_ENABLE([haskell], [AS_HELP_STRING([--enable-haskell], [build re2hs executable])])
AM_CONDITIONAL([WITH_HASKELL], [test "x$enable_haskell" != "xno"])
# --enable-java
AC_ARG_ENABLE([java], [AS_HELP_STRING([--enable-java], [build re2java executable])])
AM_CONDITIONAL([WITH_JAVA], [test "x$enable_java" != "xno"])
# --enable-js
AC_ARG_ENABLE([js], [AS_HELP_STRING([--enable-js], [build re2js executable])])
AM_CONDITIONAL([WITH_JS], [test "x$enable_js" != "xno"])
# --enable-ocaml
AC_ARG_ENABLE([ocaml], [AS_HELP_STRING([--enable-ocaml], [build re2ocaml executable])])
AM_CONDITIONAL([WITH_OCAML], [test "x$enable_ocaml" != "xno"])
# --enable-python
AC_ARG_ENABLE([python], [AS_HELP_STRING([--enable-python], [build re2py executable])])
AM_CONDITIONAL([WITH_PYTHON], [test "x$enable_python" != "xno"])
# --enable-rust
AC_ARG_ENABLE([rust], [AS_HELP_STRING([--enable-rust], [build re2rust executable])])
AM_CONDITIONAL([WITH_RUST], [test "x$enable_rust" != "xno"])
# --enable-vlang
AC_ARG_ENABLE([vlang], [AS_HELP_STRING([--enable-vlang], [build re2v executable])])
AM_CONDITIONAL([WITH_VLANG], [test "x$enable_vlang" != "xno"])
# --enable-zig
AC_ARG_ENABLE([zig], [AS_HELP_STRING([--enable-zig], [build re2zig executable])])
AM_CONDITIONAL([WITH_ZIG], [test "x$enable_zig" != "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_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])
AS_IF([test "x$3" = "xrequired"], [
AC_MSG_ERROR([C++ compiler flag $1 is required to build re2c])
])
]
)
AC_LANG_POP([C++])
AS_VAR_SET([CXXFLAGS], ["$CXXFLAGS_BACKUP"])
AC_MSG_RESULT([$TRY_CXXFLAG_RESULT])
])
TRY_CXXFLAG([-std=c++11], [], [required])
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([-Wold-style-cast])
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-nested-anon-types],
[-Wno-reserved-identifier], dnl user-defined literals like `_u8` must start with underscore
[-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
[-Wno-c++98-compat], dnl allow using C++11 features like `nullptr`
[-Wno-c++98-compat-pedantic],
[-Wno-unsafe-pointer-arithmetic],
[-Wno-unsafe-buffer-usage],
[-Wno-exit-time-destructors], dnl re2c is single-threaded => no danger of race conditions
[-Wno-switch-enum]))
# 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
AC_CONFIG_FILES([
Makefile
benchmarks/c/Makefile
benchmarks/c/libre2c/nfa/Makefile
benchmarks/c/libre2c/jit/Makefile
benchmarks/c/libre2c/java/Makefile
])
AC_CONFIG_FILES([run_tests.py],
[chmod +x run_tests.py])
AC_CONFIG_FILES([benchmarks/c/run.py],
[chmod +x benchmarks/c/run.py])
AC_CONFIG_FILES([benchmarks/c/libre2c/java/run.py],
[chmod +x benchmarks/c/libre2c/java/run.py])
# Custom names are needed to accommodate POSIX Make suffix rules (bmake in
# particular) instead of the more generic and flexible GNU Make pattern rules.
# Copies are needed to patch them in-place with build/split_man.py.
AC_CONFIG_FILES([
src/msg/help_re2c.rst:doc/help.rst.in
src/msg/help_re2d.rst:doc/help.rst.in
src/msg/help_re2go.rst:doc/help.rst.in
src/msg/help_re2hs.rst:doc/help.rst.in
src/msg/help_re2java.rst:doc/help.rst.in
src/msg/help_re2js.rst:doc/help.rst.in
src/msg/help_re2ocaml.rst:doc/help.rst.in
src/msg/help_re2py.rst:doc/help.rst.in
src/msg/help_re2rust.rst:doc/help.rst.in
src/msg/help_re2v.rst:doc/help.rst.in
src/msg/help_re2zig.rst:doc/help.rst.in
doc/re2c.rst:doc/manpage.rst.in
doc/re2d.rst:doc/manpage.rst.in
doc/re2go.rst:doc/manpage.rst.in
doc/re2hs.rst:doc/manpage.rst.in
doc/re2java.rst:doc/manpage.rst.in
doc/re2js.rst:doc/manpage.rst.in
doc/re2ocaml.rst:doc/manpage.rst.in
doc/re2py.rst:doc/manpage.rst.in
doc/re2rust.rst:doc/manpage.rst.in
doc/re2v.rst:doc/manpage.rst.in
doc/re2zig.rst:doc/manpage.rst.in
])
# Custom names are needed to accommodate POSIX Make suffix rules (bmake in
# particular) instead of the more generic and flexible GNU Make pattern rules.
AC_CONFIG_LINKS([
src/default_syntax_c.stx:include/syntax/c
src/default_syntax_d.stx:include/syntax/d
src/default_syntax_go.stx:include/syntax/go
src/default_syntax_haskell.stx:include/syntax/haskell
src/default_syntax_java.stx:include/syntax/java
src/default_syntax_js.stx:include/syntax/js
src/default_syntax_ocaml.stx:include/syntax/ocaml
src/default_syntax_python.stx:include/syntax/python
src/default_syntax_rust.stx:include/syntax/rust
src/default_syntax_v.stx:include/syntax/v
src/default_syntax_zig.stx:include/syntax/zig
])
AC_CONFIG_LINKS([
benchmarks/c/libre2c/java/chart.js:benchmarks/c/libre2c/java/chart.js
])
LT_INIT([dlopen win32-dll])
AC_CONFIG_MACRO_DIRS([m4])
AC_OUTPUT