aboutsummaryrefslogtreecommitdiff
path: root/pk/pk.ac
diff options
context:
space:
mode:
authorAndrew Waterman <waterman@s144.Millennium.Berkeley.EDU>2011-04-09 17:37:42 -0700
committerAndrew Waterman <waterman@s144.Millennium.Berkeley.EDU>2011-04-09 17:37:42 -0700
commit6e7fe98ea95c6da8c573fdc032b5269f08bbacc1 (patch)
treee0f0f3c73ad8785a95a6e8d22c96b5430370bb56 /pk/pk.ac
parent666ae0c9e5355e578c2487b81f48b4b74cc16dda (diff)
downloadpk-6e7fe98ea95c6da8c573fdc032b5269f08bbacc1.zip
pk-6e7fe98ea95c6da8c573fdc032b5269f08bbacc1.tar.gz
pk-6e7fe98ea95c6da8c573fdc032b5269f08bbacc1.tar.bz2
[xcc,pk,sim,opcodes] added first RVC instruction
Diffstat (limited to 'pk/pk.ac')
-rw-r--r--pk/pk.ac13
1 files changed, 0 insertions, 13 deletions
diff --git a/pk/pk.ac b/pk/pk.ac
index c53c2c2..47c9207 100644
--- a/pk/pk.ac
+++ b/pk/pk.ac
@@ -3,19 +3,6 @@ AS_IF([test "x$enable_vm" != "xno"], [
AC_DEFINE([PK_ENABLE_VM],,[Define if virtual memory support is enabled])
])
-AC_ARG_ENABLE([kernel-64bit], AS_HELP_STRING([--disable-kernel-64bit], [Disable 64-bit kernel operation]))
-AS_IF([test "x$enable_kernel_64bit" != "xno"], [
- AC_DEFINE([PK_ENABLE_KERNEL_64BIT],,[Define if the kernel runs in 64-bit mode])
-],[
- AC_SUBST([CFLAGS],["$CFLAGS -mabi=32"])
- AC_SUBST([LDFLAGS],["$LDFLAGS -mabi=32"])
-])
-
-AC_ARG_ENABLE([user-64bit], AS_HELP_STRING([--disable-user-64bit], [Disable 64-bit user operation]))
-AS_IF([test "x$enable_user_64bit" != "xno"], [
- AC_DEFINE([PK_ENABLE_USER_64BIT],,[Define if the user runs in 64-bit mode])
-])
-
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])