diff options
Diffstat (limited to 'chapter8/gmp.sh')
-rw-r--r-- | chapter8/gmp.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/chapter8/gmp.sh b/chapter8/gmp.sh index 7a693aa..f853d52 100644 --- a/chapter8/gmp.sh +++ b/chapter8/gmp.sh @@ -1,3 +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 |