CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

| Download

GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it

Views: 418346
1
#!/usr/bin/env bash
2
set -ex
3
4
# ensure coverage is turned on
5
export CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage"
6
export LDFLAGS="$LDFLAGS -fprofile-arcs"
7
8
if [[ $ABI = 32 ]]
9
then
10
export CFLAGS="$CFLAGS -m32"
11
export LDFLAGS="$LDFLAGS -m32"
12
fi
13
14
# build this package
15
# ./autogen.sh
16
# ./configure --with-gaproot=$GAPROOT
17
# make -j4 V=1
18
19
# ... and link it into GAP pkg dir
20
ls
21
ls $GAPROOT
22
ls $GAPROOT/pkg
23
ln -s $PWD $GAPROOT/pkg/
24
25