Rocksolid Light

Welcome to Rocksolid Light

mail  files  register  newsreader  groups  login

Message-ID:  

fortune: cannot execute. Out of cookies.


devel / comp.lang.lisp / Re: Lisp on Mac M1

SubjectAuthor
* Re: Lisp on Mac M1argenfargen
`* Re: Lisp on Mac M1argenfargen
 `- Re: Lisp on Mac M1Zyni Moë

1
Re: Lisp on Mac M1

<6c1b28c1-eeb9-4ecc-bfac-1b2b9c63fb31n@googlegroups.com>

  copy mid

https://news.novabbs.org/devel/article-flat.php?id=3359&group=comp.lang.lisp#3359

  copy link   Newsgroups: comp.lang.lisp
X-Received: by 2002:a37:4648:0:b0:6b9:29d9:5756 with SMTP id t69-20020a374648000000b006b929d95756mr1677847qka.57.1659769762896;
Sat, 06 Aug 2022 00:09:22 -0700 (PDT)
X-Received: by 2002:a05:6870:f6a4:b0:10e:2561:e6c8 with SMTP id
el36-20020a056870f6a400b0010e2561e6c8mr4943395oab.187.1659769762456; Sat, 06
Aug 2022 00:09:22 -0700 (PDT)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.lisp
Date: Sat, 6 Aug 2022 00:09:22 -0700 (PDT)
In-Reply-To: <4f17a741-4a8c-4c26-8c3f-3c7dda40aad8n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=216.24.219.148; posting-account=rJ_N4AoAAAB7Rd9sInBVxQJ67DvOi3cZ
NNTP-Posting-Host: 216.24.219.148
References: <4f17a741-4a8c-4c26-8c3f-3c7dda40aad8n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <6c1b28c1-eeb9-4ecc-bfac-1b2b9c63fb31n@googlegroups.com>
Subject: Re: Lisp on Mac M1
From: kkimes2020@gmail.com (argenfargen)
Injection-Date: Sat, 06 Aug 2022 07:09:22 +0000
Content-Type: text/plain; charset="UTF-8"
X-Received-Bytes: 1836
 by: argenfargen - Sat, 6 Aug 2022 07:09 UTC

On Tuesday, October 26, 2021 at 4:30:37 PM UTC+1, alanraf...@gmail.com wrote:
> I'm trying to use Lisp on Apple silicon but can't still. Any recommendations?
>
> Thank you.
I looked through the ruby code on homebrew for clisp.
So, I adapted that:
curl https://alpha.gnu.org/gnu/clisp/clisp-2.49.92.tar.bz2 -o clisp-2.49.92.tar.bz2
tar xf clisp-2.49.92.tar.bz2
cd clisp-2.49.92/src/gllib/

Edited "vma-iter.c" to delete this line (line 1330):
# if defined __ppc64__ || defined __x86_64__

and replaced it with:
# if defined __aarch64__ || defined __ppc64__ || defined __x86_64__

It compiled and passed a lot of tests and gives me:
usr~/clisp-2.49.92/src> file clisp
clisp: Mach-O 64-bit executable arm64

Re: Lisp on Mac M1

<c2ec8916-af31-4fc4-afde-debbbb615933n@googlegroups.com>

  copy mid

https://news.novabbs.org/devel/article-flat.php?id=3360&group=comp.lang.lisp#3360

  copy link   Newsgroups: comp.lang.lisp
X-Received: by 2002:a05:620a:687:b0:6b8:fad6:abbd with SMTP id f7-20020a05620a068700b006b8fad6abbdmr7856801qkh.338.1659773145786;
Sat, 06 Aug 2022 01:05:45 -0700 (PDT)
X-Received: by 2002:a05:6808:14c6:b0:33a:90ad:241f with SMTP id
f6-20020a05680814c600b0033a90ad241fmr4438623oiw.116.1659773145445; Sat, 06
Aug 2022 01:05:45 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border-2.nntp.ord.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.lisp
Date: Sat, 6 Aug 2022 01:05:45 -0700 (PDT)
In-Reply-To: <6c1b28c1-eeb9-4ecc-bfac-1b2b9c63fb31n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=216.24.219.161; posting-account=rJ_N4AoAAAB7Rd9sInBVxQJ67DvOi3cZ
NNTP-Posting-Host: 216.24.219.161
References: <4f17a741-4a8c-4c26-8c3f-3c7dda40aad8n@googlegroups.com> <6c1b28c1-eeb9-4ecc-bfac-1b2b9c63fb31n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <c2ec8916-af31-4fc4-afde-debbbb615933n@googlegroups.com>
Subject: Re: Lisp on Mac M1
From: kkimes2020@gmail.com (argenfargen)
Injection-Date: Sat, 06 Aug 2022 08:05:45 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 22
 by: argenfargen - Sat, 6 Aug 2022 08:05 UTC

On Saturday, August 6, 2022 at 8:09:25 AM UTC+1, argenfargen wrote:
> On Tuesday, October 26, 2021 at 4:30:37 PM UTC+1, alanraf...@gmail.com wrote:
> > I'm trying to use Lisp on Apple silicon but can't still. Any recommendations?
> >
> > Thank you.
> I looked through the ruby code on homebrew for clisp.
> So, I adapted that:
> curl https://alpha.gnu.org/gnu/clisp/clisp-2.49.92.tar.bz2 -o clisp-2.49.92.tar.bz2
> tar xf clisp-2.49.92.tar.bz2
> cd clisp-2.49.92/src/gllib/
>
> Edited "vma-iter.c" to delete this line (line 1330):
> # if defined __ppc64__ || defined __x86_64__
>
> and replaced it with:
> # if defined __aarch64__ || defined __ppc64__ || defined __x86_64__
>
> It compiled and passed a lot of tests and gives me:
> usr~/clisp-2.49.92/src> file clisp
> clisp: Mach-O 64-bit executable arm64

Steel Bank now has version 2.1.2 for macos M1. I've rebuilt sbcl 2.2.7 with it and taht passes regression tests.
It's on the sbcl.org site. Click on "Downloads" link and it takes you to a table showing 2.1.2 and will download from sourcforge.com

Re: Lisp on Mac M1

<tdgs3b$4rqp$1@dont-email.me>

  copy mid

https://news.novabbs.org/devel/article-flat.php?id=3364&group=comp.lang.lisp#3364

  copy link   Newsgroups: comp.lang.lisp
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: no_email@invalid.invalid (Zyni Moë)
Newsgroups: comp.lang.lisp
Subject: Re: Lisp on Mac M1
Date: Tue, 16 Aug 2022 19:44:43 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 15
Message-ID: <tdgs3b$4rqp$1@dont-email.me>
References: <4f17a741-4a8c-4c26-8c3f-3c7dda40aad8n@googlegroups.com>
<6c1b28c1-eeb9-4ecc-bfac-1b2b9c63fb31n@googlegroups.com>
<c2ec8916-af31-4fc4-afde-debbbb615933n@googlegroups.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Tue, 16 Aug 2022 19:44:43 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="22d48d0c3c22db397831f64942e7381f";
logging-data="159577"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1925xZwOWVHCs1HtSh16TEvEePYWQ5vawA="
User-Agent: NewsTap/5.5 (iPad)
Cancel-Lock: sha1:sy3DdJUnDcOWWZL0Hav8Y8Hrh0M=
sha1:Zp1pN1QjBFAhxqZu9EafSEhnasc=
 by: Zyni Moë - Tue, 16 Aug 2022 19:44 UTC

argenfargen <kkimes2020@gmail.com> wrote:

> Steel Bank now has version 2.1.2 for macos M1. I've rebuilt sbcl 2.2.7
> with it and taht passes regression tests.

I found that you can use x64 ccl using Rosetta to cross-compile sbcl for
M1. Is very slow but once you have done it once you can of course use
resulting sbcl to rebuild itself, much faster,so now

This is SBCL 2.2.7.96-ceb434314, an implementation of ANSI Common Lisp.
More information about SBCL is available at <http://www.sbcl.org/>.

--
the small snake

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor