-
Notifications
You must be signed in to change notification settings - Fork 33
/
bootstrap.sh
executable file
·126 lines (100 loc) · 3.02 KB
/
bootstrap.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#!/usr/bin/env bash
jobs="-j 4 "
if [ "$1" = "-j" ]; then
jobs="-j $2 "
fi
# Create Virtual Environment
if [ "$PYTHON" = "" ]; then PYTHON=python; export PYTHON; fi
PIP="$PYTHON -m pip"
PYVER=$($PYTHON --version | cut -d' ' -f2)
echo "Usage:"
echo " ./bootstrap.sh [ -j <#jobs> ] (uses system's python)"
echo " PYTHON=python2 ./bootstrap.sh (uses python2)"
echo " PYTHON=python3 ./bootstrap.sh (uses python3)"
echo " "
echo "Using python version: $PYVER"
echo "Using $jobs"
sleep 1
rm -rf g6k-env
$PYTHON -m virtualenv g6k-env -p $PYTHON
cat <<EOF >>g6k-env/bin/activate
### LD_LIBRARY_HACK
_OLD_LD_LIBRARY_PATH="\$LD_LIBRARY_PATH"
LD_LIBRARY_PATH="\$VIRTUAL_ENV/lib:\$LD_LIBRARY_PATH"
export LD_LIBRARY_PATH
### END_LD_LIBRARY_HACK
### PKG_CONFIG_HACK
_OLD_PKG_CONFIG_PATH="\$PKG_CONFIG_PATH"
PKG_CONFIG_PATH="\$VIRTUAL_ENV/lib/pkgconfig:\$PKG_CONFIG_PATH"
export PKG_CONFIG_PATH
### END_PKG_CONFIG_HACK
PYTHON="$PYTHON"
export PYTHON
unalias python 2>/dev/null
unalias pip 2>/dev/null
alias python=$PYTHON
alias pip="$PYTHON -m pip"
EOF
if [ ! -d g6k-env ]; then
echo "Failed to create virtual environment in 'g6k-env' !"
echo "Is '$PYTHON -m virtualenv' working?"
echo "Try '$PYTHON -m pip install virtualenv' otherwise."
exit 1
fi
ln -s g6k-env/bin/activate ./
source ./activate
$PIP install -U pip
cat <<EOF >>g6k-env/bin/activate
CFLAGS="\$CFLAGS -O3 -march=native -Wp,-U_FORTIFY_SOURCE"
CXXFLAGS="\$CXXFLAGS -O3 -march=native -Wp,-U_FORTIFY_SOURCE"
export CFLAGS
export CXXFLAGS
EOF
deactivate
source ./activate
# Install FPLLL
git clone https://github.com/fplll/fplll g6k-fplll
cd g6k-fplll || exit
./autogen.sh
./configure --prefix="$VIRTUAL_ENV" $CONFIGURE_FLAGS
make clean
retval=$?
if [ $retval -ne 0 ]; then
echo "Make clean failed in fplll. This is usually because there was an error with either autogen.sh or configure."
echo "Check the logs above - they'll contain more information."
exit 1 # 1 is the exit value if building fplll fails via configure or autogen
fi
make $jobs
retval=$?
if [ $retval -ne 0 ]; then
echo "Making fplll failed."
echo "Check the logs above - they'll contain more information."
exit 2 # 2 is the exit value if building fplll fails as a result of make $jobs.
fi
make install
retval=$?
if [ $retval -ne 0 ]; then
echo "Make install failed for fplll."
echo "Check the logs above - they'll contain more information."
exit 3 # 3 is the exit value if installing fplll failed.
fi
cd ..
# Install FPyLLL
git clone https://github.com/fplll/fpylll g6k-fpylll
cd g6k-fpylll || exit
$PIP install -r requirements.txt
$PIP install -r suggestions.txt
$PYTHON setup.py clean
$PYTHON setup.py build_ext $jobs || $PYTHON setup.py build_ext
$PYTHON setup.py install
cd ..
# Build G6K
$PIP install -r requirements.txt
$PYTHON setup.py clean
$PYTHON setup.py build_ext $jobs --inplace || $PYTHON setup.py build_ext --inplace
# Fin
echo " "
echo "Don't forget to activate environment each time:"
echo " source ./activate"
echo "This will also add the following aliases:"
grep "^alias" activate