r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[Red] Red language group

PeterWood
14-Mar-2011
[365]
Aren't these also supported in recent GCC releases?
Kaj
14-Mar-2011
[366x9]
Yes
I've ported my 0MQ binding to Red
I've got the Hello World client/server example working:
http://rebol.esperconsultancy.nl/extensions/0MQ/ZeroMQ-binding.reds
There's some stuff left to straighten out, but it's painful to develop 
on WINE, so I'll continue when we can bind libc on Linux
Here are the test executables:
http://rebol.esperconsultancy.nl/extensions/0MQ/server.exe
http://rebol.esperconsultancy.nl/extensions/0MQ/client.exe
Once Red is a bit more mature, it will be quite a bit easier to write 
bindings for Red than for R3
GrahamC
14-Mar-2011
[375]
That's pretty quick ..
Kaj
14-Mar-2011
[376]
Yes, I just read that running on Linux will be possible in the morning 
:-)
GrahamC
14-Mar-2011
[377]
This has got to be the shortest time for a working rebol clone !
Kaj
14-Mar-2011
[378]
Doc claims to have been secretly working on it for a decade ;-)
GrahamC
14-Mar-2011
[379]
LOL
Gregg
15-Mar-2011
[380x2]
Crashes for me here Kaj. Looking for zmq_err0 in the dll (using 2.0.10).
Very cool though, assuming it works for you.
GrahamC
15-Mar-2011
[382]
Gregg you have to run it under wine!
Dockimbel
15-Mar-2011
[383x3]
Wow Kaj, I'm impressed!! Didn't think that someone could push Red/System 
so far already! Great work!
while [yes = yes] 

 => this cries for a better logic values support ;-) I was working 
 on a TRUE/FALSE support in the train when coming to ReBorCon 2011, 
 but never finished it. I need to get back on it.
I can compile it with the last Red/System version (adding calling 
converbut I get a "zmq_err0 entry point not found". I guess, there's 
a regression in the compiler or an incompatible change. I'll check 
that after publising the new revision with extended Linux support.
Kaj
15-Mar-2011
[386x3]
Interesting that it works under WINE but not Windows. :-) I did have 
to install some Visual C++ runtime from 2008, but the lack of that 
produced a fairly clear error pointing in that direction
Did you install libzmq.dll? It's a binding with a dynamic library
I suppose Gregg did, mentioning 2.0.10
Ladislav
15-Mar-2011
[389]
regarding the: "... but implements decimal math, not floating point 
math." - sorry, that is false. Actually, I think, that it implements 
decimal floating point math. What it does not implement is binary 
floating point math.
Dockimbel
15-Mar-2011
[390]
Kaj: I've installed the Windows binary from this archive: http://mark.ossdl.de/2011/01/zmq-and-pyzmq-for-windows/
Kaj
15-Mar-2011
[391]
That 0MQ version works for me on WINE
Dockimbel
15-Mar-2011
[392x2]
Ok, got the Linux support working (except the DLL support part).
Simple hello word executable: 162 bytes
Hello.reds executable: 884 bytes
:-)
Pushing the new revision in a couple of minutes...
Kaj
15-Mar-2011
[394x5]
Very cool
So the 512 bytes binary pages (with seemingly 2048 bytes minimum) 
are a Windows thing?
Here's the library package I needed to install for 0MQ:
http://www.microsoft.com/downloads/en/details.aspx?FamilyID=9b2da534-3e03-4391-8a4d-074b9f2bc1bf&displaylang=en
There are newer versions. I don't know if they would work. Maybe 
they're needed if someone compiled 0MQ on them
Dockimbel
15-Mar-2011
[399]
ELF seems to be a bit smarter about page loading, it doesn't require 
explicit padding to page boundaries in the file itself, so can generate 
smaller exe. (It's possible with PE too with some hacking).
Kaj
15-Mar-2011
[400]
My client/server executables are 3 KB. That's two orders of magnitude 
smaller than REBOL. Who would have thought?
Dockimbel
15-Mar-2011
[401x4]
New revision pushed online.
:-) That's the good side of being closer to the metal.
Btw, the newer revision requires explicit calling convention to be 
added to imported DLL, see %red-system/runtime/win32.r
Windows DLL: stdcall
C DLL: cdecl (or stdcall if that's the required convention)
Kaj
15-Mar-2011
[405]
Yes, thanks
Dockimbel
15-Mar-2011
[406]
Btw, can't color the R letter in red in the Linux version, not sure 
it's possible at all to make ANSI sequences interpreted using only 
syscalls.
Kaj
15-Mar-2011
[407x2]
Probably depends on the terminal definition the system is running 
under (which can vary wildly)
Do you plan to implement #import for Linux soon?
Dockimbel
15-Mar-2011
[409x2]
Andreas is supposed to give it a try this week.
OMQ: still getting the same error message, got at least 3 versions 
of Visual C++ 2008 redistribuable package (added the one from your 
link too).
Kaj
15-Mar-2011
[411]
Odd; must be something else
Andreas
15-Mar-2011
[412]
very nice, doc. the ELF hello works like a charm here :)
Dockimbel
15-Mar-2011
[413]
Goog to know.
Andreas
15-Mar-2011
[414]
re the size of executables, for comparison: basic 0MQ examples ("hwserver/hwclient") 
written in C compiled & linked dynamically with GCC & gold on Linux 
are ~6KB in size.