Bill Kelly <[email protected]> wrote: > I'm able to build clutter on mingw/win32, and I'm able to > run the interactive tests; however I'm unable to locate any > .dll files produced by the build.
This usually happens because Clutter or one of its dependencies didn't pass the -no-undefined link option to libtool. For some reason libtool only generates static libraries when targetting win32 without passing this option. The configure script for Clutter should automatically add this option in so my guess is that json-glib is the culprit. How did you build json-glib? If you used the tarball for version 0.12.0 then that won't include the option. If that's what's happened try switching to 0.12.2 or git master. Otherwise it would be worth looking through your lib directory to see if any other dependencies don't have a .so generated. These would also cause libtool to only generate a .a for Clutter. Hope that helps. - Neil _______________________________________________ clutter-app-devel-list mailing list [email protected] http://lists.clutter-project.org/listinfo/clutter-app-devel-list
