configure.ac - lightning.git - Portable just-in-time compiler library

index : lightning.git
Portable just-in-time compiler library
summary refs log tree commit diff
path: root/configure.ac
blob: 31594ad8740d527b1c3148b44aa077faf8f95556 (plain)
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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
dnl
dnl Copyright 2000, 2001, 2002, 2012-2023 Free Software Foundation, Inc.
dnl
dnl This file is part of GNU lightning.
dnl
dnl GNU lightning is free software; you can redistribute it and/or modify it
dnl under the terms of the GNU Lesser General Public License as published
dnl by the Free Software Foundation; either version 3, or (at your option)
dnl any later version.
dnl
dnl GNU lightning is distributed in the hope that it will be useful, but
dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
dnl License for more details.
dnl
AC_PREREQ([2.71])
AC_INIT([GNU lightning],[2.2.3],[pcpa@gnu.org],[lightning])
AC_CONFIG_AUX_DIR([build-aux])
AC_CANONICAL_TARGET
AC_CONFIG_SRCDIR([Makefile.am])
AM_INIT_AUTOMAKE([dist-bzip2])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS([config.h])
AC_PROG_CC
gl_EARLY
AM_PROG_AR
LT_INIT
gl_INIT
case "$target_cpu" in
 ia64)
	case "$host_os" in
	 # Only supported mode
	 *hpux*)
		LIGHTNING_CFLAGS="$LIGHTNING_CFLAGS -mlp64"		;;
	 *)					;;
	esac					;;
 *mips*)
	case "$host_os" in
	 # (Hack) Flags to pass configure with gcc 3.x
	 # Should not set LIGHTNINT_CFLAGS
	 *irix*)
		CFLAGS="$CFLAGS -D__c99 -Drestrict=";;
	 *)					;;
	esac					;;
 alpha*)
	case "$host_os" in
	 osf*)
		# Get proper varargs and mmap prototypes and definitions
		CFLAGS="$CFLAGS -D_ANSI_C_SOURCE -D_XOPEN_SOURCE_EXTENDED -D_OSF_SOURCE -D_POSIX_C_SOURCE=199309L"
		# Want to generate NaN with 0.0/0.0 and Inf with 1.0/0.0
		if test x$GCC = "xyes"; then
		 CFLAGS="$CFLAGS -mieee"
		else
		 CFLAGS="$CFLAGS -ieee_with_no_inexact"
		fi				;;
	 *)					;;
	esac					;;
 aarch64)
	case "$host_os" in
	 darwin*)
		LIGHTNING_CFLAGS="$LIGHTNING_CFLAGS -DPACKED_STACK=1"			;;
	 *)					;;
	esac					;;
 *)						;;
esac
AC_CHECK_FUNCS(mmap mremap ffsl getopt_long_only isnan isinf,,)
AC_CHECK_HEADERS([getopt.h stdint.h],,,)
AC_ARG_ENABLE(disassembler,
	 AS_HELP_STRING([--enable-disassembler],
			 [Enable jit disassembler using binutils]),
	 [DISASSEMBLER=$enableval], [DISASSEMBLER=auto])
if test "x$DISASSEMBLER" != "xno"; then
 AC_CHECK_LIB(iberty, htab_try_create, ,
		 [HAVE_IBERTY="no"])
 AC_CHECK_LIB(bfd, bfd_init, ,
		 [HAVE_BFD="no"])
 AC_CHECK_LIB(z, compressBound, ,
		 [HAVE_Z="no"])
 AC_CHECK_LIB(opcodes, init_disassemble_info, ,
		 [HAVE_OPCODES="no"])
 if test "x$HAVE_IBERTY" = "xno"; then
 if test "x$DISASSEMBLER" = "xyes"; then
 AC_MSG_ERROR([libiberty not found])
 else
 AC_MSG_WARN([libiberty not found])
 DISASSEMBLER="no"
 fi
 fi
 if test "x$HAVE_BFD" = "xno"; then
 if test "x$DISASSEMBLER" = "xyes"; then
 AC_MSG_ERROR([binutils BFD not found, see http://www.gnu.org/software/binutils/])
 else
 AC_MSG_WARN([binutils BFD not found, see http://www.gnu.org/software/binutils/])
 DISASSEMBLER="no"
 fi
 fi
 if test "x$HAVE_Z" = "xno"; then
 if test "x$DISASSEMBLER" = "xyes"; then
 AC_MSG_ERROR([zlib not found, see https://zlib.net/])
 else
 AC_MSG_WARN([zlib not found, see https://zlib.net/])
 DISASSEMBLER="no"
 fi
 fi
 if test "x$HAVE_OPCODES" = "xno"; then
 if test "x$DISASSEMBLER" = "xyes"; then
 AC_MSG_ERROR([binutils opcodes not found, see https://www.gnu.org/software/binutils/])
 else
 AC_MSG_WARN([binutils opcodes not found, see https://www.gnu.org/software/binutils/])
 DISASSEMBLER="no"
 fi
 fi
fi
AM_CONDITIONAL(with_disassembler, [test "x$DISASSEMBLER" != "xno"])
if test "x$DISASSEMBLER" != "xno"; then
 LIGHTNING_CFLAGS="$LIGHTNING_CFLAGS -DDISASSEMBLER=1"
 save_CFLAGS=$CFLAGS
 CFLAGS="$CFLAGS -D_GNU_SOURCE"
 AC_COMPILE_IFELSE([AC_LANG_SOURCE(
	#include <dis-asm.h>
	int main(int argc, char *argv[])
	{
		disassembler_ftype	 print;
		bfd			*abfd;
		print = disassembler(abfd);
		return 0;
	}
 )], [ac_cv_test_new_disassembler=no],,)
 AC_COMPILE_IFELSE([AC_LANG_SOURCE(
	#include <dis-asm.h>
	int main(int argc, char *argv[])
	{
		struct disassemble_info dinfo;
		INIT_DISASSEMBLE_INFO(dinfo, NULL, NULL, NULL);
		return 0;
	}
 )], [ac_cv_test_new_disassemble_info=yes],[ac_cv_test_new_disassemble_info=no],)
 CFLAGS="$save_CFLAGS"
 if test "x$ac_cv_test_new_disassembler" != "xno"; then
	LIGHTNING_CFLAGS="$LIGHTNING_CFLAGS -DBINUTILS_2_29=1"
 fi
 if test "x$ac_cv_test_new_disassemble_info" != "xno"; then
	LIGHTNING_CFLAGS="$LIGHTNING_CFLAGS -DBINUTILS_2_38=1"
 fi
fi
AC_ARG_ENABLE(devel-disassembler,
	 AS_HELP_STRING([--enable-devel-disassembler],
			 [Enable extra disassembly options]),
	 [DEVEL_DISASSEMBLER=$enableval], [DEVEL_DISASSEMBLER=no])
if test "x$DEVEL_DISASSEMBLER" != "xno"; then
 if test "x$DISASSEMBLER" = "xno"; then
	AC_MSG_ERROR(devel-disassembler needs disassembler enabled)
 fi
 LIGHTNING_CFLAGS="$LIGHTNING_CFLAGS -DDEVEL_DISASSEMBLER=1"
fi
# This option is only useful during development.
AC_ARG_ENABLE(devel-get-jit-size,
	 AS_HELP_STRING([--enable-devel-get-jit-size],
			 [Devel mode to regenerate jit size information]),
	 [GET_JIT_SIZE=$enableval], [GET_JIT_SIZE=no])
AM_CONDITIONAL(get_jit_size, [test $GET_JIT_SIZE = yes])
AC_ARG_ENABLE(assertions,
	 AS_HELP_STRING([--enable-assertions],
			 [Enable runtime code generation assertions]),
	 [DEBUG=$enableval], [DEBUG=auto])
# This option might be made default in the future
# Currently it is only useful to ensure existing code will work
# if PACKED_STACK is also defined.
AC_ARG_ENABLE(devel-strong-type-checking,
	 AS_HELP_STRING([--enable-devel-strong-type-checking],
			 [Devel mode for strong type checking]),
	 [STRONG_TYPE_CHECKING=$enableval], [STRONG_TYPE_CHECKING=no])
if test "x$DEBUG" = xyes -o x"$STRONG_TYPE_CHECKING" = xyes; then
 LIGHTNING_CFLAGS="$LIGHTNING_CFLAGS -DDEBUG=1"
else
 LIGHTNING_CFLAGS="$LIGHTNING_CFLAGS -DNDEBUG"
 DEBUG=no
fi
AM_CONDITIONAL(strong_type_checking, [test $STRONG_TYPE_CHECKING = yes])
AC_CHECK_LIB(dl, dlopen, [HAVE_LIBDL="yes"])
AC_CHECK_LIB(dld, dlopen, [HAVE_LIBDLD="yes"])
if test "x$HAVE_LIBDL" = xyes; then
 SHLIB="-ldl";
elif test "x$HAVE_LIBDLD" = xyes; then
 SHLIB="-ldld";
else
 SHLIB="";
fi
AC_SUBST(SHLIB)
cpu=
case "$target_cpu" in
 i?86|x86_64|amd64)	cpu=x86		;;
 *arm*)		cpu=arm		;;
 *mips*)		cpu=mips	;;
 *powerpc*)		cpu=ppc		;;
 *sparc*)		cpu=sparc	;;
 ia64)		cpu=ia64	;;
 hppa*)		cpu=hppa	;;
 aarch64)		cpu=aarch64	;;
 s390*)		cpu=s390	;;
 alpha*)		cpu=alpha	;;
 riscv*)		cpu=riscv	;;
 loongarch*)		cpu=loongarch	;;
 sh*)		cpu=sh		;;
 *)					;;
esac
AM_CONDITIONAL(cpu_arm, [test cpu-$cpu = cpu-arm])
AM_CONDITIONAL(cpu_mips, [test cpu-$cpu = cpu-mips])
AM_CONDITIONAL(cpu_ppc, [test cpu-$cpu = cpu-ppc])
AM_CONDITIONAL(cpu_sparc, [test cpu-$cpu = cpu-sparc])
AM_CONDITIONAL(cpu_x86, [test cpu-$cpu = cpu-x86])
AM_CONDITIONAL(cpu_ia64, [test cpu-$cpu = cpu-ia64])
AM_CONDITIONAL(cpu_hppa, [test cpu-$cpu = cpu-hppa])
AM_CONDITIONAL(cpu_aarch64, [test cpu-$cpu = cpu-aarch64])
AM_CONDITIONAL(cpu_s390, [test cpu-$cpu = cpu-s390])
AM_CONDITIONAL(cpu_alpha, [test cpu-$cpu = cpu-alpha])
AM_CONDITIONAL(cpu_riscv, [test cpu-$cpu = cpu-riscv])
AM_CONDITIONAL(cpu_loongarch, [test cpu-$cpu = cpu-loongarch])
AM_CONDITIONAL(cpu_sh, [test cpu-$cpu = cpu-sh])
# Test x87 if both, x87 and sse2 available
ac_cv_test_x86_x87=
# Test arm instruction set if thumb instruction set available
ac_cv_test_arm_arm=
# Test sofware float if vfp available and not using hard float abi
ac_cv_test_arm_swf=
save_CFLAGS=$CFLAGS
CFLAGS="$CFLAGS -D_GNU_SOURCE"
if test x$cpu = x; then
 AC_MSG_ERROR([cpu $target_cpu not supported])
elif test $cpu = x86; then
 AC_RUN_IFELSE([AC_LANG_SOURCE([[
 int main(void) {
	int		 ac, flags;
	unsigned int	 eax, ebx, ecx, edx;
	if (sizeof(long) == 8)
	 return 1;
	__asm__ volatile ("pushfl;\n\t"
			 "popl %0;\n\t"
			 "movl \0ドルx240000, %1;\n\t"
			 "xorl %0, %1;\n\t"
			 "pushl %1;\n\t"
			 "popfl;\n\t"
			 "pushfl;\n\t"
			 "popl %1;\n\t"
			 "xorl %0, %1;\n\t"
			 "pushl %0;\n\t"
			 "popfl"
			 : "=r" (flags), "=r" (ac));
	if ((ac & (1 << 21)) == 0)
	 return 1;
	__asm__ volatile ("xchgl %%ebx, %1; cpuid; xchgl %%ebx, %1"
			 : "=a" (eax), "=r" (ebx),
			 "=c" (ecx), "=d" (edx)
			 : "0" (1));
	return (edx & 1 << 26) ? 0 : 1;
 }
 ]])],[ac_cv_test_x86_x87=yes],[],[ac_cv_test_x86_x87=no])
elif test $cpu = arm; then
 AC_RUN_IFELSE([AC_LANG_SOURCE([[
 #include <stdio.h>
 int main(void) {
 #if defined(__linux__)
	FILE	*fp;
	char	 buf[128];
	if ((fp = fopen("/proc/cpuinfo", "r")) == NULL)
	 return 1;
	while (fgets(buf, sizeof(buf), fp)) {
	 if (strncmp(buf, "Features\t:", 10) == 0 &&
		strstr(buf + 10, "thumb")) {
		fclose(fp);
		return 0;
	 }
	}
	fclose(fp);
 #elif defined(__thumb2__)
	return 0;
 #endif
	return 1;
 }
 ]])],[ac_cv_test_arm_arm=yes],[],[ac_cv_test_arm_arm=no])
 AC_RUN_IFELSE([AC_LANG_SOURCE([[
 #include <stdio.h>
 int main(void) {
 #if defined(__linux__)
	FILE	*fp;
	char	 buf[128];
 # if !defined(__ARM_PCS_VFP)
	if ((fp = fopen("/proc/cpuinfo", "r")) == NULL)
	 return 1;
	while (fgets(buf, sizeof(buf), fp)) {
	 if (strncmp(buf, "Features\t:", 10) == 0 &&
		strstr(buf + 10, "vfp")) {
		fclose(fp);
		return 0;
	 }
	}
	fclose(fp);
 # endif
 #endif
	return 1;
 }
 ]])],[ac_cv_test_arm_swf=yes],[],[ac_cv_test_arm_swf=no])
elif test $cpu = ppc; then
 if test "x$DISASSEMBLER" != "xno"; then
	save_LIBS="$LIBS"
	LIBS="$LIBS $SHLIB"
	AC_CHECK_FUNCS(disassemble_init_for_target disassemble_init_powerpc)
	LIBS="$save_LIBS"
 fi
fi
CFLAGS=$save_CFLAGS
AM_CONDITIONAL(test_x86_x87, [test x$ac_cv_test_x86_x87 = xyes])
AM_CONDITIONAL(test_arm_arm, [test x$ac_cv_test_arm_arm = xyes])
AM_CONDITIONAL(test_arm_swf, [test x$ac_cv_test_arm_swf = xyes])
AM_CONDITIONAL(test_nodata, [test cpu-$cpu = cpu-mips -o cpu-$cpu = cpu-ppc -o cpu-$cpu = cpu-sparc -o cpu-$cpu = cpu-x86 -o cpu-$cpu = cpu-ia64 -o cpu-$cpu = cpu-hppa -o cpu-$cpu = cpu-s390 -o cpu-$cpu = cpu-alpha])
if test $cpu = arm; then
 AC_CHECK_LIB(m, sqrtf, ,
 [AC_MSG_ERROR([sqrtf required but not available])])
fi
AC_SUBST(cpu)
AC_SUBST([LIGHTNING_CFLAGS])
if test $ac_cv_header_stdint_h = yes; then
 AC_SUBST(MAYBE_INCLUDE_STDINT_H, ["#include <stdint.h>"])
fi
AC_CONFIG_FILES([Makefile
	 lightning.pc
 gnulib-lib/Makefile
	 doc/Makefile
	 include/Makefile
	 include/lightning/Makefile
	 include/lightning.h
	 lib/Makefile
	 check/Makefile])
AC_OUTPUT
generated by cgit v1.2.3 (git 2.25.1) at 2025年09月10日 23:26:23 +0000

AltStyle によって変換されたページ (->オリジナル) /