9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
From: ality@pbrane.org (Anthony Martin)
Subject: [9fans] Go Plan 9
Date: Sun,  3 Apr 2011 14:13:33 -0700	[thread overview]
Message-ID: <20110403211333.GA3905@dinah> (raw)
In-Reply-To: <AANLkTi=7L-mqU=mFODnGcYCmyvR02M=MLFzKPpH2v2B1@mail.gmail.com>

andrey mirtchovski <mirtchovski at gmail.com> once said:
> cross-compilation (GOOS=plan9, GOARCH=386, link with -s), but there
> are a few issues -- the build fails at crypto, so fmt is not compiled.
> for a hello world you need to manually make install pkg/strconv and
> pkg/reflect and pkg/fmt.

Everything works fine for me without the '-s' flag.

Pavel Zholkover <paulzhol at gmail.com> once said:
> The produced binaries do not run properly on 9vx since the last gc
> changes so its native or kvm+qemu etc.

The reason it doesn't work on 9vx is because the 32 bit Go runtime
reserves a large chunk of address space (currently 768mb).  On all
other platforms, this is accomplised with an mmap equivalient, which
we all know won't work on Plan 9.

Right now, if you want to run Go binaries on Plan 9, you have to 
apply the patch at the bottom of this message.  In the future we
should probably have the runtime use the segment(3) device.

  Anthony


diff -r 11611373ac8a src/pkg/runtime/malloc.goc
--- a/src/pkg/runtime/malloc.goc	Sun Apr 03 09:11:41 2011 -0700
+++ b/src/pkg/runtime/malloc.goc	Sun Apr 03 14:00:13 2011 -0700
@@ -231,7 +231,7 @@
 
 int32 runtime?sizeof_C_MStats = sizeof(MStats);
 
-#define MaxArena32 (2U<<30)
+#define MaxArena32 (240U<<20)
 
 void
 runtime?mallocinit(void)
@@ -292,7 +292,7 @@
 		// kernel threw at us, but normally that's a waste of 512 MB
 		// of address space, which is probably too much in a 32-bit world.
 		bitmap_size = MaxArena32 / (sizeof(void*)*8/4);
-		arena_size = 512<<20;
+		arena_size = 64<<20;
 		
 		// SysReserve treats the address we ask for, end, as a hint,
 		// not as an absolute requirement.  If we ask for the end



  parent reply	other threads:[~2011-04-03 21:13 UTC|newest]

Thread overview: 83+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <AANLkTik3gx8QK7O-+O=R8oFELTt6WgVHO3dJV51cZiPQ@mail.gmail.com>
2011-04-02 22:56 ` Pavel Zholkover
2011-04-02 23:00   ` andrey mirtchovski
2011-04-02 23:52     ` David Leimbach
2011-04-03  0:04       ` ron minnich
2011-04-03  0:04         ` ron minnich
2011-04-03  0:11           ` ron minnich
2011-04-03  0:16             ` andrey mirtchovski
2011-04-03  0:09       ` andrey mirtchovski
2011-04-03  7:57       ` Pavel Zholkover
2011-04-03  2:18   ` Skip Tavakkolian
2011-04-03  2:48     ` Rob Pike
2011-04-03  5:07       ` Lucio De Re
2011-04-03 18:50         ` Steve Simon
2011-04-03 20:57           ` Lucio De Re
2011-04-03  7:45       ` Pavel Zholkover
2011-04-03  7:51         ` andrey mirtchovski
2011-04-03  9:16       ` erik quanstrom
2011-04-03 21:13   ` Anthony Martin [this message]
2011-04-03 21:16     ` Anthony Martin
2011-04-03 21:23       ` Pavel Zholkover
2011-04-03 22:30         ` Anthony Martin
2011-04-04  7:37           ` Pavel Zholkover
2011-04-04 17:27             ` Lucio De Re
2011-04-04 19:18               ` Pavel Zholkover
2011-04-04 20:05                 ` Lucio De Re
2011-04-04 20:11               ` Lucio De Re
2011-04-04 20:33                 ` erik quanstrom
2011-04-05  4:52                   ` Lucio De Re
2011-04-04 23:10               ` ron minnich
2011-04-05  4:33                 ` Lucio De Re
2011-04-05  4:56                   ` erik quanstrom
2011-04-05  6:37                   ` Pavel Zholkover
2011-04-05 19:06                   ` Yaroslav
2011-04-05 20:14                     ` Paul Lalonde
2011-04-06 13:43                     ` Lucio De Re
2011-04-09 17:51                       ` Sergey Kish
2011-04-09 18:24                         ` Skip Tavakkolian
2011-04-09 18:34                         ` Pavel Zholkover
2011-04-03 21:24     ` erik quanstrom
2011-04-04 15:18       ` ron minnich
2011-04-04 15:59         ` erik quanstrom
2011-04-04 23:09           ` ron minnich
2011-04-04 23:17             ` erik quanstrom
2011-04-04 23:27               ` ron minnich
2011-04-05  4:00                 ` ron minnich
2011-04-05  4:22                   ` Russ Cox
2011-04-05  4:47                     ` Lucio De Re
2011-04-05  5:11                       ` Russ Cox
2011-04-05  5:44                         ` Lucio De Re
2011-04-05  5:53                           ` Russ Cox
2011-04-05 15:48                         ` ron minnich
2011-04-05 17:33                           ` ron minnich
2011-04-05 17:33                         ` David Leimbach
2011-04-05 17:32                     ` David Leimbach
2011-04-05 17:36                       ` erik quanstrom
2011-04-05 17:42                         ` David Leimbach
2011-04-05 17:43                       ` andrey mirtchovski
2011-04-05 17:48                         ` David Leimbach
2011-04-05 10:42     ` Anthony Martin
2011-04-03  9:40 Pavel Zholkover
2011-04-03 10:34 ` erik quanstrom
2011-04-03 14:42   ` Lucio De Re
2011-04-03 14:57   ` Lucio De Re
2011-04-03 15:43     ` erik quanstrom
2011-04-03 16:25       ` Skip Tavakkolian
2011-04-03 17:46         ` erik quanstrom
2011-04-06  7:27           ` Skip Tavakkolian
2011-04-03 17:43     ` Devon H. O'Dell
2011-04-03 17:58       ` Lucio De Re
2011-04-03 18:20         ` Rob Pike
2011-04-03 20:45           ` Lucio De Re
2011-04-03 16:49 Pavel Zholkover
2011-04-03 17:36 ` Lucio De Re
2011-04-04 19:19 Russ Cox
2011-04-05 19:15 Jason Catena
2011-04-06 13:27 Joel C. Salomon
2011-04-06 16:16 ` David Leimbach
2011-04-09 18:53 Pavel Zholkover
2011-04-09 19:04 ` Skip Tavakkolian
2011-04-09 22:01   ` Pavel Zholkover
2011-04-10  5:07     ` Lucio De Re
2011-04-10  6:28       ` Pavel Zholkover
2011-04-10  9:15         ` Lucio De Re

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110403211333.GA3905@dinah \
    --to=ality@pbrane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).