1

I'm not sure if this question is correct but...

Ok, is possible compiled the source vala in vala

because I bean downloading vala source code and inside has many vala files

here vala release source code https://wiki.gnome.org/Vala/Release

I have been installed on windows this version

https://code.google.com/p/vala-win32/downloads/list

vala-0.12.0.exe

I wont compile the last vala release whit the vala on windows

oky, gracias :D

please, not confused with this question, Compiling a Vala source On Windows

Community
  • 1
  • 1
rChavz
  • 235
  • 3
  • 16

2 Answers2

6

If 0.20.1 is enough, you can use http://www.tarnyko.net/en/?q=node/35 and possibly avoid this whole thing.

If you really need 0.22.0, Vala release tarballs don't actually require valac to compile—they contain all the generated C. You should be able to use the build system included with Vala (like Robert Rozas mentioned, or via cygwin) to generate executables even without valac installed.

nemequ
  • 16,623
  • 1
  • 43
  • 62
2

GNOME wiki recommends using either MSYS2 or WSL (Windows 10 only) to get Vala compiler. Another option is using ValaForWindows, which aims to be the easiest option to install and use.

tpimh
  • 446
  • 2
  • 9
  • 23