> Date: Thu, 26 Dec 2019 15:43:54 -0500 > From: David Liu <[email protected]> > > On Thu, Dec 26, 2019, 3:23 PM Chris Hanson <[email protected]> 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")
