Mark this branch as 2.15rc0
[nasm.git] / configure.ac
blobd111e2494b8866d8f430285da2d0d1b1be8734af
1 dnl Process this file with autoconf 2.69 or later to produce
2 dnl a configure script.
3 AC_PREREQ(2.69)
4 AC_INIT(config/config.h.in)
5 AC_CONFIG_HEADERS(config/config.h)
7 AC_PREFIX_PROGRAM(nasm)
9 dnl Save initial CFLAGS, to see if -g -O2 came from configure or not
10 pa_init_cflags="$CFLAGS"
12 dnl This prevents us from running Wine and thinking we are not
13 dnl cross-compiling when in fact we are; running Wine here is at
14 dnl the best very slow and doesn't buy us a single thing at all.
15 WINELOADER=/dev/null
16 export WINELOADER
18 dnl Checks for programs and enable necessary CC extensions
19 AC_USE_SYSTEM_EXTENSIONS
20 AC_SYS_LARGEFILE
21 AC_PROG_CC
22 AC_PROG_CC_STDC
23 AC_PROG_LN_S
24 AC_PROG_MAKE_SET
25 AC_PROG_INSTALL
27 pa_no_optimize=false
29 dnl If the user did not specify a CFLAGS default, change default
30 dnl to -O0 for debugging
31 PA_ARG_DISABLED([optimization],
32  [compile without optimization (-O0) to help debugging],
33  [pa_no_optimize=true])
35 dnl Compile and link with dwarf debug
36 PA_ARG_ENABLED([gdb],
37  [disable optimization and compile with extra debug information for GDB debugger],
38  [PA_ADD_CFLAGS([-ggdb3])
39   pa_no_optimize=true])
41 AS_IF([$pa_no_optimize],
42       [PA_ADD_CFLAGS([-O0])
43        PA_ADD_CFLAGS([-fno-omit-frame-pointer])])
45 dnl Abort on panic
46 PA_ARG_ENABLED([panic-abort],
47  [call abort() on panic to trap in the debugger],
48  [AC_DEFINE(ABORT_ON_PANIC)])
49 AH_TEMPLATE(ABORT_ON_PANIC,
50 [Define to 1 to call abort() on panics (internal errors), for debugging.])
52 dnl Check for library extension
53 PA_LIBEXT
55 dnl Checks for typedefs, structures, and compiler characteristics.
56 AC_C_CONST
57 AC_C_INLINE
58 AC_C_RESTRICT
59 AC_TYPE_SIZE_T
60 AC_C_BIGENDIAN(AC_DEFINE(WORDS_BIGENDIAN),AC_DEFINE(WORDS_LITTLEENDIAN),,)
61 AH_TEMPLATE(WORDS_BIGENDIAN,
62 [Define to 1 if your processor stores words with the most significant
63 byte first (like Motorola and SPARC, unlike Intel and VAX).])
64 AH_TEMPLATE(WORDS_LITTLEENDIAN,
65 [Define to 1 if your processor stores words with the least significant
66 byte first (like Intel and VAX, unlike Motorola and SPARC).])
68 dnl Force gcc and gcc-compatible compilers treat signed integers
69 dnl as 2's complement
70 PA_ADD_CFLAGS([-fwrapv])
72 dnl Some environments abuse __STRICT_ANSI__ to disable some
73 dnl function declarations
74 PA_ADD_CFLAGS([-U__STRICT_ANSI__])
76 dnl Don't put things in common if we can avoid it.  We don't want to
77 dnl assume all compilers support common, and this will help find those
78 dnl problems.  This also works around an OSX linker problem.
79 PA_ADD_CFLAGS([-fno-common])
81 dnl Look for programs...
82 AC_CHECK_PROGS(NROFF,    nroff,    false)
83 AC_CHECK_PROGS(ASCIIDOC, asciidoc, false)
84 AC_CHECK_PROGS(XMLTO,    xmlto,    false)
86 dnl Check for progs needed for manpage generation
87 AS_IF([test $ASCIIDOC = false],
88   [AC_MSG_WARN([No asciidoc package found])]
90 AS_IF([test $XMLTO = false],
91   [AC_MSG_WARN([No xmlto package found])]
94 dnl Check for host compiler tools
95 AC_CHECK_TOOL(AR, ar)
96 AC_CHECK_TOOL(RANLIB, ranlib, :)
97 AC_CHECK_TOOL(STRIP, strip)
99 dnl Checks for header files.
100 AC_HEADER_STDC
101 AC_CHECK_HEADERS(inttypes.h)
102 AC_CHECK_HEADERS(strings.h)
103 AC_HEADER_STDBOOL
104 AC_CHECK_HEADERS(stdnoreturn.h)
105 AC_CHECK_HEADERS(io.h)
106 AC_CHECK_HEADERS(fcntl.h)
107 AC_CHECK_HEADERS(unistd.h)
108 AC_CHECK_HEADERS(sys/mman.h)
109 AC_CHECK_HEADERS(sys/types.h)
110 AC_CHECK_HEADERS(sys/stat.h)
112 dnl Checks for library functions.
113 AC_CHECK_FUNCS(strcasecmp stricmp)
114 AC_CHECK_FUNCS(strncasecmp strnicmp)
115 AC_CHECK_FUNCS(strsep)
116 AC_CHECK_FUNCS(strnlen)
117 AC_CHECK_FUNCS(strrchrnul)
119 AC_CHECK_FUNCS(getuid)
120 AC_CHECK_FUNCS(getgid)
122 AC_CHECK_FUNCS(realpath)
123 AC_CHECK_FUNCS(canonicalize_file_name)
124 AC_CHECK_FUNCS(_fullpath)
125 AC_CHECK_FUNCS(pathconf)
127 AC_FUNC_FSEEKO
128 AC_CHECK_FUNCS([_fseeki64])
129 AC_CHECK_FUNCS([ftruncate _chsize _chsize_s])
130 AC_CHECK_FUNCS([fileno _fileno])
132 AC_CHECK_FUNCS(_filelengthi64)
133 AC_FUNC_MMAP
134 AC_CHECK_FUNCS(getpagesize)
135 AC_CHECK_FUNCS(sysconf)
137 AC_CHECK_FUNCS([access _access faccessat])
139 PA_HAVE_FUNC(__builtin_expect, (1,1))
141 dnl ilog2() building blocks
142 PA_ADD_HEADERS(intrin.h)
143 PA_HAVE_FUNC(__builtin_clz, (0U))
144 PA_HAVE_FUNC(__builtin_clzl, (0UL))
145 PA_HAVE_FUNC(__builtin_clzll, (0ULL))
146 PA_HAVE_FUNC(_BitScanReverse, (0))
147 PA_HAVE_FUNC(_BitScanReverse64, (0))
149 dnl Functions for which we have replacements available in stdlib/
150 AC_CHECK_FUNCS([vsnprintf _vsnprintf])
151 AC_CHECK_FUNCS([snprintf _snprintf])
152 AC_CHECK_FUNCS([strlcpy])
153 AC_CHECK_FUNCS([strrchrnul])
155 dnl These types are POSIX-specific, and Windows does it differently...
156 AC_CHECK_TYPES([struct _stati64])
157 AC_CHECK_TYPES([struct stat])
158 AC_CHECK_FUNCS([stat _stati64])
159 AC_CHECK_FUNCS([fstat _fstati64])
161 dnl Check for functions that might not be declared in the headers for
162 dnl various idiotic reasons (mostly because of library authors
163 dnl abusing the meaning of __STRICT_ANSI__)
164 AC_CHECK_DECLS(strcasecmp)
165 AC_CHECK_DECLS(stricmp)
166 AC_CHECK_DECLS(strncasecmp)
167 AC_CHECK_DECLS(strnicmp)
168 AC_CHECK_DECLS(strsep)
169 AC_CHECK_DECLS(strlcpy)
170 AC_CHECK_DECLS(strnlen)
171 AC_CHECK_DECLS(strrchrnul)
173 dnl Check for missing types
174 AC_TYPE_UINTPTR_T
176 dnl Documentation: should we generate an uncompressed PDF?  It is
177 dnl about twice as big, but it can be externally compressed (e.g. with xz)
178 dnl and becomes significantly smaller than the original.
179 PA_ARG_DISABLED([pdf-compression],
180   [generate an uncompressed documentation PDF],
181   [PDFOPT='-nocompress'])
182 AC_SUBST([PDFOPT])
185 dnl Look for byte-swapping support...
187 PA_ADD_HEADERS(endian.h sys/endian.h machine/endian.h)
188 PA_HAVE_FUNC(cpu_to_le16, (0))
189 PA_HAVE_FUNC(cpu_to_le32, (0))
190 PA_HAVE_FUNC(cpu_to_le64, (0))
191 PA_HAVE_FUNC(__cpu_to_le16, (0))
192 PA_HAVE_FUNC(__cpu_to_le32, (0))
193 PA_HAVE_FUNC(__cpu_to_le64, (0))
194 PA_HAVE_FUNC(htole16, (0))
195 PA_HAVE_FUNC(htole32, (0))
196 PA_HAVE_FUNC(htole64, (0))
197 PA_HAVE_FUNC(__bswap_16, (0))
198 PA_HAVE_FUNC(__bswap_32, (0))
199 PA_HAVE_FUNC(__bswap_64, (0))
200 PA_HAVE_FUNC(__builtin_bswap16, (0))
201 PA_HAVE_FUNC(__builtin_bswap32, (0))
202 PA_HAVE_FUNC(__builtin_bswap64, (0))
203 PA_HAVE_FUNC(_byteswap_ushort, (0))
204 PA_HAVE_FUNC(_byteswap_ulong, (0))
205 PA_HAVE_FUNC(_byteswap_uint64, (0))
208 dnl Check for __builtin_constant_p()
210 PA_HAVE_FUNC(__builtin_constant_p, (0))
213 dnl Check for supported gcc attributes; some compilers (e.g. Sun CC)
214 dnl support these, but don't define __GNUC__ as they don't support
215 dnl some other features of gcc.
217 PA_ADD_CFLAGS([-Werror=attributes])
218 PA_FUNC_ATTRIBUTE(noreturn)
219 PA_FUNC_ATTRIBUTE(returns_nonnull)
220 PA_FUNC_ATTRIBUTE(malloc)
221 PA_FUNC_ATTRIBUTE(alloc_size, (1))
222 PA_FUNC_ATTRIBUTE(sentinel,,, [const char *, ...], ["a","b",NULL])
223 PA_FUNC_ATTRIBUTE(format, [(printf,1,2)], int, [const char *, ...], ["%d",1])
224 PA_FUNC_ATTRIBUTE(const)
225 PA_FUNC_ATTRIBUTE(pure)
226 PA_FUNC_ATTRIBUTE(cold)
227 PA_FUNC_ATTRIBUTE_ERROR
230 dnl support function sections (if available)
232 PA_ARG_ENABLED([sections],
233  [compile with function/data section support],
234  [PA_ADD_CLDFLAGS([-ffunction-sections])
235   PA_ADD_CLDFLAGS([-fdata-sections])
236   PA_ADD_CLDFLAGS([-Wl,--gc-sections])],
237  [])
240 dnl support LTO
242 PA_ARG_ENABLED([lto],
243  [compile with gcc-style link time optimization],
244  [PA_ADD_CLDFLAGS([-flto])
245   dnl Note: we use _PROG rather than _TOOL since we are prepending the full
246   dnl CC name which ought to already contain the host triplet if needed
247   ccbase=`echo "$CC" | awk '{ print $1; }'`
248   AC_CHECK_PROGS(CC_AR, [${ccbase}-ar], [$ac_cv_prog_AR])
249   AR="$CC_AR"
250   AC_CHECK_PROGS(CC_RANLIB, [${ccbase}-ranlib], [$ac_cv_prog_RANLIB])
251   RANLIB="$CC_RANLIB"], [])
254 dnl support sanitizers (if available)
256 PA_ARG_ENABLED([sanitizer],
257  [compile with sanitizers enabled],
258  [PA_ADD_CFLAGS([-fno-omit-frame-pointer])
259   PA_ADD_CLDFLAGS([-fsanitize=address])
260   PA_ADD_CLDFLAGS([-fsanitize=undefined])])
263 dnl Don't make symbols visible, there is no point and it just
264 dnl makes the code slower.
266 PA_ADD_CLDFLAGS([-fvisibility=hidden])
268 dnl If we have gcc, add appropriate code cleanliness options
269 PA_ADD_CFLAGS([-W])
270 PA_ADD_CFLAGS([-Wall])
271 PA_ADD_CFLAGS([-pedantic])
272 dnl LLVM doesn't error out on invalid -W options unless this option is
273 dnl specified first.  Enable this so this script can actually discover
274 dnl which -W options are possible for this compiler.
275 PA_ADD_CFLAGS([-Werror=unknown-warning-option])
276 dnl Suppress format warning on Windows targets due to their <inttypes.h>
277 PA_ADD_CFLAGS([-Wpedantic-ms-format],[-Wno-pedantic-ms-format])
278 PA_ADD_CFLAGS([-Wc90-c99-compat])
279 PA_ADD_CFLAGS([-Wlong-long],[-Wno-long-long])
280 dnl This is needed because we intentionally expect strncpy() to fill
281 dnl in a zero-padded (not zero-terminated) buffer in several backends
282 PA_ADD_CFLAGS([-Wstringop-truncation],[-Wno-stringop-truncation])
283 dnl PA_ADD_CFLAGS([-Wwrite-strings])
284 PA_ARG_ENABLED([werror],
285  [compile with -Werror to error out on any warning],
286  [PA_ADD_CFLAGS([-Werror])],
287  [PA_ADD_CFLAGS([-Werror=implicit])
288   PA_ADD_CFLAGS([-Werror=missing-braces])
289   PA_ADD_CFLAGS([-Werror=return-type])
290   PA_ADD_CFLAGS([-Werror=trigraphs])
291   PA_ADD_CFLAGS([-Werror=pointer-arith])
292   PA_ADD_CFLAGS([-Werror=strict-prototypes])
293   PA_ADD_CFLAGS([-Werror=missing-prototypes])
294   PA_ADD_CFLAGS([-Werror=missing-declarations])
295   PA_ADD_CFLAGS([-Werror=comment])
296   PA_ADD_CFLAGS([-Werror=vla])]
300 dnl On some versions of gcc, -Werror=missing-prototypes causes problems
301 dnl with C99-style external inlines.  Test this *after* adding the -Werror
302 dnl options.
304 PA_CHECK_BAD_STDC_INLINE
307 dnl support ccache
309 PA_ARG_ENABLED([ccache], [compile with ccache], [CC="ccache $CC"], [])
311 AC_OUTPUT_COMMANDS([mkdir -p config nasmlib nsis output stdlib x86 asm disasm rdoff macros common])
312 AC_OUTPUT(Makefile doc/Makefile)