aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
blob: 44fbd4548726f3cd60b6c8b3272302faf27c3b9d (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
AC_INIT(riscv-toolchain, 1.0)

AC_PROG_CC
AC_PROG_AWK

AC_CHECK_LIB(gmp, __gmpz_mul_si, , [AC_MSG_ERROR(
     [GNU MP 3.1 or greater not found.
     See http://gmplib.org])])

AC_CHECK_LIB(mpfr, mpfr_add, , [AC_MSG_ERROR(
     [MPFR 3.1 or greater not found.
     See http://www.mpfr.org])])

AC_CHECK_LIB(mpc, mpc_add, , [AC_MSG_ERROR(
     [MPC 0.8.1 or greater not found.
     See http://www.multiprecision.org])])

AC_ARG_ENABLE(linux,
        [Toolchain targets Linux],
        AC_SUBST(default_target, linux),
        AC_SUBST(default_target, newlib)
        )

AC_OUTPUT(
    Makefile
)