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

World: r3wp

[!REBOL3-OLD1]

Paul
12-Dec-2009
[20130]
With Host kit how do we role our own R3 code into the builds?
Maxim
12-Dec-2009
[20131]
there is a function in rebol-lib.h which is called Reb_Do_String(); 

you could use it to run a bit of code in host-main.c BEFORE this 
line:


 n = (Main_Args.options & RO_NO_BOOT) ? TRUE : Reb_Start(0); // TRUE 
 on halt

there are few other funcs there which are intriguing.



but you can't add native stuff yet anywhere in the host.. for that 
we have to wait for Carl to move the extension code to the host first.
Paul
12-Dec-2009
[20132]
ok, so right now only build the core module and that is all right?
Maxim
12-Dec-2009
[20133]
yep, once your IDE is setup it should compile as-is.  it did for 
me, the first time tried.
Paul
12-Dec-2009
[20134]
cool
Maxim
12-Dec-2009
[20135x2]
do follow the instructions here: http://www.rebol.net/wiki/Host-Builds#MS_Visual_Studio
( I'm using visual studio express, which is free, and it works without 
hassle)
Paul
12-Dec-2009
[20137]
Yeah, I got those.  I got studio installed already so I will be building 
it shortly.  I may do it tomorrow.
Pekr
13-Dec-2009
[20138]
Max - the first REBOL developer productively moving to R3 :-)
Robert
13-Dec-2009
[20139]
The 2nd.
Pekr
13-Dec-2009
[20140]
Cool :-) How's your SQLite driver progressing?
Robert
13-Dec-2009
[20141]
Done. Now adding multi database handling &  SQL statement caching 
and than that's it. Don't have an idea what to add else.
Pekr
13-Dec-2009
[20142x2]
Do yo use lib, or do you wrap DLL? = if you are using lib, you need 
to rebuild extensions for each new SQLite release. But I understand 
that statically linking might be easier ...
Robert - you know what was missing in R2 SQLite driver? Collation 
support. We (me, Ashley) tried to find out, how to use it, but were 
not able to wrap collation routine in R2 DLL interface.
Robert
13-Dec-2009
[20144x3]
I use the static lib and compile everything into one DLL.
Update for new SQLite verison is simple.
Collation: Not looked at it yet. I have never needed it.
Pekr
13-Dec-2009
[20147]
so you don't need to correctly sort in German language?
Robert
13-Dec-2009
[20148x2]
Well... ;-) Yes, I do.
Will take a look.
Paul
13-Dec-2009
[20150x2]
I think the instructions for the Visual studio host kit instructions 
needs to be modified a bit more.  I'm a newb to Visual Studio but 
found the instructions confusing for the adding of the additional 
files and for finding the "additional include directories"
needless to say the build failed for me and I suppose that is because 
of file locations.  This is where it crapped out:

1>LINK : fatal error LNK1104: cannot open file 'r3lib.lib'
Janko
13-Dec-2009
[20152]
I stopped programming games in c/c++ because IDE-s for it have so 
damn many settings.. getting things to compile was harder for me 
than program them
Paul
13-Dec-2009
[20153]
Yeah, I may try something else.
Janko
13-Dec-2009
[20154]
it's not that hard for simple projects once you get the hang of it..
Henrik
13-Dec-2009
[20155]
Janko, same here :-) I found it odd that there were so many 500 page 
"Get started with Visual Studio" book around, when I tried it.
Janko
13-Dec-2009
[20156x2]
simple meaning with hacving few .lib-s
:) "get started"
Paul
13-Dec-2009
[20158]
Yeah, I'm sure my build is because of how I'm interpreting the instructions 
given.  It says "Add all the .c files from src/os and src/os/win32. 
"  I didn't know how to add them.
Henrik
13-Dec-2009
[20159]
Janko: I barely got started with the C++ course I took. It was a 
failure, because we were stuck with that IDE. It was really about 
which buttons to push, just to make an app.
Paul
13-Dec-2009
[20160]
Also it says  " In Linker/Input: add r3lib.lib and wsock32.lib to 
the Additional Dependencies ".  I just added both of the file names 
- not sure if I needed path statement also or not.
Janko
13-Dec-2009
[20161]
I forgot a little but you need to add directories where it will look 
for libs .. like include paths.. this is not per project setting 
I think (at least vasn't in VC6)
Paul
13-Dec-2009
[20162]
Yeah, I added that section as the instructions stated.
Janko
13-Dec-2009
[20163]
I generally don't like IDE-s .. simple text editor with some colors 
and I am happy ... :)
Paul
13-Dec-2009
[20164]
I went ahead and built the host build using mingw.  This was a breeze 
in mingw.  However, I suggest updating the documentation to just 
update your path statement to include a path to mingw/bin and instead 
of copying mingw32-make.exe to make.exe just go to your r3 host build 
directory and type mingw32-make.
Maxim
13-Dec-2009
[20165x2]
Paul, if you've got any questions, I've played around A LOT with 
the install instructions, since I now have a solutions with 3 projects 
and inter project dependencies...


its the first time I really use visual C, so it wasn't obvious to 
begin with, but I do understand most of it now.  it took me a few 
hours to get this new setup working with the host, the extensions, 
my OpenGL extension and the callback thing.

I've replaced all the paths by using the various $(...)  macros.
I only use the IDE for debugging and compilation... I actually do 
all the coding within Ultra-Edit, its just sooooo much better for 
editing.
Paul
13-Dec-2009
[20167]
Maxim, for newbs to Visual Studio like myself, I think we need more 
hand holding on the install instructions for that part.  Maybe you 
can make some recommendations to make it more painless and targeted 
toward the newbie.
Maxim
13-Dec-2009
[20168]
but being able to click on words and get the line they where defined 
in other files loaded automatically is very usefull when debugging... 
also for the tracing of error and warnings..
Paul
13-Dec-2009
[20169]
yeah.  You sound like your not a newbie to VS
Maxim
13-Dec-2009
[20170]
somehow I found it explicit... I added the info about unicode, cause 
sometimes, the VS creates projects in unicode, sometimes not... strange.
Paul
13-Dec-2009
[20171]
ahhh good.  We just need to make sure these instructions are as brief 
but efficient as possible.
Maxim
13-Dec-2009
[20172x2]
actually, I only started using VS last week.


when I did my previous Extensions test, I used VS, but didn't play 
at all wit it... I had used the whole project supplied by carl.
but having a page with screen grabs would be much better.
Paul
13-Dec-2009
[20174]
Yes, I agree.
Robert
13-Dec-2009
[20175x3]
The thing with  MinGW is to get this installation right. Which is 
far from easy, like the make stuff shows.
For me the host-code was simple to compile: make
That was it, worked on the first shot.
Paul
13-Dec-2009
[20178]
But I didn't have mingw in my path.  I think that was the problem.
BrianH
13-Dec-2009
[20179]
Ah, that would do it. The MinGW installer says it's going to set 
the path, but it fails at doing so. You have to do it yourself.