Piotr Sipika wrote:

> 
> [] to compile:
> $ gcc `xml2-config --cflags --libs` zoo.c -o zoo
> 

No, this is wrong command line order.  Specifying the libraries before
the objects has always been wrong even though it has worked on Linux it
will never work on Windows or other environments.  Instead

$ gcc `xml2-config --cflags` zoo.c -o zoo `xml2-config --libs`

or even

$ gcc zoo.c -o zoo `xml2-config --cflags --libs`

since the compile flags are not position dependent but the library
specifications are.

-- 
Earnie
-- https://sites.google.com/site/earnieboyd/
_______________________________________________
xml mailing list, project page  http://xmlsoft.org/
xml@gnome.org
http://mail.gnome.org/mailman/listinfo/xml

Reply via email to