-
Notifications
You must be signed in to change notification settings - Fork 127
Description
Pixie looks really neat. But the Debian build I used to install Pixie on my 32-bit linux Mint machine did not work. Could someone fix and test it, if it is indeed broken?
The last instruction under "Building with Debian" at
http://docs.pixielang.org/en/latest/getting-started.html
is "make build_with_jit". It seems to requests files from the non-existant folder "https://github.com/pixie-lang/external-deps/releases/". The session shown below should produce a file called "/tmp/externals.tar.bz2" and indeed it did, but it was not really a "bz2" file. It was just an ascii file containing the 9 character line ""Not Found".
Here is the session:
$ make build_with_jit
mkdir externals;
cd externals;
curl https://bitbucket.org/pypy/pypy/get/91db1a9.tar.bz2 > pypy.tar.bz2;
mkdir pypy;
cd pypy;
tar -jxf ../pypy.tar.bz2 --strip-components=1
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 16.4M 0 16.4M 0 0 607k 0 --:--:-- 0:00:27 --:--:-- 856k
echo https://github.com/pixie-lang/external-deps/releases/download/1.0/`uname -s-uname -m.tar.bz2 https://github.com/pixie-lang/external-deps/releases/download/1.0/Linux-i686.tar.bz2 curl -L https://github.com/pixie-lang/external-deps/releases/download/1.0/uname -s-uname -m`.tar.bz2 > /tmp/externals.tar.bz2
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 9 0 9 0 0 32 0 --:--:-- --:--:-- --:--:-- 34
tar -jxf /tmp/externals.tar.bz2 --strip-components=2
bzip2: (stdin) is not a bzip2 file.
tar: Child returned status 2
tar: Error is not recoverable: exiting now
make: *** [externals.fetched] Error 2
Thank you