Search the web
Sign In
New User? Sign Up
iolanguage · Io
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 11494 - 11523 of 11910   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11494
Just getting started at looking at io and thought I'd try installing it on my OpenBSD box (Macbook(s) running OpenBSD 4.5 beta). I downloadeded...
nlb0666
Offline Send Email
May 5, 2009
9:30 pm
11495
OpenBSD should work with the same code for FreeBSD for ncpu’s (I think I wrote this code, but cannot remember now). Just add an && defined(__OpenBSD__) and...
Jeremy Tregunna
jeremy.tregunna@...
Send Email
May 5, 2009
9:47 pm
11496
Hi all, I've been toying with Io for a while (since I found out about it via Pixar's usage). I've been looking for a nice powerful, embeddable, extendable...
paulcgregory
Offline Send Email
May 5, 2009
10:55 pm
11497
Hi Paul, James Burgess (jrb@...) was maintaining the windows support but hasn't committed any patches in a while. I'm pretty sure he'd be glad to pass...
Steve Dekorte
stevedekorte
Offline Send Email
May 6, 2009
1:46 am
11498
In that case, I'll clean up the changes a bit, check that they don't affect building on Posix, and send a patch. I'll then look at getting the VC build into a...
paulcgregory
Offline Send Email
May 6, 2009
2:13 pm
11499
sounds good :). ... -- - Kind regards, Andreas Schipplock....
Andreas Schipplock
schipplock
Offline Send Email
May 6, 2009
2:36 pm
11500
Jeremy - thanks for the reply. I through "OpenBSD" into the overall makefile on the "NEEDS_M := FreeBSD" etc line (line 10) and that seems to have got past...
nlb0666
Offline Send Email
May 6, 2009
3:16 pm
11501
Hmmm hacked my way through a little more... Seems like "OpenBSD" needs to be in the same Makefile line for the tools dir as well or the math libraries won't...
nlb0666
Offline Send Email
May 7, 2009
4:01 am
11502
... If the ucontext is both available and working on OpenBSD, we can just tell the libcoroutine to use it....
Steve Dekorte
stevedekorte
Offline Send Email
May 7, 2009
7:04 am
11503
As far as I can tell, ucontext is not available on OpenBSD. I tried using a version of libtask from here http://swtch.com/libtask/ but it appears that there...
nlb0666
Offline Send Email
May 7, 2009
12:21 pm
11504
When I try to build the current git status (trying to do so in preparation for submitting a Win32 patch), I get lots of errors on both Windows and Linux. They...
paulcgregory
Offline Send Email
May 8, 2009
12:11 am
11505
... Hm, how could that happend given that everything in PHash_inline.h is commented out? ...
Steve Dekorte
stevedekorte
Offline Send Email
May 8, 2009
1:06 am
11506
Hi Paul, A few months ago I pulled the latest Io tree from github and built successfully with only a couple of minor changes using the free vc9 compiler(which...
ljnrf
Offline Send Email
May 8, 2009
1:43 am
11507
I had the same problem, and it seems like a `make clean` before `make` fixed it for me. Regards, Friedrich...
Friedrich Weber
fred.reichbier@...
Send Email
May 8, 2009
3:41 pm
11508
Yeah, me too on Linux, have some issues to solve on Win32, working on it now. Paul 2009/5/8 Friedrich Weber <fred.reichbier@...>...
Paul Gregory
paulcgregory
Offline Send Email
May 8, 2009
3:51 pm
11509
After running into a rare bug in the previous hash table code, I rewrote it last week and have been tweaking the new code a bit, including a few critical fixes...
Steve Dekorte
stevedekorte
Offline Send Email
May 11, 2009
8:26 am
11510
Anyone know how to build Io statically? MinGW binaries work in Wine with Ubuntu, so I'm trying to build piece by piece. I'm getting dynamic lib build errors....
Mike Austin
mike_ekim
Offline Send Email
May 16, 2009
1:20 am
11511
... I forget if there is a make option for it, but you'll notice all the libs get built with both dll and static versions. So it should be straightforward to...
Steve Dekorte
stevedekorte
Offline Send Email
May 19, 2009
6:14 pm
11512
Hi, I have been trying to build IO on a PPC mac but found it was crashing on a PPC mac. The problem appeared to be in libcoro, where the version of...
joh_90uk
Offline Send Email
May 25, 2009
10:25 am
11513
... Thanks joh_90uk - I'd added your fix....
Steve Dekorte
stevedekorte
Offline Send Email
May 26, 2009
11:29 am
11514
I've been trying to understand how Io works and what goes on under the hood. I'm becoming more and more impressed with it, but am a little confused about a a...
tobeythorn
Offline Send Email
Jun 4, 2009
2:31 pm
11515
... I don't understand what you mean with "123" and "this is a word" please clarify that. However, TRUE, FALSE and NIL are just constants that point at ...
Jeremy Tregunna
jeremy.tregunna@...
Send Email
Jun 4, 2009
2:37 pm
11516
... What I mean is the construction of numbers and strings....
tobeythorn
Offline Send Email
Jun 4, 2009
3:32 pm
11517
... That's part of the parsing subsystem. When the lexer matches certain patterns (like numbers or strings), it will create a token of that particular type....
Jeremy Tregunna
jeremy.tregunna@...
Send Email
Jun 4, 2009
3:34 pm
11518
... Jeremy, But a message (or tree of messages) must, at the end of the day, be sent to real objects (right?). If primitive objects like numbers and strings...
tobeythorn
Offline Send Email
Jun 4, 2009
7:25 pm
11519
... Strings and Numbers *ARE* objects just like any other. They just happen to be created in C code rather than Io code. You can manipulate number objects just...
Jeremy Tregunna
jeremy.tregunna@...
Send Email
Jun 4, 2009
7:32 pm
11520
... Jeremy, Thanks, that makes sense now!...
tobeythorn
Offline Send Email
Jun 4, 2009
8:02 pm
11521
... Hi Tobey, Everything compiles to a tree composed of messages. Literals such as numbers and strings in the source become instances of number and string...
Steve Dekorte
stevedekorte
Offline Send Email
Jun 4, 2009
8:36 pm
11522
This build problem first occurred a couple years ago for me, and I just noticed the latest code I pulled from github still has the same issue. Steps to...
dennisf486
Offline Send Email
Jun 7, 2009
3:07 am
11523
In my opinion this isn't the responsibility of io, nor any other library to do. It's not third party developers fault that GNU ld is "dumb" (I don't use that...
Jeremy Tregunna
jeremy.tregunna@...
Send Email
Jun 7, 2009
6:52 pm
Messages 11494 - 11523 of 11910   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help