diff options
Diffstat (limited to 'chapter8/gmp.sh')
-rw-r--r-- | chapter8/gmp.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/chapter8/gmp.sh b/chapter8/gmp.sh new file mode 100644 index 0000000..f853d52 --- /dev/null +++ b/chapter8/gmp.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +# Uncomment for generic libraries +# cp -v configfsf.guess config.guess +# cp -v configfsf.sub config.sub + +./configure --prefix=/usr \ + --enable-cxx \ + --disable-static \ + --docdir=/usr/share/doc/gmp-"${VERSION}" + +make +make html + +make -j1 install +make -j1 install-html |