aboutsummaryrefslogtreecommitdiff
path: root/pk/pk.ac
blob: fdcaa65d0d29e618a152200bb922c51e0fc31d3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
AC_ARG_ENABLE([vm], AS_HELP_STRING([--disable-vm], [Disable virtual memory]))
AS_IF([test "x$enable_vm" != "xno"], [
  AC_DEFINE([PK_ENABLE_VM],,[Define if virtual memory support is enabled])
])

AC_ARG_ENABLE([fp-emulation], AS_HELP_STRING([--disable-fp-emulation], [Disable floating-point emulation]))
AS_IF([test "x$enable_fp_emulation" != "xno"], [
  AC_DEFINE([PK_ENABLE_FP_EMULATION],,[Define if floating-point emulation is enabled])
])

AC_ARG_ENABLE([atomics], AS_HELP_STRING([--disable-atomics], [Emulate atomic ops nonatomically]))
AS_IF([test "x$enable_atomics" != "xno"], [
  AC_DEFINE([PK_ENABLE_ATOMICS],,[Define if atomics are supported])
])