9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* Fwd: [9fans] Re: request: native graphics on OS X
       [not found]       ` <3e1162e60701101151m38efec2do8027141a8ac4115c@mail.gmail.com>
@ 2007-01-10 20:03         ` David Leimbach
  2007-01-11 22:43           ` andrey mirtchovski
  0 siblings, 1 reply; 5+ messages in thread
From: David Leimbach @ 2007-01-10 20:03 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

Meant for this to go to 9fans.

---------- Forwarded message ----------
From: David Leimbach <leimy2k@gmail.com>
Date: Jan 10, 2007 11:51 AM
Subject: Re: [9fans] Re: request: native graphics on OS X
To: Skip Tavakkolian <skip@9netics.com>


On 1/10/07, David Leimbach <leimy2k@gmail.com> wrote:
> On 1/10/07, David Leimbach <leimy2k@gmail.com> wrote:
> > On 1/10/07, Skip Tavakkolian <skip@9netics.com> wrote:
> > > > ranlib: file: ../libmachdep.a(md5block.o) has no symbols
> > > > ranlib: file: ../libmachdep.a(sha1block.o) has no symbols
> > >
> > > for your machine it should have picked posix-386 as machinedep.
> > > was it able to build that library?
> > >
> > >
> >
> > It did pick the 386 directory, and produced no symbols.
> >
> > sha1block.s is an empty file, same with md5block.s
> >
> > gcc -E uses the .spp files to produce these and comes up with nothing
> > in the output.
> >
> > Dave
> >
> And the reason it has no output is because gcc on Apple thinks that
> .spp or .sp files are linker input files, which will be ignored due to
> the -E option, since linking isn't done.
>
> The following makefile change to the posix-386 directory fixes it:
>
> Index: Makefile
> ===================================================================
> RCS file: /cvs/drawterm/posix-386/Makefile,v
> retrieving revision 1.6
> diff -u -r1.6 Makefile
> --- Makefile    9 Jan 2007 22:17:21 -0000       1.6
> +++ Makefile    10 Jan 2007 19:40:37 -0000
> @@ -20,8 +20,8 @@
>         $(AS) -o $*.$O $*.s
>
>  md5block.s: md5block.spp
> -       gcc -E md5block.spp >md5block.s
> +       cat md5block.spp | gcc -E - >md5block.s
>
>  sha1block.s: sha1block.spp
> -       gcc -E sha1block.spp >sha1block.s
> +       cat sha1block.spp | gcc -E - >sha1block.s
>

Ok this patch seems to get me 100% compiled :-)  I had to replace
__Darwin__ with __APPLE__ because gcc doesn't set __Darwin__ anymore.

And even after that, it behaves just as Andrey's binary did, it just
gives me the "spinny beachball of doom" on Mac OS X that causes me to
force quit.

I suppose I'll have to break out the debug tools sometime.

>8------------------------------->8

Index: Makefile
===================================================================
RCS file: /cvs/drawterm/posix-386/Makefile,v
retrieving revision 1.6
diff -u -r1.6 Makefile
--- Makefile    9 Jan 2007 22:17:21 -0000       1.6
+++ Makefile    10 Jan 2007 19:48:58 -0000
@@ -20,8 +20,8 @@
        $(AS) -o $*.$O $*.s

 md5block.s: md5block.spp
-       gcc -E md5block.spp >md5block.s
+       cat md5block.spp | gcc -E - >md5block.s

 sha1block.s: sha1block.spp
-       gcc -E sha1block.spp >sha1block.s
+       cat sha1block.spp | gcc -E - >sha1block.s

Index: md5block.spp
===================================================================
RCS file: /cvs/drawterm/posix-386/md5block.spp,v
retrieving revision 1.2
diff -u -r1.2 md5block.spp
--- md5block.spp        9 Jan 2007 22:17:21 -0000       1.2
+++ md5block.spp        10 Jan 2007 19:48:58 -0000
@@ -116,7 +116,7 @@
        .text

        .p2align 2,0x90
-#ifdef __Darwin__
+#ifdef __APPLE__
        .globl __md5block
        __md5block:
 #else
Index: sha1block.spp
===================================================================
RCS file: /cvs/drawterm/posix-386/sha1block.spp,v
retrieving revision 1.2
diff -u -r1.2 sha1block.spp
--- sha1block.spp       9 Jan 2007 22:17:21 -0000       1.2
+++ sha1block.spp       10 Jan 2007 19:48:58 -0000
@@ -1,7 +1,7 @@
 .text

 .p2align 2,0x90
-#ifdef __Darwin__
+#ifdef __APPLE__
 .globl __sha1block
 __sha1block:
 #else

8<-----------------8<


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [9fans] Re: request: native graphics on OS X
  2007-01-10 20:03         ` Fwd: [9fans] Re: request: native graphics on OS X David Leimbach
@ 2007-01-11 22:43           ` andrey mirtchovski
  2007-01-11 22:48             ` David Leimbach
  0 siblings, 1 reply; 5+ messages in thread
From: andrey mirtchovski @ 2007-01-11 22:43 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

new binaries on 9grid fix a problem with the cat-tongued ibm mouse we
all love and fixes del keys to send interrupts.

russ has the diff so cvs is probably updated already.

http://9grid.net/andrey/p9/drawterm-osx-intel.gz
http://9grid.net/andrey/p9/drawterm-osx-power.gz

russ, you're welcome to put them on swtch.com if you want.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [9fans] Re: request: native graphics on OS X
  2007-01-11 22:43           ` andrey mirtchovski
@ 2007-01-11 22:48             ` David Leimbach
  2007-01-11 22:53               ` andrey mirtchovski
  2007-01-11 22:54               ` David Leimbach
  0 siblings, 2 replies; 5+ messages in thread
From: David Leimbach @ 2007-01-11 22:48 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

Are these from the same CVS?

On 1/11/07, andrey mirtchovski <mirtchovski@gmail.com> wrote:
> new binaries on 9grid fix a problem with the cat-tongued ibm mouse we
> all love and fixes del keys to send interrupts.
>
> russ has the diff so cvs is probably updated already.
>
> http://9grid.net/andrey/p9/drawterm-osx-intel.gz
> http://9grid.net/andrey/p9/drawterm-osx-power.gz
>
> russ, you're welcome to put them on swtch.com if you want.
>


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [9fans] Re: request: native graphics on OS X
  2007-01-11 22:48             ` David Leimbach
@ 2007-01-11 22:53               ` andrey mirtchovski
  2007-01-11 22:54               ` David Leimbach
  1 sibling, 0 replies; 5+ messages in thread
From: andrey mirtchovski @ 2007-01-11 22:53 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

yes, but the patch hasn't made it there yet (i just checked).
everything else is the same.

On 1/11/07, David Leimbach <leimy2k@gmail.com> wrote:
> Are these from the same CVS?
>


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [9fans] Re: request: native graphics on OS X
  2007-01-11 22:48             ` David Leimbach
  2007-01-11 22:53               ` andrey mirtchovski
@ 2007-01-11 22:54               ` David Leimbach
  1 sibling, 0 replies; 5+ messages in thread
From: David Leimbach @ 2007-01-11 22:54 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

I just found out my spinny beachball of doom goes away if I run as
root vs running as a normal user... I wonder if my filesystem
permissions are dorked up.  I ran a ktrace on this and saw a ton of
syscalls to sigprocmask...

Dave

On 1/11/07, David Leimbach <leimy2k@gmail.com> wrote:
> Are these from the same CVS?
>
> On 1/11/07, andrey mirtchovski <mirtchovski@gmail.com> wrote:
> > new binaries on 9grid fix a problem with the cat-tongued ibm mouse we
> > all love and fixes del keys to send interrupts.
> >
> > russ has the diff so cvs is probably updated already.
> >
> > http://9grid.net/andrey/p9/drawterm-osx-intel.gz
> > http://9grid.net/andrey/p9/drawterm-osx-power.gz
> >
> > russ, you're welcome to put them on swtch.com if you want.
> >
>


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-01-11 22:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <3e1162e60701100853g5fdfcd3biee499db044d08c2d@mail.gmail.com>
     [not found] ` <000623fb1023a5f733c3334516192f41@9netics.com>
     [not found]   ` <3e1162e60701101131h71bbfc70oee234fc314fc0ade@mail.gmail.com>
     [not found]     ` <3e1162e60701101140y441d2d88w85dbce3611149084@mail.gmail.com>
     [not found]       ` <3e1162e60701101151m38efec2do8027141a8ac4115c@mail.gmail.com>
2007-01-10 20:03         ` Fwd: [9fans] Re: request: native graphics on OS X David Leimbach
2007-01-11 22:43           ` andrey mirtchovski
2007-01-11 22:48             ` David Leimbach
2007-01-11 22:53               ` andrey mirtchovski
2007-01-11 22:54               ` David Leimbach

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).