Re: [Vala] How to compile Vala using MingW under Windows

2012-10-05 Thread raum
Ok I've found my PKG_CONFIG environnement variable was wrong... # export PKG_CONFIG_PATH='/usr/local/lib/pkgconfig' # valac -v -g test4.vala # test4 Hello *\o/* Raum > Hello, > > Thanks but it's not related to "libraries declaration" under Windows but > how I missed something when I've comp

Re: [Vala] How to compile Vala using MingW under Windows

2012-10-05 Thread raum
Hello, Thanks but it's not related to "libraries declaration" under Windows but how I missed something when I've compiled Vala 0.18... or something related to PATH I think I should try to recompile and reinstall... Thanks Regards Raum > I learned that under Windows you need to provide som

Re: [Vala] How to compile Vala using MingW under Windows

2012-10-04 Thread Jarosław Ciupiński
I learned that under Windows you need to provide some extra info about libs you're using. For linux I have this: valac -o Game --pkg gee-1.0 --pkg gl --pkg libglfw --pkg glu --pkg libxml-2.0 --pkg gio-2.0 \ ... (other lines, source files mostly) For Windows: valac -o Game --pkg gee-1.0 --pkg gl -

Re: [Vala] How to compile Vala using MingW under Windows

2012-09-29 Thread Luca Bruno
On Fri, Sep 28, 2012 at 10:19 PM, wrote: > Ehm... I need some help :) > Try contacting this guy: https://mail.gnome.org/archives/vala-list/2012-September/msg00073.html It looks like he managed to get something running up. > d:/cross-compile/mingw/bin/../lib/gcc/mingw32/4.6.2/../../../crt2.o: I

Re: [Vala] How to compile Vala using MingW under Windows

2012-09-28 Thread raum
Ehm... I need some help :) I've extracted mingw base and msys. I use packages I've compiled (check http://linbox.free.fr/vala) and extracted them as follow : d:\cross-compile\mingw libffi-3.0.11-mingw32-bin.tar.xz glib-2.34.0-mingw32-bin.tar.xz pkg-config-0.27.1-mingw32-bin.tar.xz d:\cr

Re: [Vala] How to compile Vala using MingW under Windows

2012-09-28 Thread raum
Well... I've compiled and installed pkg-config-0.27.1 and it seems it's ok... L:\>valac test.vala L:\>test hello world Sorry to have disturbed you for not much.. ^__^ Regards Raum ps: I'll prepare some packages to download in next hours... glib-2.34.0-mingw32-bin.tar.xz libffi-3.0.11-mingw32-

Re: [Vala] How to compile Vala using MingW under Windows

2012-09-28 Thread raum
Hello In fact, I've got a problem using Vala0.18 I compiled... I've created a test file : - void main() { stdout.printf ("hello world\r\n"); } L:\>gcc --version gcc (GCC) 4.6.2 Copyright (C) 2011 Free Software Foundation, Inc. This is free software; see th

[Vala] How to compile Vala using MingW under Windows

2012-09-26 Thread raum
Hi, Feel free to help me to improve (or correct ;-) ) this mini how-to and report if something doesn't work. Next step, I think I'll try to bundle clang... :-? Thanks Raum (...) I think I've successed to compile vala 0.18 under Windows. You could have a look to my page (tarball available for

[Vala] How to compile Vala using MingW under Windows

2012-09-25 Thread raum
Hello, I think I've successed to compile vala 0.18 under Windows. You could have a look to my page (tarball available for testing) : http://linbox.free.fr/vala Here it is : -- How to compile Vala under Windows -- # First step : c:\