1. 4.1 release


i am writing some wrappers for libVLC + SDL

so, built 4.1 from the source code repository
so that i could test memstructs

include std/machine.e 
 
memstruct point 
   int x 
   int y 
   float angle 
end memstruct 
 
procedure pass_by_ref(atom m) 
   ? m.point 
   m.point = { 30, 40, 34.5 } 
end procedure 
 
? sizeof(point) 
atom o = allocate(sizeof(point),1) 
 
o.point = {0} 
? o 
? o.point 
o.point = { 10, 20 } 
? o.point 
 
pass_by_ref(o) 
 
? o.point 


looking good!

any timescales for 4.1 release ?

is memstruct API liable to any major changes
from this point forward ?

tia

new topic     » topic index » view message » categorize

2. Re: 4.1 release

Platform : MinGW, Windows Vista

additionally,

i have moved the built executables and library files
to the build tree bin directory, then moved the
release tree to another directory (C:\Euphoria4.1)
and when attempting to compile a source file
i get the following errors.

1) euc test.ex

User supplied library does not exist:
c:\Temp\eubuild\source\build\eu.a

2) euc -lib C:/Euphoria4.1/bin/eu.a test.ex

Couldn't get include directory 'c:/Temp/eubuild'

tia

new topic     » goto parent     » topic index » view message » categorize

3. Re: 4.1 release

raseu said...

Platform : MinGW, Windows Vista

additionally,

i have moved the built executables and library files
to the build tree bin directory, then moved the
release tree to another directory (C:\Euphoria4.1)
and when attempting to compile a source file
i get the following errors.

1) euc test.ex

User supplied library does not exist:
c:\Temp\eubuild\source\build\eu.a

2) euc -lib C:/Euphoria4.1/bin/eu.a test.ex

Couldn't get include directory 'c:/Temp/eubuild'

It sounds like you haven't configured where your binaries are with an eu.cfg file.

Matt

new topic     » goto parent     » topic index » view message » categorize

4. Re: 4.1 release

yep, that was it. the most obvious things escape sometimes.

thanks

new topic     » goto parent     » topic index » view message » categorize

Search



Quick Links

User menu

Not signed in.

Misc Menu