• Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r4wp

[Ann-Reply] Reply to Announce group

BrianH
28-Sep-2012
[776x3]
(Replying to AdrianS in Announce) R3's extension mechanism is designed 
to make it more possible to make and compile extensions that will 
continue to work even when R3 is updated. Even with the source open, 
that is still a value. The command dispatch model is also really 
useful for implementing native dialects and JIT compilers. The marshalling 
mechanism is also reasonably fast by FFI standards. It could, however, 
use better marshallers for series, and more datatype coverage.
Oh, sorry to duplicate some of your response, Kaj.
If the Red JIT compiler were made available in an extension, you 
could use commands to dispatch to compiled functions withough having 
to write the compiler in R3.
Kaj
6-Oct-2012
[779]
Very cool action, Nick. Thanks for doing that
james_nak
6-Oct-2012
[780]
Thanks Nick.
Kaj
11-Oct-2012
[781]
Cool, Max
james_nak
15-Oct-2012
[782]
Very cool Etsy addition Nick. I agree that this will in the very 
least cause some curiosity about Rebol. And once you try it...
DocKimbel
15-Oct-2012
[783]
Red test binaries: I will certainly have good use of them (at least 
for regression tests).
Kaj
15-Oct-2012
[784]
I thought so :-)
GrahamC
15-Oct-2012
[785]
Carl is asking which Repo to use ... let's have some unity in response 
this time!
Pekr
16-Oct-2012
[786]
Carl seems to be on steroids last days :-) Wonder if he is going 
to be back to active development too at some point ....
GrahamC
17-Oct-2012
[787]
Perhaps he's found the courage again to restart his dreams
Maxim
17-Oct-2012
[788x2]
@ MaxV : r3D is neat
all it needs is an event handler for the 3d view so that rotation 
is clamped to (ZX) / Y axis   and scrollwheel to scale (XYZ)   :-)
Henrik
19-Oct-2012
[790]
Kaj, I'm probably doing this wrong. All examples under MSDOS/Red 
fail with:

---------------------------
empty.exe - Entry Point Not Found
---------------------------

The procedure entry point wprintf_s could not be located in the dynamic 
link library MSVCRT.DLL. 
---------------------------
OK   
---------------------------
Kaj
19-Oct-2012
[791x3]
I think you've found an important bug, just before release. Thanks! 
:-)
Could you please enter it in the Red issue tracker?
Do the Red/System programs work?
Henrik
19-Oct-2012
[794]
Only those that work with console. The rest seem to fail, because 
I don't have the appropriate DLLs.
DocKimbel
19-Oct-2012
[795x2]
Henrik: what Windows platform were you using for that test?
All MSDOS/Red binaries run fine here (Windows 7 32-bit).
Maxim
19-Oct-2012
[797]
MSVCRT.DLL errors are often related to compiling in Debug mode or 
version mismatch in installed redistributables with requried ones.
Kaj
19-Oct-2012
[798]
Henrik, yes, for a number of the examples you need to install the 
corresponding libraries. I'm particularly interested in library names 
for examples that don't work yet
Henrik
19-Oct-2012
[799x2]
DocKimbel, windows XP 32 bit
Kaj, well, glut-triangle.exe responds with:

---------------------------
GLUT-triangle.exe - Unable To Locate Component
---------------------------

This application has failed to start because LIBGL.SO.1 was not found. 
Re-installing the application may fix this problem. 
---------------------------
OK   
---------------------------
Kaj
19-Oct-2012
[801x2]
LibGL is usually supplied by Mesa3D. Although after that, you probably 
need to install GLUT separately
This is actually an example by Andreas
Henrik
19-Oct-2012
[803]
---------------------------
OSM-GPS-Map-browser.exe - Unable To Locate Component
---------------------------

This application has failed to start because LIBGTHREAD-2.0-0.DLL 
was not found. Re-installing the application may fix this problem. 
---------------------------
OK   
---------------------------
Kaj
19-Oct-2012
[804x3]
It's possible that you have some libraries already installed, but 
the library names or versions in Red are wrong
For most of the graphical example, you need to install GTK. GThread 
is a component from GLib, which is usually included in a GTK+ distribution
OSM-GPS-Map is an extra library on top of that
AdrianS
19-Oct-2012
[807x3]
for the windows examples, should there be some indication of failure 
for something like do-sql.exe or GLUT-triangle.com?
when I execute these, I get no output
In process explorer, I see the process start, then exit
Kaj
19-Oct-2012
[810]
I would expect errors, as Henrik got
AdrianS
19-Oct-2012
[811]
I don't have the required libs at this point so I'm expecting failure
Kaj
19-Oct-2012
[812]
Do you execute them from the prompt?
AdrianS
19-Oct-2012
[813]
yes
Kaj
19-Oct-2012
[814]
Odd. In any case, those two need libraries, so you would have to 
install those first
AdrianS
19-Oct-2012
[815]
was executing them from a console wrapping cmd.exe - there is a popup 
when executing directly
Henrik
19-Oct-2012
[816]
---------------------------
PeterPaint-SDL.exe - Unable To Locate Component
---------------------------

This application has failed to start because SDL.DLL was not found. 
Re-installing the application may fix this problem. 
---------------------------
OK   
---------------------------
Kaj
19-Oct-2012
[817]
Yes, please install SDL
DocKimbel
19-Oct-2012
[818]
AdrianS: since Vista, Windows is hiding some runtime errors from 
console, you can check in "Event Viewer" if you think a crash occured.
Kaj
19-Oct-2012
[819]
Sigh
DocKimbel
19-Oct-2012
[820]
Henrik: I'm installing an XP SP3 image to try to reproduce your issue.
Henrik
19-Oct-2012
[821]
ok, I'll stop posting errors now :-)
Kaj
19-Oct-2012
[822]
Please do if they're not about libraries you don't have :-)
Henrik
19-Oct-2012
[823x2]
I don't think I have any other types of errors.
Tested all examples now, only library missing errors.
Kaj
19-Oct-2012
[825]
Yes, that would be the first error. You can only really test it once 
the libraries are installed