PDA

View Full Version : valac makes long error messages


ris81ryu
24th March 2012, 12:29 PM
Any valac command including 'valac --help' makes a lot of error messages
Is there something that i'm missing?


profiling:/builddir:Cannot create directory
profiling:/builddir/build/BUILD/vala-0.15.2/compiler/valacompiler.gcda:Skip
profiling:/builddir:Cannot create directory
profiling:/builddir/build/BUILD/vala-0.15.2/ccode/.libs/valaccodeelementaccess.gcda:Skip
profiling:/builddir:Cannot create directory
profiling:/builddir/build/BUILD/vala-0.15.2/ccode/.libs/valaccodewriter.gcda:Skip


(lots of similar messages)

mmix
24th March 2012, 01:23 PM
There is something wrong with fedora's version,

just try build it yourself, install, it works fine.

http://download.gnome.org/sources/vala/0.15/vala-0.15.2.tar.xz

$ yum install flex bison

$ tar Jxf vala-0.15.2.tar.xz

$ cd vala-0.15.2/

if [64bit]
$ ./configure --prefix=/usr --libdir=/usr/lib64/
if [32bit]
$ ./configure --prefix=/usr

$ make

$ su

# make install

ris81ryu
24th March 2012, 01:43 PM

thank you for your reply