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 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613
|
# -*- Autoconf -*-
AC_PREREQ([2.72])
AC_INIT
AC_CONFIG_SRCDIR([src/compiler/compilePhases/toplevel/main/Top.sml])
AC_CONFIG_HEADERS([config.h])
AC_CANONICAL_TARGET
AC_ARG_PROGRAM
# -------- Checks for C/C++ compiler capability --------
AC_PROG_CC
if test "x$ac_cv_prog_cc_c99" = "xno"; then
AC_MSG_ERROR([C99 compiler is required])
fi
AC_PROG_CXX
AC_LANG(C)
AC_USE_SYSTEM_EXTENSIONS
AC_CHECK_HEADERS(stdatomic.h, [], [
AC_MSG_CHECKING([for __atomic builtins])
AC_COMPILE_IFELSE(
[ AC_LANG_SOURCE([
int foo(void **p1, void **p2, void *p3) {
return __atomic_compare_exchange_n
(p1, p2, p3, 1, __ATOMIC_RELEASE, __ATOMIC_ACQUIRE);
}
])],
[ AC_MSG_RESULT([yes])
AC_DEFINE(HAVE_GCC_ATOMIC, 1, [Define if __atomic builtins are available])
],
[ AC_MSG_RESULT([no])
AC_MSG_ERROR([__atomic builtins are not available. Use GCC 4.7 or later])
])
])
AC_MSG_CHECKING([for alignof])
AC_COMPILE_IFELSE(
[ AC_LANG_SOURCE([ int x = alignof(void *); ]) ],
[ AC_MSG_RESULT([yes])
AC_DEFINE(HAVE_ALIGNOF, 1, [Define if aligonof is available]) ],
[ AC_COMPILE_IFELSE(
[ AC_LANG_SOURCE([ int x = __alignof__(void *); ]) ],
[ AC_MSG_RESULT([yes])
AC_DEFINE(HAVE_ALIGNOF, 1)
AC_DEFINE(alignof, __alignof__, [Alternative to alignof]) ],
[ AC_MSG_RESULT([no]) ]) ])
AC_MSG_CHECKING([for _Thread_local storage class])
AC_COMPILE_IFELSE(
[ AC_LANG_SOURCE([ _Thread_local int hoge; int foo() { return hoge; } ]) ],
[ AC_MSG_RESULT([yes])
AC_DEFINE(HAVE_TLS, 1, [Define if _Thread_local is available]) ],
[ AC_MSG_RESULT([no])
AC_MSG_CHECKING([for __thread storage class])
AC_COMPILE_IFELSE(
[ AC_LANG_SOURCE([ __thread int hoge; int foo() { return hoge; } ]) ],
[ AC_MSG_RESULT([yes])
AC_DEFINE(_Thread_local, __thread, [alternative to _Thread_local])
AC_DEFINE(HAVE_TLS, 1) ]
[ AC_MSG_RESULT([no]) ])
])
# -------- Check for tools --------
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_PATH_PROG(FIND, find)
AC_PROG_RANLIB
AC_CHECK_TOOL(LD, ld)
AC_CHECK_TOOL(AR, ar)
dnl AC_CHECK_TOOL(WINDRES, windres)
dnl AC_PATH_PROG(DOXYGEN, doxygen)
dnl ToDo: check ar and ranlib working
# -------- Check for system-dependent properties --------
: ${SMLFLAGS=-O2}
: ${LLCFLAGS=}
RUNTIME_DEFS=
AC_SUBST(SMLFLAGS)
AC_SUBST(LLCFLAGS)
AC_SUBST(RUNTIME_DEFS)
AC_SUBST(LIBEXT)
AC_SUBST(DLLEXT)
AC_SUBST(ASMEXT)
AC_SUBST(OBJEXT)
AC_SUBST(EXEEXT)
AC_SUBST(A_OUT)
AC_SUBST(RUNLOOP_DLDFLAGS)
AC_SUBST(HOST_OS_TYPE)
AC_SUBST(CMDLINE_MAXLEN)
case "$target_os" in
dnl *cygwin*)
dnl DLLEXT='dll'
dnl EXEEXT=.exe
dnl A_OUT=a.exe
dnl AC_CHECK_TOOL(DLLTOOL, dlltool, :)
dnl AC_PATH_PROG(CYGPATH, cygpath)
dnl if test "x$CYGPATH" = "x"; then
dnl case "$host_os" in
dnl *cygwin*)
dnl AC_MSG_ERROR([cygpath is not found.])
dnl ;;
dnl esac
dnl fi
dnl AC_SUBST(CYGPATH)
dnl if test "x$WINDRES" != "x"; then
dnl RESOURCE_TYPE=rc
dnl fi
dnl AC_SUBST(RESOURCE_TYPE)
mingw*)
: ${DLLEXT='dll'}
: ${EXEEXT='.exe'}
: ${A_OUT=a.exe}
: ${HOST_OS_TYPE=Mingw}
: ${CMDLINE_MAXLEN='SOME 2047'}
: ${RDYNAMIC_LDFFLAGS='-Wl,--export-all-symbols -Wl,--out-implib=src/compiler/smlsharp.lib'}
: ${RUNLOOP_DLDFLAGS='-shared -Wl,--enable-auto-import,--enable-stdcall-fixup'}
;;
darwin*)
: ${DLLEXT='dylib'}
: ${HOST_OS_TYPE=Unix}
: ${CMDLINE_MAXLEN='NONE'}
: ${RDYNAMIC_LDFLAGS=}
: ${RUNLOOP_DLDFLAGS='-dynamiclib -Wl,-undefined,dynamic_lookup,-flat_namespace'}
;;
linux*|*bsd*)
: ${HOST_OS_TYPE=Unix}
: ${CMDLINE_MAXLEN='NONE'}
: ${RDYNAMIC_LDFLAGS='-rdynamic'}
: ${RUNLOOP_DLDFLAGS='-shared'}
;;
esac
: ${LIBEXT=a}
: ${DLLEXT=so}
: ${ASMEXT=s}
: ${OBJEXT=o}
: ${EXEEXT=}
: ${A_OUT=a.out}
if test "x${HOST_OS_TYPE-__unset__}" = "x__unset__" || \
test "x${CMDLINE_MAXLEN-__unset__}" = "x__unset__" || \
test "x${RDYNAMIC_LDFLAGS-__unset__}" = "x__unset__" || \
test "x${RUNLOOP_DLDFLAGS-__unset__}" = "x__unset__"; then
echo $HOST_OS_TYPE
echo $CMDLINE_MAXLEN
echo $RDYNAMIC_LDFLAGS
echo $RUNLOOP_DLDFLAGS
AC_MSG_ERROR([configure cannot guess HOST_OS_TYPE, CMDLINE_MAXLEN, RDYNAMIC_LDFLAGS, and RUNLOOP_DLDFLAGS for $target_os. You need to speficy them by the configure command line.])
fi
AC_DEFUN([CHECK_LDFLAGS], [
orig_LDFLAGS=$LDFLAGS
LDFLAGS="$orig_LDFLAGS $[]$1"
AC_MSG_CHECKING([that $1 works])
AC_LINK_IFELSE(
[ AC_LANG_SOURCE([ int foo() { return 0; } int main() { return 0; } ]) ],
[ AC_MSG_RESULT(yes) ],
[ AC_MSG_RESULT(no)
AC_MSG_ERROR([$1 does not work]) ])
LDFLAGS=$orig_LDFLAGS
])
CHECK_LDFLAGS(RDYNAMIC_LDFLAGS)
CHECK_LDFLAGS(RUNLOOP_DLDFLAGS)
RDYNAMIC_SMLFLAGS=
AC_SUBST(RDYNAMIC_SMLFLAGS)
for i in $RDYNAMIC_LDFLAGS; do
test -n "$RDYNAMIC_SMLFLAGS" && RDYNAMIC_SMLFLAGS="${RDYNAMIC_SMLFLAGS} "
RDYNAMIC_SMLFLAGS="${RDYNAMIC_SMLFLAGS}-Xlinker $i"
done
# -------- Check for LLVM --------
LLVM_PATH=$PATH
AC_ARG_WITH(llvm,
AS_HELP_STRING([--with-llvm=DIR],
[specify where LLVM has installed in]),
[
case "x$withval" in
yes|no) ;;
*) LLVM_PATH="$withval/bin:$LLVM_PATH" ;;
esac
])
AC_DEFUN([LLVM_CHECK_PROG], [
AC_PATH_PROG($1, $2, [], $3)
if test -z "$[]$1"; then
AC_MSG_ERROR([$2 is not found.])
fi
])
AC_DEFUN([LLVM_CHECK_CONFIG], [
AC_MSG_CHECKING([for LLVM $2])
$1=`$[]LLVM_CONFIG --$2` || AC_MSG_ERROR([failed])
AC_MSG_RESULT($[]$1)
AC_SUBST($1)
])
LLVM_CHECK_PROG(LLVM_CONFIG, llvm-config, $LLVM_PATH)
LLVM_CHECK_CONFIG(LLVM_bindir, bindir)
LLVM_CHECK_CONFIG(LLVM_CXXFLAGS, cxxflags)
LLVM_CHECK_CONFIG(LLVM_VERSION, version)
LLVM_CHECK_PROG(LLC, llc, $LLVM_bindir)
LLVM_CHECK_PROG(OPT, opt, $LLVM_bindir)
LLVM_CHECK_PROG(LLVM_DIS, llvm-dis, $LLVM_bindir)
LLVM_CHECK_PROG(LLVM_AS, llvm-as, $LLVM_bindir)
AC_ARG_WITH(incompatible-llvm,
AS_HELP_STRING([--with-incompatible-llvm], [skip LLVM compatibility check]))
AC_MSG_CHECKING([for LLVM compatibility])
LLVM_VERSION=`echo "$LLVM_VERSION" | sed 's/\.[[0-9]]*$//'`
AC_SUBST(LLVM_VERSION)
case "$LLVM_VERSION" in
[[7-9]].0|7.1|1[[0-7]].0|11.1|1[[89]].1)
AC_MSG_RESULT(yes)
;;
*)
AC_MSG_RESULT(no)
AC_MSG_WARN([SML[#] does not support LLVM $LLVM_VERSION. Build may fail due to incompatibility.])
if test "x$with_incompatible_llvm" != "xyes"; then
AC_MSG_ERROR([Specify --with-incompatible-llvm if you really want to build SML[#] with it.])
fi
;;
esac
LLVM7_CONFIG=
AC_SUBST(LLVM7_CONFIG)
AC_ARG_WITH(llvm7,
AS_HELP_STRING([--with-llvm7=DIR],
[specify where LLVM 7 has installed in (for developers only)]),
[
case "$withval" in
no) ;;
yes) AC_PATH_PROG(LLVM7_CONFIG, llvm-config, [], $PATH) ;;
*) AC_PATH_PROG(LLVM7_CONFIG, llvm-config, [], $withval/bin:$PATH) ;;
esac
],
[
case "$LLVM_VERSION" in
7.[01]) LLVM7_CONFIG=LLVM_CONFIG ;;
esac
])
if test -n "$LLVM7_CONFIG"; then
AC_MSG_CHECKING([for LLVM 7 version])
LLVM7_VERSION=`$LLVM7_CONFIG --version` || AC_MSG_ERROR([failed])
AC_MSG_RESULT($LLVM7_VERSION)
if test "_$LLVM7_VERSION" != "_7.1.0"; then
AC_MSG_ERROR([Specify LLVM 7.1.0 to --with-llvm7.])
fi
fi
# -------- Check for self- and cross-compilation ---------
MINISMLLEX='$(SMLLEX)'
MINISMLYACC='$(SMLYACC)'
MINISMLFORMAT='$(SMLFORMAT)'
MINISMLSHARP_LLVM_PLUGIN='$(LLVM_PLUGIN)'
MINISMLSHARP=./minismlsharp
AC_SUBST(MINISMLLEX)
AC_SUBST(MINISMLYACC)
AC_SUBST(MINISMLFORMAT)
AC_SUBST(MINISMLSHARP_LLVM_PLUGIN)
AC_SUBST(MINISMLSHARP)
AC_ARG_WITH(smlsharp,
AS_HELP_STRING([--with-smlsharp=DIR],
[specify smlsharp directory (required for cross compile)]),
[
if test "x$withval" = "xno"; then
if test "x$build" != "x$target"; then
AC_MSG_ERROR(--with-smlsharp is required for cross-compiling the compiler)
fi
elif test -f "$withval/src/compiler/smlsharp"; then
MINISMLLEX="$withval/src/ml-lex/smllex"
MINISMLYACC="$withval/src/ml-yacc/smlyacc"
MINISMLFORMAT="$withval/src/smlformat/smlformat"
MINISMLSHARP_LLVM_PLUGIN=""
MINISMLSHARP="$withval/src/compiler/smlsharp"
SMLFLAGS="-BX $withval/src $SMLFLAGS"
else
AC_MSG_ERROR(Specify a complete build tree to --with-smlsharp)
fi
],
[
if test "x$build" != "x$target"; then
AC_MSG_ERROR(--with-smlsharp is required for cross-compiling the compiler)
fi
])
AC_SUBST(PRECOMPILED_ARCH)
if test "x$build" = "x$target"; then
case "$target_cpu" in
x86_64|amd64)
PRECOMPILED_ARCH=x86_64
;;
*)
AC_MSG_ERROR([the compiler is not precompiled for target_cpu $target_cpu.])
;;
esac
else
SMLFLAGS="--target=$target $SMLFLAGS"
fi
# -------- Check for supporting target platform --------
AC_MSG_CHECKING([whether target platform is supported])
case "$target_cpu" in
i[[3456]]86)
AC_MSG_RESULT([yes])
RUNTIME_DEFS="$RUNTIME_DEFS -DHOST_CPU_i386"
LLCFLAGS="$LLCFLAGS -no-x86-call-frame-opt"
;;
x86_64|amd64)
AC_MSG_RESULT([yes])
RUNTIME_DEFS="$RUNTIME_DEFS -DHOST_CPU_i386"
LLCFLAGS="$LLCFLAGS -no-x86-call-frame-opt"
;;
*)
AC_MSG_RESULT([no])
AC_MSG_ERROR([target_cpu $target_cpu is not supported.])
;;
esac
PIC_DEFAULT=false
AC_SUBST(PIC_DEFAULT)
case "$target" in
*-darwin*-*|x86_64-*|amd64-*)
PIC_DEFAULT=true
;;
esac
if test "x$PIC_DEFAULT" = "xtrue"; then
LLCFLAGS="$LLCFLAGS -relocation-model=pic"
CFLAGS="$CFLAGS -fPIC"
fi
case "$target_os" in
*mingw*)
AC_DEFINE(MINGW, 1, [Define if your system is Windows])
;;
esac
AC_C_BIGENDIAN([
AC_DEFINE(WORDS_BIGENDIAN, [1], [Define if your processor is big endian])
])
AC_SUBST(BYTE_ORDER)
# -------- Extra options for developers --------
RELEASE='$(srcdir)/RELEASE'
MKREL='#'
AC_SUBST(RELEASE)
AC_SUBST(MKREL)
if test -d "$srcdir/.git" || test -f "$srcdir/.git"; then
x=`cd "$srcdir" && git ls-files RELEASE 2>/dev/null || :`
if test -z "$x"; then
RELEASE=RELEASE
MKREL=
fi
fi
if test -n "$MKREL" && test ! -f "$srcdir/RELEASE"; then
AC_MSG_ERROR([file not found: RELEASE])
fi
EXTRA_OPTIONS=
AC_SUBST(EXTRA_OPTIONS)
AC_ARG_ENABLE(extra-options,
AS_HELP_STRING([--enable-extra-options=OPTIONS],
[set default extra options (for developers only)]),
[
case "$enableval" in
yes|no) ;;
*) EXTRA_OPTIONS=$enableval ;;
esac
])
# -------- Checks for multithread support --------
AC_CHECK_LIB(pthread, pthread_create,
[], [ AC_MSG_ERROR([pthread library is not found]) ])
AC_ARG_WITH(massivethreads,
AS_HELP_STRING([--with-massivethreads=DIR],
[specify where MassiveThreads has installed in]),
[
case "$withval" in
yes|no) ;;
*) if test -d "$withval/include"; then
CPPFLAGS="$CPPFLAGS -I$withval/include"
fi
if test -d "$withval/lib"; then
LDFLAGS="$LDFLAGS -L$withval/lib"
elif test -d "$withval/lib64"; then
LDFLAGS="$LDFLAGS -L$withval/lib64"
fi
with_massivethreads=yes
;;
esac
], [ with_massivethreads=yes ])
if test "x$with_massivethreads" = "xyes"; then
AC_CHECK_LIB(myth, myth_is_myth_worker,
[], [
AC_CHECK_LIB(myth, myth_create,
[ AC_MSG_ERROR([the massivethreads library is old. check out the latest one.]) ],
[ AC_MSG_ERROR([the massivethreads library is not found]) ])
])
else
RUNTIME_DEFS="$RUNTIME_DEFS -DWITHOUT_MASSIVETHREADS"
fi
# -------- Check for required libraries --------
AC_CHECK_LIB(gmp, __gmpz_init,
[], [ AC_MSG_ERROR([GMP library is not found]) ])
AC_CHECK_LIB(m, sqrt)
AC_CHECK_LIB(socket, socket)
AC_CHECK_LIB(dl, dlopen)
AC_CHECK_LIB(rt, clock_gettime)
dnl ## cygwin has dlopen in libcygwin.dll.
dnl if test "x$ac_cv_lib_dl_dlopen" = "xno"; then
dnl case "$target_os" in
dnl *cygwin*)
dnl AC_SEARCH_LIBS(dlopen, [dl],
dnl [ ac_cv_lib_dl_dlopen=yes; echo "#define HAVE_LIBDL 1" >> confdefs.h ])
dnl ;;
dnl *)
dnl ;;
dnl esac
dnl fi
# -------- Check for linker --------
# ToDo: check for method for dynamic linking.
AC_LANG_PUSH(C++)
AC_MSG_CHECKING([whether C++ linker works])
AC_LINK_IFELSE(
[ AC_LANG_CALL([], [__gmpz_init]) ],
[ AC_MSG_RESULT(yes) ],
[ AC_MSG_RESULT(no)
AC_MSG_ERROR([failed to link libraries by $CXX.]) ])
AC_LANG_POP(C++)
# -------- Check for C header files --------
AC_DEFUN([REQUIRED_HEADER], [
AC_CHECK_HEADER($1, [], [
AC_MSG_ERROR([required header file <$1> is not found.])
])])
# C99 headers
REQUIRED_HEADER(assert.h)
REQUIRED_HEADER(ctype.h)
REQUIRED_HEADER(dirent.h)
REQUIRED_HEADER(errno.h)
REQUIRED_HEADER(inttypes.h)
REQUIRED_HEADER(limits.h)
REQUIRED_HEADER(math.h)
REQUIRED_HEADER(setjmp.h)
REQUIRED_HEADER(stdarg.h)
REQUIRED_HEADER(stddef.h)
REQUIRED_HEADER(stdint.h)
REQUIRED_HEADER(stdio.h)
REQUIRED_HEADER(stdlib.h)
REQUIRED_HEADER(string.h)
REQUIRED_HEADER(time.h)
# POSIX headers
REQUIRED_HEADER(fcntl.h)
REQUIRED_HEADER(fenv.h)
REQUIRED_HEADER(dlfcn.h)
REQUIRED_HEADER(poll.h)
REQUIRED_HEADER(signal.h)
REQUIRED_HEADER(sys/mman.h)
REQUIRED_HEADER(sys/resource.h)
REQUIRED_HEADER(sys/time.h)
REQUIRED_HEADER(sys/times.h)
REQUIRED_HEADER(sys/stat.h)
REQUIRED_HEADER(sys/socket.h)
REQUIRED_HEADER(unistd.h)
REQUIRED_HEADER(utime.h)
if test "x$with_pthread" = "xyes"; then
REQUIRED_HEADER(pthread.h)
fi
# others
REQUIRED_HEADER(gmp.h)
case "$target_os" in
*mingw*)
REQUIRED_HEADER(windows.h)
;;
esac
AC_CHECK_HEADERS(libunwind.h)
AC_CHECK_FUNCS(unw_getcontext)
# -------- check for C functions --------
dnl AC_FUNC_FORK
dnl AC_FUNC_MALLOC
dnl AC_FUNC_REALLOC
AC_CHECK_FUNCS([ \
ceilf \
clock_gettime \
copysign \
copysignf \
dlopen \
fegetround \
fesetround \
finite \
floorf \
fpclass \
frexpf \
getrusage \
gettimeofday \
ldexpf \
mkstemp \
mmap \
modf \
modff \
nextafter \
nextafterf \
poll \
readlink \
roundf \
select \
sleep \
socket \
strptime \
times \
utime \
utimes \
])
AC_CHECK_DECLS([CLOCK_MONOTONIC],,,[#include <time.h>])
AC_CHECK_DECLS([fpclassify, isinf, isnan, isnormal, signbit],,,
[#include <math.h>])
# FreeBSD does not define fegetround/fesetround as library functions,
# but as inline functions in fenv.h.
if test "x$ac_cv_func_fegetround" = "xno"; then
AC_CHECK_DECLS([fegetround],,,[#include <fenv.h>])
fi
if test "x$ac_cv_func_fesetround" = "xno"; then
AC_CHECK_DECLS([fesetround],,,[#include <fenv.h>])
fi
AC_CHECK_TYPES([max_align_t])
# -------- check for C/POSIX features that the compiler implies --------
AC_DEFUN([REQUIRED_TYPE], [
AC_CHECK_SIZEOF($1, [], [
AC_INCLUDES_DEFAULT
$3
])
if test "$[]AS_TR_SH([ac_cv_sizeof_$1])" -eq 0; then
AC_MSG_ERROR([required type $1 is not found.])
fi
flag=
for i in $2; do
if test "[$]AS_TR_SH([ac_cv_sizeof_$1])" -eq [$]i; then
flag="AS_TR_CPP($1)=[$]i"
METAFLAGS="$METAFLAGS [$]flag"
fi
done
if test -z "$[]flag"; then
AC_MSG_ERROR([unsupported size of $1])
fi
AS_TR_SH([SIZEOF_$1])=[$]AS_TR_SH([ac_cv_sizeof_$1])
AS_TR_SH([BITSOF_$1])=`expr "$[]AS_TR_SH([SIZEOF_$1])" '*' 8`
AC_SUBST(AS_TR_SH([SIZEOF_$1]))
AC_SUBST(AS_TR_SH([BITSOF_$1]))
])
REQUIRED_TYPE(int, 4)
REQUIRED_TYPE(float, 4)
REQUIRED_TYPE(double, 8)
REQUIRED_TYPE(long, 4 8)
REQUIRED_TYPE(long long, 4 8)
REQUIRED_TYPE(size_t, 4 8)
# -------- Finale --------
AC_CONFIG_FILES([
Makefile
config.mk
src/config.mk
])
AC_CONFIG_FILES([stamp-h], [AS_ECHO(timestamp) > stamp-h])
AC_OUTPUT
if test "x$no_create" != "xyes" && test "x$srcdir" != "x."; then
(cd "$srcdir" && $FIND precompiled src tests -type d) | while read i; do
AS_ECHO("creating directory $i")
AS_MKDIR_P("$i")
done
for i in src/builtin.smi; do
AS_ECHO("copying file $i")
cp $srcdir/$i $i
done
fi
|