aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
blob: 8219c3299bf11d538ee2baaff42ac970a51b6aad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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_OUTPUT(
    Makefile
)