[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: painter implementation for picture language in SICP
From: |
Taylor R Campbell |
Subject: |
Re: painter implementation for picture language in SICP |
Date: |
Mon, 30 Dec 2019 01:49:47 +0000 |
> Date: Thu, 26 Dec 2019 15:43:54 -0500
> From: David Liu <address@hidden>
>
> On Thu, Dec 26, 2019, 3:23 PM Chris Hanson <address@hidden> wrote:
>
> > The nmv-header? problem should have been fixed. What version of Scheme are
> > you using?
>
> I am using the x86_64 binary tarball downloaded from the GNU page as of Dec
> 2019, which if i remember correctly (typing this by phone) is 10.1.10.
It might be easier for you to try git master so you can test fixes as
we incorporate them. If 10.1.10 is installed at (say)
/usr/local/mit-scheme/10.1.10/bin/mit-scheme-x86-64, do:
git clone https://git.savannah.gnu.org/git/mit-scheme.git
cd mit-scheme/src
env PATH="$PATH":/usr/local/mit-scheme/10.1.10/bin ./Setup.sh
env PATH="$PATH":/usr/local/mit-scheme/10.1.10/bin ./configure
--enable-cross-compiling
env PATH="$PATH":/usr/local/mit-scheme/10.1.10/bin make -j4 cross-host
make -j4 cross-target
env FAST=y make check
(The cross-compilation business is there because we changed the ABI
between 10.1 and master; it will cease to be necessary after the next
release. If you have a number of CPUs other than 4, you might change
the -j option to make to reflect that, of course.)
Then you can start it with ./run-build, and do:
(cd "6001")
(load "6001.sf")
(load "6001.cbf")
(load "make")
- painter implementation for picture language in SICP, David Liu, 2019/12/25
- Re: painter implementation for picture language in SICP, Taylor R Campbell, 2019/12/25
- Re: painter implementation for picture language in SICP, David Liu, 2019/12/25
- Re: painter implementation for picture language in SICP, Taylor R Campbell, 2019/12/25
- Re: painter implementation for picture language in SICP, David Liu, 2019/12/26
- Re: painter implementation for picture language in SICP, Taylor R Campbell, 2019/12/26
- Re: painter implementation for picture language in SICP, David Liu, 2019/12/26
- Re: painter implementation for picture language in SICP, Chris Hanson, 2019/12/26
- Re: painter implementation for picture language in SICP, David Liu, 2019/12/26
- Re: painter implementation for picture language in SICP,
Taylor R Campbell <=
- Re: painter implementation for picture language in SICP, Chris Hanson, 2019/12/27