[MIT-Scheme-devel] Edwin doesn't launch in master

2018-10-20 Thread Taylor R Campbell
Clean build with ./Setup.sh && ./configure && make. Am I doing anything wrong? I saw a commit fly by about not building Edwin by default. % ./microcode/scheme --library lib --edwin MIT/GNU Scheme running under NetBSD Type `^C' (control-C) followed by `H' to obtain information about interrupts.

Re: [MIT-Scheme-devel] Edwin doesn't launch in master

2018-10-21 Thread Chris Hanson
Yeah, it's been made into a separately configured add-on module. I'm working on refactoring the Makefiles so that everything is built correctly, but I'm not there yet. If you need this done quickly then ask Matt what the right incantation is. I think it's something like "run autogen.sh in each of t

Re: [MIT-Scheme-devel] Edwin doesn't launch in master

2018-10-21 Thread Matt Birkholz
Something like this? $ git clone git://git.savannah.gnu.org/mit-scheme.git $ cd mit-scheme $ prefix=$PWD $ cd src $ ./Setup.sh $ ./configure --prefix=$prefix $ make tags all check $ make install $ export MIT_SCHEME_EXE=$prefix/bin/mit-scheme $ for P in blowfish gdbm pgsql mcrypt x11 edwin x11-scre

Re: [MIT-Scheme-devel] Edwin doesn't launch in master

2018-10-21 Thread Taylor R Campbell
> Date: Sun, 21 Oct 2018 01:40:27 -0700 > From: Matt Birkholz > > Something like this? > > $ git clone git://git.savannah.gnu.org/mit-scheme.git > $ cd mit-scheme > $ prefix=$PWD > $ cd src > $ ./Setup.sh > $ ./configure --prefix=$prefix > $ make tags all check > $ make install > $ export MIT_SC

Re: [MIT-Scheme-devel] Edwin doesn't launch in master

2018-10-21 Thread Matt Birkholz
On Sun, 2018-10-21 at 16:25 +, Taylor R Campbell wrote: > Fails to build in x11. Am I doing something wrong? I see several .h > files with `typedef unsigned long SCM;', which doesn't seem right. I compared the command lines libtool chose for each of us and they are identical (modulo whitespa

Re: [MIT-Scheme-devel] Edwin doesn't launch in master

2018-10-23 Thread Chris Hanson
I just merged my makefile-refactor branch into master. The changes are pretty extensive: - The "toolchain" compilation is gone, as is the bulk of the contents of host-adapter. Compilation now makes a single pass through everything. In general, cross compilation is now achieved by a two-s

Re: [MIT-Scheme-devel] Edwin doesn't launch in master

2018-10-24 Thread Taylor R Campbell
> Date: Tue, 23 Oct 2018 14:47:07 -0700 > From: Chris Hanson > > I just merged my makefile-refactor branch into master. Just tried ./Setup.sh && ./configure in a clean tree, and (a) various parts of the build tried to use the variable microcode-id/operating-system-suffix, which doesn't exis

Re: [MIT-Scheme-devel] Edwin doesn't launch in master

2018-10-24 Thread Taylor R Campbell
> Date: Thu, 25 Oct 2018 02:12:04 + > From: Taylor R Campbell > > Can you avoid using what doesn't exist in 9.2 in the build, and pass > --no-init-file? Sorry, missed the part of your mail about having to do a manual multi-stage build to make this work on 9.2. Can't build x11 before mit-sch

Re: [MIT-Scheme-devel] Edwin doesn't launch in master

2018-10-24 Thread Chris Hanson
On Wed, Oct 24, 2018 at 7:12 PM Taylor R Campbell wrote: > > Date: Tue, 23 Oct 2018 14:47:07 -0700 > > From: Chris Hanson > > > > I just merged my makefile-refactor branch into master. > > Just tried ./Setup.sh && ./configure in a clean tree, and > > (a) various parts of the build tried to use t

Re: [MIT-Scheme-devel] Edwin doesn't launch in master

2018-10-24 Thread Chris Hanson
Build the toolchain using 9.2 first, configuring with --disable-default-plugins. Then build the whole system from the toolchain, configuring with --with-scheme-build=../toolchain (or whatever). If you make source changes and want to update both, run make in the toolchain build, then run it again i