World: r4wp
[!REBOL3] General discussion about REBOL 3
older newer | first last |
GrahamC 18-Dec-2012 [145] | Cyphre, I was under the impression that there were core bugs affecting R3GUI ? |
Cyphre 18-Dec-2012 [146x3] | AdrianS: re OpenGL. I see multiple ways here: -try to HW accelerate the AGG graphics engine (currently used in R3) : I did some experiments which looks interesting. But the more you 'accelerate it' the more compatibility problems you get on different HW so it's about wighting the pros/cons. -build completely OpenGL based engine (big task, brings lot of crossplatform/HW issues) Otherwise it would be great if the current R3 graphics codebase is reviewed and some parts made more modular so different graphics engines/libraries are easier to plug-in. That should be not so hard work to do. |
GrahamC, we get over all of them without the need to touch R3 dll code. | |
Ofcourse there are still critical crash bugs in the Core but they are not showstoppers (at least for our app the weren't). And now the crashes can be fixed which IMO should be the focus. | |
MaxV 18-Dec-2012 [149] | How to compile R3 in win 32bit using mingw32? I get always: ./r3-make -qs ../src/tools/make-headers.r mingw32-make: *** [prep] Error 100 |
Cyphre 18-Dec-2012 [150x2] | do you have the r3-make.exe in the make/ dir? |
also make sure you are using the mingw32 makefile and not the Linux one | |
MaxV 18-Dec-2012 [152x3] | Yes yes, but there is some special option when I launch "mingw32-make prep" ?? |
r3-make must me r3-make or r3-make.exe? | |
(must be) | |
Cyphre 18-Dec-2012 [155] | well, it depends what you have in the makefile, see the REBOL variable |
MaxV 18-Dec-2012 [156x2] | r3-make -qs |
so should it be named just "r3-make"? | |
Cyphre 18-Dec-2012 [158] | If you are under windows I'd prefer the .exe suffix ;) |
MaxV 18-Dec-2012 [159] | I noticed another variable: TO_OS what does it mean? |
Cyphre 18-Dec-2012 [160] | To me it looks you are using some Linux version of the makefile |
MaxV 18-Dec-2012 [161x4] | because TO_OS= TO_LINUX |
Is there another make file? | |
Where? | |
Is not corss-platform in the make directory? | |
Cyphre 18-Dec-2012 [165] | Well, to save you some time you should get the R3 form repository either from Andreas or me on github. These repos are work in progress for Win/mingw at the moment (maybe others have simmilar repos as well) |
Andreas 18-Dec-2012 [166] | The Win32 build changes have already been merged into Carl's repository as well. |
Cyphre 18-Dec-2012 [167] | r3 form=r3 fork |
Andreas 18-Dec-2012 [168] | (The first set of them, that is.) |
MaxV 18-Dec-2012 [169] | Ok, I'll try your forks. Thanks |
Andreas 18-Dec-2012 [170] | If you have TO_OS=TO_LINUX, then you need to generate a Win32 makefile first. |
MaxV 18-Dec-2012 [171] | How? |
Andreas 18-Dec-2012 [172x2] | make make OS_ID=0.3.1 |
Then: make prep make | |
Cyphre 18-Dec-2012 [174] | Andreas, ah, good,,but I think Max will still need some tweak to bea bel to build...or are the merged changes functional at least to get the basic core version? |
Andreas 18-Dec-2012 [175] | Yes, they are. |
Cyphre 18-Dec-2012 [176] | cool |
Andreas 18-Dec-2012 [177] | Full set of our changes, except for the dropping of NM. |
Cyphre 18-Dec-2012 [178] | great, so yes, go for the official repo ;) |
MaxV 18-Dec-2012 [179] | Rebol System error 1405... |
Andreas 18-Dec-2012 [180] | Ah, that sounds like the Win7 crash. |
MaxV 18-Dec-2012 [181] | WinXp |
Andreas 18-Dec-2012 [182x3] | During make make already, I guess? |
Try running make make directly: ./r3-make ../src/tools/make-make.r 0.3.1 | |
That should give you the Win32 makefile, with a workaround for the crash in place. | |
MaxV 18-Dec-2012 [185x7] | to launch an exe, it must and wth .exe in WinXp (from console) |
Ok, launched the make make | |
Error: ./r3-make -qs >NUL: ../src/tools/make-headers.r . non è riconosciuto come comando interno o esterno, un programma eseguibile o un file batch. mingw32-make: *** [prep] Error 1 | |
make make OS... is ok make prep gives that error | |
Is like that says: . is not a command | |
problem is in CD=./ | |
it doesn't work on windows | |
Endo 18-Dec-2012 [192] | it should probably: "CD=cd" it returns the current path on Windows. |
MaxV 18-Dec-2012 [193x2] | CD = %CD% works |
so I arrive at the next bug... | |
older newer | first last |