We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1918508 + 5ef3962 commit 71f38e6Copy full SHA for 71f38e6
tools/extras/install_liblbfgs.sh
@@ -8,7 +8,9 @@ if [ ! -f liblbfgs-$VER.tar.gz ]; then
8
if [ -d "$DOWNLOAD_DIR" ]; then
9
cp -p "$DOWNLOAD_DIR/liblbfgs-$VER.tar.gz" . || exit 1
10
else
11
- $WGET https://github.com/downloads/chokkan/liblbfgs/liblbfgs-$VER.tar.gz || exit 1
+ # only 1.10 supported
12
+ $WGET https://danielpovey.com/files/liblbfgs-$VER.tar.gz || exit 1
13
+ # $WGET https://github.com/downloads/chokkan/liblbfgs/liblbfgs-$VER.tar.gz || exit 1
14
fi
15
16
@@ -37,4 +39,3 @@ cd ..
37
39
echo "export LIBLBFGS=$wd/liblbfgs-1.10"
38
40
echo export LD_LIBRARY_PATH='${LD_LIBRARY_PATH:-}':'${LIBLBFGS}'/lib/.libs
41
) >> env.sh
-
0 commit comments