* [9fans] can i stll golang on plan9?
@ 2025-01-24 8:23 Steve Simon
2025-01-24 15:59 ` Ron Minnich
2025-01-24 16:04 ` Bakul Shah via 9fans
0 siblings, 2 replies; 6+ messages in thread
From: Steve Simon @ 2025-01-24 8:23 UTC (permalink / raw)
To: 9fans
hi,
does the go compiler and runtime work on 9front, specificly, does it work on the raspberry pi?
thanks,
-Steve
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/T6fe601aa30dd8c2b-Mfe15d84b3bb487392d62ac25
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [9fans] can i stll golang on plan9?
2025-01-24 8:23 [9fans] can i stll golang on plan9? Steve Simon
@ 2025-01-24 15:59 ` Ron Minnich
2025-01-24 16:04 ` Bakul Shah via 9fans
1 sibling, 0 replies; 6+ messages in thread
From: Ron Minnich @ 2025-01-24 15:59 UTC (permalink / raw)
To: 9fans
I have not tried the rpi, but it works fine on x86
On Fri, Jan 24, 2025 at 5:58 AM Steve Simon <steve@quintile.net> wrote:
>
>
> hi,
>
> does the go compiler and runtime work on 9front, specificly, does it work on the raspberry pi?
>
> thanks,
>
> -Steve
>
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/T6fe601aa30dd8c2b-Me7063c62a800d533dff3086d
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [9fans] can i stll golang on plan9?
2025-01-24 8:23 [9fans] can i stll golang on plan9? Steve Simon
2025-01-24 15:59 ` Ron Minnich
@ 2025-01-24 16:04 ` Bakul Shah via 9fans
2025-01-24 17:38 ` Philip Silva via 9fans
1 sibling, 1 reply; 6+ messages in thread
From: Bakul Shah via 9fans @ 2025-01-24 16:04 UTC (permalink / raw)
To: 9fans
[-- Attachment #1: Type: text/plain, Size: 670 bytes --]
I see go1.23.5.plan9-{386,amd64,arm}.tar.gz <https://go.dev/dl/go1.23.5.plan9-arm.tar.gz> on go.dev/dl/. Presumably you can cross-build for arm64?
See also this long thread: https://github.com/golang/go/issues/57540
> On Jan 24, 2025, at 12:23 AM, Steve Simon <steve@quintile.net> wrote:
>
> hi,
>
> does the go compiler and runtime work on 9front, specificly, does it work on the raspberry pi?
>
> thanks,
>
> -Steve
>
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/T6fe601aa30dd8c2b-M2467b55337d1cf5e7d9dd704
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription
[-- Attachment #2: Type: text/html, Size: 2238 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [9fans] can i stll golang on plan9?
2025-01-24 16:04 ` Bakul Shah via 9fans
@ 2025-01-24 17:38 ` Philip Silva via 9fans
2025-01-25 1:21 ` ron minnich
2025-01-25 8:14 ` Steve Simon
0 siblings, 2 replies; 6+ messages in thread
From: Philip Silva via 9fans @ 2025-01-24 17:38 UTC (permalink / raw)
To: 9fans
[-- Attachment #1: Type: text/plain, Size: 1278 bytes --]
Hi! This repository can be cross-built to arm64: https://github.com/psilva261/go-arm64.plan9.git
It's a dev version of 1.22 at the moment (I need to update this actually)
On Friday, January 24th, 2025 at 5:04 PM, Bakul Shah via 9fans <9fans@9fans.net> wrote:
> I see [go1.23.5.plan9-{386,amd64,arm}.tar.gz](https://go.dev/dl/go1.23.5.plan9-arm.tar.gz) on go.dev/dl/. Presumably you can cross-build for arm64?
> See also this long thread: https://github.com/golang/go/issues/57540
>
>> On Jan 24, 2025, at 12:23 AM, Steve Simon <steve@quintile.net> wrote:
>>
>> hi,
>>
>> does the go compiler and runtime work on 9front, specificly, does it work on the raspberry pi?
>>
>> thanks,
>>
>> -Steve
>
> [9fans](https://9fans.topicbox.com/latest) / 9fans / see [discussions](https://9fans.topicbox.com/groups/9fans) + [participants](https://9fans.topicbox.com/groups/9fans/members) + [delivery options](https://9fans.topicbox.com/groups/9fans/subscription) [Permalink](https://9fans.topicbox.com/groups/9fans/T6fe601aa30dd8c2b-M2467b55337d1cf5e7d9dd704)
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/T6fe601aa30dd8c2b-M0b0164fdee747bafbaf82fe5
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription
[-- Attachment #2: Type: text/html, Size: 3439 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [9fans] can i stll golang on plan9?
2025-01-24 17:38 ` Philip Silva via 9fans
@ 2025-01-25 1:21 ` ron minnich
2025-01-25 8:14 ` Steve Simon
1 sibling, 0 replies; 6+ messages in thread
From: ron minnich @ 2025-01-25 1:21 UTC (permalink / raw)
To: 9fans
[-- Attachment #1: Type: text/plain, Size: 1652 bytes --]
I forgot to mention that, for every commit to the u-root repo, part of the
CI is ensuring it builds on plan 9. This had gotten lost at some point but
it's back.
I'll add a test for ensuring it builds on arm64; I just forgot.
On Fri, Jan 24, 2025 at 9:53 AM Philip Silva via 9fans <9fans@9fans.net>
wrote:
> Hi! This repository can be cross-built to arm64:
> https://github.com/psilva261/go-arm64.plan9.git
>
> It's a dev version of 1.22 at the moment (I need to update this actually)
>
> On Friday, January 24th, 2025 at 5:04 PM, Bakul Shah via 9fans <
> 9fans@9fans.net> wrote:
>
> I see go1.23.5.plan9-{386,amd64,arm}.tar.gz
> <https://go.dev/dl/go1.23.5.plan9-arm.tar.gz> on go.dev/dl/. Presumably
> you can cross-build for arm64?
> See also this long thread: https://github.com/golang/go/issues/57540
>
> On Jan 24, 2025, at 12:23 AM, Steve Simon <steve@quintile.net> wrote:
>
> hi,
>
> does the go compiler and runtime work on 9front, specificly, does it work
> on the raspberry pi?
>
> thanks,
>
> -Steve
>
> *9fans <https://9fans.topicbox.com/latest>* / 9fans / see discussions
> <https://9fans.topicbox.com/groups/9fans> + participants
> <https://9fans.topicbox.com/groups/9fans/members> + delivery options
> <https://9fans.topicbox.com/groups/9fans/subscription> Permalink
> <https://9fans.topicbox.com/groups/9fans/T6fe601aa30dd8c2b-M0b0164fdee747bafbaf82fe5>
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/T6fe601aa30dd8c2b-M20613a8a83cf3d43df110b8e
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription
[-- Attachment #2: Type: text/html, Size: 4102 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [9fans] can i stll golang on plan9?
2025-01-24 17:38 ` Philip Silva via 9fans
2025-01-25 1:21 ` ron minnich
@ 2025-01-25 8:14 ` Steve Simon
1 sibling, 0 replies; 6+ messages in thread
From: Steve Simon @ 2025-01-25 8:14 UTC (permalink / raw)
To: 9fans
[-- Attachment #1: Type: text/html, Size: 3847 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-01-25 14:03 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-01-24 8:23 [9fans] can i stll golang on plan9? Steve Simon
2025-01-24 15:59 ` Ron Minnich
2025-01-24 16:04 ` Bakul Shah via 9fans
2025-01-24 17:38 ` Philip Silva via 9fans
2025-01-25 1:21 ` ron minnich
2025-01-25 8:14 ` Steve Simon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).