From: brian mcgann <[email protected]> > Apologizing in advance if this is too basic, but it is not obvious to me how > I would go about modifying config to generate the library with debugging > information. Any help would be appreciated.
You can use --enable-debug and --enable-cogl-debug on onfigure time. So, you have these options: --enable-debug=no --enable-debug=minimum --enable-debug=yes and these options: --enable-cogl-debug=no --enable-cogl-debug=yes Example: ./autogen.sh <your-options> --enable-debug --enable-cogl-debug make (it will use the default values of --enable-debug and --enable-cogl-debug). Take a look to the configure.ac file for more information, and also this link [1] that provides extra information about environment vars and command line arguments related to degugging. BR [1] http://docs.clutter-project.org/docs/clutter/stable/running-clutter.html === API ([email protected]) _______________________________________________ clutter-app-devel-list mailing list [email protected] http://lists.clutter-project.org/listinfo/clutter-app-devel-list
