1. 4.1 release
- Posted by raseu Jan 18, 2012
- 1182 views
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
2. Re: 4.1 release
- Posted by raseu Jan 18, 2012
- 1173 views
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
3. Re: 4.1 release
- Posted by mattlewis (admin) Jan 18, 2012
- 1159 views
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
4. Re: 4.1 release
- Posted by raseu Jan 19, 2012
- 1081 views
yep, that was it. the most obvious things escape sometimes.
thanks