aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
blob: a8f3d2b5aad9b8d74f9665fcf67fb3ce9942ca26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
AC_INIT(riscv-tests, 1.0)

cross_compiling=yes
AC_PROG_CC

AC_ARG_ENABLE([M], AS_HELP_STRING([--disable-M], [Do no build M tests]))
AS_IF([test "x$enable_M" != "xno"], [
  AC_SUBST(enable_M,yes)
])

AC_ARG_ENABLE([A], AS_HELP_STRING([--disable-A], [Do no build A tests]))
AS_IF([test "x$enable_A" != "xno"], [
  AC_SUBST(enable_A,yes)
])

AC_ARG_ENABLE([F], AS_HELP_STRING([--disable-F], [Do not build F tests]))
AS_IF([test "x$enable_F" != "xno"], [
  AC_SUBST(enable_F,yes)
])

AC_OUTPUT(
    Makefile
)