Re: sockets

"R. Matthew Emerson" <[email protected]> Wed, 17 Jul 2024 11:33:39 -0700
Newsgroups gmane.lisp.openmcl.devel
Message-ID <[email protected]>

> On Jul 17, 2024, at 6:25=E2=80=AFAM, David Cooper =
<[email protected]> wrote:
>=20
> Sorry for being a johnny-come-lately here but Could you send a quick =
refresher about how to get your current development trunk and/or =
branches built locally so we can test?=20

Sure.  See the notes at https://github.com/Clozure/ccl/releases/latest

I also recently made an asciicast of the installation process: =
https://asciinema.org/a/667672

I=E2=80=99ll just include the steps here, too.

# get source code
git clone https://github.com/Clozure/ccl.git ccl

# get bootstrapping binaries...
# ...for FreeBSD:
curl -L -O =
https://github.com/Clozure/ccl/releases/latest/download/freebsdx86.tar.gz

# ...or for Linux:
curl -L -O =
https://github.com/Clozure/ccl/releases/latest/download/linuxx86.tar.gz

# ...or for the Mac
curl -L -O =
https://github.com/Clozure/ccl/releases/latest/download/darwinx86.tar.gz

# extract bootstrapping binaries
cd ccl
tar xf ../darwinx86.tar.gz # or linuxx86.tar.gz, or freebsdx86.tar.gz

# rebuild
./dx86cl64 -n -e '(rebuild-ccl :full t)' -e '(quit)=E2=80=99. # or =
lx86cl64 for Linux, or fx86cl64 for FreeBSD


> Especially I was having some ipv6 issues with 1.12 last year, and =
temporarily disabled ipv6 for my CCL Gendl builds - i'd like to find =
time to revisit those issues with the latest development version.=20

If you get the chance to test it out again, please report bugs if you =
can.