Files
MX_Pmodule/scripts/mpfr.build
2014-04-18 22:58:13 +02:00

18 lines
289 B
Bash
Executable File

#!/bin/bash
source "$(dirname $0)/../lib/libem.bash"
function em.configure() {
"${EM_SRCDIR}"/configure \
--prefix="${PREFIX}" \
--with-gmp=$GMP_PREFIX \
--disable-shared \
|| exit 1
}
# use system gcc to compile
declare -rx CC=gcc
em.set_build_dependencies "gmp"
em.make_all