GimpBacktrace provides an interface for creating and traversing
multi-threaded backtraces, as well as querying symbol information.
While we already have some backtrace functionality, it relies on
external tools for the most part, and as such is rather expensive,
and is only meant for producing opaque backtraces. GimpBacktrace,
on the other hand, is meant to be relatively cheap (we're going to
use it for profiling,) and allow inspection of the backtrace data.
In the future, it might make sense to replace some, or all, of the
other backtrace functions with GimpBacktrace.
GimpBacktrace currently only supports Linux. By default, it uses
dladdr() to query symbol information, which is somewhat limited (in
particular, it doesn't work for static functions.) When libunwind
is installed, GimpBacktrace uses it to get more complete symbol
information. libunwind is currently an optional dependency, but it
might make sense to promote it to a mandatory, or opt-out,
dependency, as it's lightweight and widely available.
On other platforms, the GimpBacktrace interface can still be used,
but it always returns NULL backtraces.
(cherry picked from commit 80bf686c94)
527 lines
13 KiB
Makefile
527 lines
13 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
if PLATFORM_OSX
|
|
xobjective_c = "-xobjective-c"
|
|
xobjective_cxx = "-xobjective-c++"
|
|
xnone = "-xnone"
|
|
endif
|
|
|
|
AM_CPPFLAGS = \
|
|
-DGIMPDIR=\""$(gimpdir)"\" \
|
|
-DGIMP_APP_VERSION=\"$(GIMP_APP_VERSION)\" \
|
|
-DGIMP_USER_VERSION=\"$(GIMP_USER_VERSION)\" \
|
|
-DG_LOG_DOMAIN=\"Gimp-Core\" \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir)/app \
|
|
-I$(top_srcdir)/app \
|
|
$(CAIRO_CFLAGS) \
|
|
$(GEGL_CFLAGS) \
|
|
$(GDK_PIXBUF_CFLAGS) \
|
|
$(LIBMYPAINT_CFLAGS) \
|
|
$(MYPAINT_BRUSHES_CFLAGS) \
|
|
$(GEXIV2_CFLAGS) \
|
|
$(LIBUNWIND_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
AM_CFLAGS = \
|
|
$(xobjective_c)
|
|
|
|
AM_CXXFLAGS = \
|
|
$(xobjective_cxx)
|
|
|
|
AM_LDFLAGS = \
|
|
$(xnone)
|
|
|
|
noinst_LIBRARIES = libappcore.a
|
|
|
|
libappcore_a_sources = \
|
|
core-enums.h \
|
|
core-types.h \
|
|
gimp.c \
|
|
gimp.h \
|
|
gimp-atomic.c \
|
|
gimp-atomic.h \
|
|
gimp-batch.c \
|
|
gimp-batch.h \
|
|
gimp-cairo.c \
|
|
gimp-cairo.h \
|
|
gimp-contexts.c \
|
|
gimp-contexts.h \
|
|
gimp-data-factories.c \
|
|
gimp-data-factories.h \
|
|
gimp-edit.c \
|
|
gimp-edit.h \
|
|
gimp-filter-history.c \
|
|
gimp-filter-history.h \
|
|
gimp-gradients.c \
|
|
gimp-gradients.h \
|
|
gimp-gui.c \
|
|
gimp-gui.h \
|
|
gimp-internal-data.c \
|
|
gimp-internal-data.h \
|
|
gimp-memsize.c \
|
|
gimp-memsize.h \
|
|
gimp-modules.c \
|
|
gimp-modules.h \
|
|
gimp-palettes.c \
|
|
gimp-palettes.h \
|
|
gimp-parallel.cc \
|
|
gimp-parallel.h \
|
|
gimp-parasites.c \
|
|
gimp-parasites.h \
|
|
gimp-spawn.c \
|
|
gimp-spawn.h \
|
|
gimp-tags.c \
|
|
gimp-tags.h \
|
|
gimp-templates.c \
|
|
gimp-templates.h \
|
|
gimp-transform-resize.c \
|
|
gimp-transform-resize.h \
|
|
gimp-transform-utils.c \
|
|
gimp-transform-utils.h \
|
|
gimp-units.c \
|
|
gimp-units.h \
|
|
gimp-user-install.c \
|
|
gimp-user-install.h \
|
|
gimp-utils.c \
|
|
gimp-utils.h \
|
|
gimpasync.c \
|
|
gimpasync.h \
|
|
gimpasyncset.c \
|
|
gimpasyncset.h \
|
|
gimpauxitem.c \
|
|
gimpauxitem.h \
|
|
gimpauxitemundo.c \
|
|
gimpauxitemundo.h \
|
|
gimpbacktrace.h \
|
|
gimpbacktrace-backend.h \
|
|
gimpbacktrace-linux.c \
|
|
gimpbacktrace-none.c \
|
|
gimpbezierdesc.h \
|
|
gimpbezierdesc.c \
|
|
gimpboundary.c \
|
|
gimpboundary.h \
|
|
gimpbrush.c \
|
|
gimpbrush.h \
|
|
gimpbrush-boundary.c \
|
|
gimpbrush-boundary.h \
|
|
gimpbrush-header.h \
|
|
gimpbrush-load.c \
|
|
gimpbrush-load.h \
|
|
gimpbrush-private.h \
|
|
gimpbrush-transform.cc \
|
|
gimpbrush-transform.h \
|
|
gimpbrushcache.c \
|
|
gimpbrushcache.h \
|
|
gimpbrushclipboard.c \
|
|
gimpbrushclipboard.h \
|
|
gimpbrushgenerated.c \
|
|
gimpbrushgenerated.h \
|
|
gimpbrushgenerated-load.c \
|
|
gimpbrushgenerated-load.h \
|
|
gimpbrushgenerated-save.c \
|
|
gimpbrushgenerated-save.h \
|
|
gimpbrushpipe.c \
|
|
gimpbrushpipe.h \
|
|
gimpbrushpipe-load.c \
|
|
gimpbrushpipe-load.h \
|
|
gimpbuffer.c \
|
|
gimpbuffer.h \
|
|
gimpcancelable.c \
|
|
gimpcancelable.h \
|
|
gimpchannel.c \
|
|
gimpchannel.h \
|
|
gimpchannel-combine.c \
|
|
gimpchannel-combine.h \
|
|
gimpchannel-select.c \
|
|
gimpchannel-select.h \
|
|
gimpchannelpropundo.c \
|
|
gimpchannelpropundo.h \
|
|
gimpchannelundo.c \
|
|
gimpchannelundo.h \
|
|
gimpcontainer.c \
|
|
gimpcontainer.h \
|
|
gimpcontainer-filter.c \
|
|
gimpcontainer-filter.h \
|
|
gimpcontext.c \
|
|
gimpcontext.h \
|
|
gimpcoords.c \
|
|
gimpcoords.h \
|
|
gimpcoords-interpolate.c \
|
|
gimpcoords-interpolate.h \
|
|
gimpcurve.c \
|
|
gimpcurve.h \
|
|
gimpcurve-load.c \
|
|
gimpcurve-load.h \
|
|
gimpcurve-map.c \
|
|
gimpcurve-map.h \
|
|
gimpcurve-save.c \
|
|
gimpcurve-save.h \
|
|
gimpdashpattern.c \
|
|
gimpdashpattern.h \
|
|
gimpdata.c \
|
|
gimpdata.h \
|
|
gimpdatafactory.c \
|
|
gimpdatafactory.h \
|
|
gimpdataloaderfactory.c \
|
|
gimpdataloaderfactory.h \
|
|
gimpdocumentlist.c \
|
|
gimpdocumentlist.h \
|
|
gimpdrawable.c \
|
|
gimpdrawable.h \
|
|
gimpdrawable-bucket-fill.c \
|
|
gimpdrawable-bucket-fill.h \
|
|
gimpdrawable-combine.c \
|
|
gimpdrawable-combine.h \
|
|
gimpdrawable-edit.c \
|
|
gimpdrawable-edit.h \
|
|
gimpdrawable-equalize.c \
|
|
gimpdrawable-equalize.h \
|
|
gimpdrawable-fill.c \
|
|
gimpdrawable-fill.h \
|
|
gimpdrawable-filters.c \
|
|
gimpdrawable-filters.h \
|
|
gimpdrawable-floating-selection.c \
|
|
gimpdrawable-floating-selection.h \
|
|
gimpdrawable-foreground-extract.c \
|
|
gimpdrawable-foreground-extract.h \
|
|
gimpdrawable-gradient.c \
|
|
gimpdrawable-gradient.h \
|
|
gimpdrawable-histogram.c \
|
|
gimpdrawable-histogram.h \
|
|
gimpdrawable-levels.c \
|
|
gimpdrawable-levels.h \
|
|
gimpdrawable-offset.c \
|
|
gimpdrawable-offset.h \
|
|
gimpdrawable-operation.c \
|
|
gimpdrawable-operation.h \
|
|
gimpdrawable-preview.c \
|
|
gimpdrawable-preview.h \
|
|
gimpdrawable-private.h \
|
|
gimpdrawable-shadow.c \
|
|
gimpdrawable-shadow.h \
|
|
gimpdrawable-stroke.c \
|
|
gimpdrawable-stroke.h \
|
|
gimpdrawable-transform.c \
|
|
gimpdrawable-transform.h \
|
|
gimpdrawablefilter.c \
|
|
gimpdrawablefilter.h \
|
|
gimpdrawablemodundo.c \
|
|
gimpdrawablemodundo.h \
|
|
gimpdrawablestack.c \
|
|
gimpdrawablestack.h \
|
|
gimpdrawableundo.c \
|
|
gimpdrawableundo.h \
|
|
gimpdynamics.c \
|
|
gimpdynamics.h \
|
|
gimpdynamics-load.c \
|
|
gimpdynamics-load.h \
|
|
gimpdynamics-save.c \
|
|
gimpdynamics-save.h \
|
|
gimpdynamicsoutput.c \
|
|
gimpdynamicsoutput.h \
|
|
gimperror.c \
|
|
gimperror.h \
|
|
gimpfilloptions.c \
|
|
gimpfilloptions.h \
|
|
gimpfilter.c \
|
|
gimpfilter.h \
|
|
gimpfilteredcontainer.c \
|
|
gimpfilteredcontainer.h \
|
|
gimpfilterstack.c \
|
|
gimpfilterstack.h \
|
|
gimpfloatingselectionundo.c \
|
|
gimpfloatingselectionundo.h \
|
|
gimpgradient.c \
|
|
gimpgradient.h \
|
|
gimpgradient-load.c \
|
|
gimpgradient-load.h \
|
|
gimpgradient-save.c \
|
|
gimpgradient-save.h \
|
|
gimpgrid.c \
|
|
gimpgrid.h \
|
|
gimpgrouplayer.c \
|
|
gimpgrouplayer.h \
|
|
gimpgrouplayerundo.c \
|
|
gimpgrouplayerundo.h \
|
|
gimpguide.c \
|
|
gimpguide.h \
|
|
gimpguideundo.c \
|
|
gimpguideundo.h \
|
|
gimphistogram.c \
|
|
gimphistogram.h \
|
|
gimpidtable.c \
|
|
gimpidtable.h \
|
|
gimpimage.c \
|
|
gimpimage.h \
|
|
gimpimage-arrange.c \
|
|
gimpimage-arrange.h \
|
|
gimpimage-color-profile.c \
|
|
gimpimage-color-profile.h \
|
|
gimpimage-colormap.c \
|
|
gimpimage-colormap.h \
|
|
gimpimage-convert-indexed.c \
|
|
gimpimage-convert-indexed.h \
|
|
gimpimage-convert-fsdither.h \
|
|
gimpimage-convert-data.h \
|
|
gimpimage-convert-precision.c \
|
|
gimpimage-convert-precision.h \
|
|
gimpimage-convert-type.c \
|
|
gimpimage-convert-type.h \
|
|
gimpimage-crop.c \
|
|
gimpimage-crop.h \
|
|
gimpimage-duplicate.c \
|
|
gimpimage-duplicate.h \
|
|
gimpimage-fade.c \
|
|
gimpimage-fade.h \
|
|
gimpimage-flip.c \
|
|
gimpimage-flip.h \
|
|
gimpimage-grid.h \
|
|
gimpimage-grid.c \
|
|
gimpimage-guides.c \
|
|
gimpimage-guides.h \
|
|
gimpimage-item-list.c \
|
|
gimpimage-item-list.h \
|
|
gimpimage-merge.c \
|
|
gimpimage-merge.h \
|
|
gimpimage-metadata.c \
|
|
gimpimage-metadata.h \
|
|
gimpimage-new.c \
|
|
gimpimage-new.h \
|
|
gimpimage-pick-color.c \
|
|
gimpimage-pick-color.h \
|
|
gimpimage-pick-item.c \
|
|
gimpimage-pick-item.h \
|
|
gimpimage-preview.c \
|
|
gimpimage-preview.h \
|
|
gimpimage-private.h \
|
|
gimpimage-quick-mask.c \
|
|
gimpimage-quick-mask.h \
|
|
gimpimage-resize.c \
|
|
gimpimage-resize.h \
|
|
gimpimage-rotate.c \
|
|
gimpimage-rotate.h \
|
|
gimpimage-sample-points.c \
|
|
gimpimage-sample-points.h \
|
|
gimpimage-scale.c \
|
|
gimpimage-scale.h \
|
|
gimpimage-snap.c \
|
|
gimpimage-snap.h \
|
|
gimpimage-symmetry.c \
|
|
gimpimage-symmetry.h \
|
|
gimpimage-undo.c \
|
|
gimpimage-undo.h \
|
|
gimpimage-undo-push.c \
|
|
gimpimage-undo-push.h \
|
|
gimpimageundo.c \
|
|
gimpimageundo.h \
|
|
gimpimagefile.c \
|
|
gimpimagefile.h \
|
|
gimpitem.c \
|
|
gimpitem.h \
|
|
gimpitem-exclusive.c \
|
|
gimpitem-exclusive.h \
|
|
gimpitem-linked.c \
|
|
gimpitem-linked.h \
|
|
gimpitem-preview.c \
|
|
gimpitem-preview.h \
|
|
gimpitempropundo.c \
|
|
gimpitempropundo.h \
|
|
gimpitemstack.c \
|
|
gimpitemstack.h \
|
|
gimpitemtree.c \
|
|
gimpitemtree.h \
|
|
gimpitemundo.c \
|
|
gimpitemundo.h \
|
|
gimplayer.c \
|
|
gimplayer.h \
|
|
gimplayer-floating-selection.c \
|
|
gimplayer-floating-selection.h \
|
|
gimplayer-new.c \
|
|
gimplayer-new.h \
|
|
gimplayermask.c \
|
|
gimplayermask.h \
|
|
gimplayermaskpropundo.c \
|
|
gimplayermaskpropundo.h \
|
|
gimplayermaskundo.c \
|
|
gimplayermaskundo.h \
|
|
gimplayerpropundo.c \
|
|
gimplayerpropundo.h \
|
|
gimplayerstack.c \
|
|
gimplayerstack.h \
|
|
gimplayerundo.c \
|
|
gimplayerundo.h \
|
|
gimplist.c \
|
|
gimplist.h \
|
|
gimpmaskundo.c \
|
|
gimpmaskundo.h \
|
|
gimpmybrush.c \
|
|
gimpmybrush.h \
|
|
gimpmybrush-load.c \
|
|
gimpmybrush-load.h \
|
|
gimpmybrush-private.h \
|
|
gimpobject.c \
|
|
gimpobject.h \
|
|
gimpobjectqueue.c \
|
|
gimpobjectqueue.h \
|
|
gimppaintinfo.c \
|
|
gimppaintinfo.h \
|
|
gimppattern.c \
|
|
gimppattern.h \
|
|
gimppattern-header.h \
|
|
gimppattern-load.c \
|
|
gimppattern-load.h \
|
|
gimppatternclipboard.c \
|
|
gimppatternclipboard.h \
|
|
gimppalette.c \
|
|
gimppalette.h \
|
|
gimppalette-import.c \
|
|
gimppalette-import.h \
|
|
gimppalette-load.c \
|
|
gimppalette-load.h \
|
|
gimppalette-save.c \
|
|
gimppalette-save.h \
|
|
gimppalettemru.c \
|
|
gimppalettemru.h \
|
|
gimpparamspecs.c \
|
|
gimpparamspecs.h \
|
|
gimpparamspecs-desc.c \
|
|
gimpparamspecs-desc.h \
|
|
gimpparamspecs-duplicate.c \
|
|
gimpparamspecs-duplicate.h \
|
|
gimpparasitelist.c \
|
|
gimpparasitelist.h \
|
|
gimppdbprogress.c \
|
|
gimppdbprogress.h \
|
|
gimppickable.c \
|
|
gimppickable.h \
|
|
gimppickable-auto-shrink.c \
|
|
gimppickable-auto-shrink.h \
|
|
gimppickable-contiguous-region.c \
|
|
gimppickable-contiguous-region.h \
|
|
gimpprogress.c \
|
|
gimpprogress.h \
|
|
gimpprojectable.c \
|
|
gimpprojectable.h \
|
|
gimpprojection.c \
|
|
gimpprojection.h \
|
|
gimpsamplepoint.c \
|
|
gimpsamplepoint.h \
|
|
gimpsamplepointundo.c \
|
|
gimpsamplepointundo.h \
|
|
gimpscanconvert.c \
|
|
gimpscanconvert.h \
|
|
gimpselection.c \
|
|
gimpselection.h \
|
|
gimpsettings.c \
|
|
gimpsettings.h \
|
|
gimpstrokeoptions.c \
|
|
gimpstrokeoptions.h \
|
|
gimpsubprogress.c \
|
|
gimpsubprogress.h \
|
|
gimpsymmetry.c \
|
|
gimpsymmetry.h \
|
|
gimpsymmetry-mandala.c \
|
|
gimpsymmetry-mandala.h \
|
|
gimpsymmetry-mirror.c \
|
|
gimpsymmetry-mirror.h \
|
|
gimpsymmetry-tiling.c \
|
|
gimpsymmetry-tiling.h \
|
|
gimptag.c \
|
|
gimptag.h \
|
|
gimptagcache.c \
|
|
gimptagcache.h \
|
|
gimptagged.c \
|
|
gimptagged.h \
|
|
gimptaggedcontainer.c \
|
|
gimptaggedcontainer.h \
|
|
gimptempbuf.c \
|
|
gimptempbuf.h \
|
|
gimptemplate.c \
|
|
gimptemplate.h \
|
|
gimptilehandlerprojectable.c \
|
|
gimptilehandlerprojectable.h \
|
|
gimptoolinfo.c \
|
|
gimptoolinfo.h \
|
|
gimptooloptions.c \
|
|
gimptooloptions.h \
|
|
gimptoolpreset.c \
|
|
gimptoolpreset.h \
|
|
gimptoolpreset-load.c \
|
|
gimptoolpreset-load.h \
|
|
gimptoolpreset-save.c \
|
|
gimptoolpreset-save.h \
|
|
gimptreehandler.c \
|
|
gimptreehandler.h \
|
|
gimptriviallycancelablewaitable.c \
|
|
gimptriviallycancelablewaitable.h \
|
|
gimpuncancelablewaitable.c \
|
|
gimpuncancelablewaitable.h \
|
|
gimpunit.c \
|
|
gimpunit.h \
|
|
gimpundo.c \
|
|
gimpundo.h \
|
|
gimpundostack.c \
|
|
gimpundostack.h \
|
|
gimpviewable.c \
|
|
gimpviewable.h \
|
|
gimpwaitable.c \
|
|
gimpwaitable.h
|
|
|
|
libappcore_a_built_sources = \
|
|
core-enums.c \
|
|
gimpmarshal.c \
|
|
gimpmarshal.h
|
|
|
|
libappcore_a_extra_sources = \
|
|
gimpmarshal.list
|
|
|
|
libappcore_a_SOURCES = $(libappcore_a_built_sources) $(libappcore_a_sources)
|
|
|
|
BUILT_SOURCES = \
|
|
$(libappcore_a_built_sources)
|
|
|
|
EXTRA_DIST = \
|
|
$(libappcore_a_extra_sources)
|
|
|
|
#
|
|
# rules to generate built sources
|
|
#
|
|
# setup autogeneration dependencies
|
|
gen_sources = xgen-gmh xgen-gmc xgen-cec
|
|
CLEANFILES = $(gen_sources)
|
|
|
|
gimpmarshal.h: $(srcdir)/gimpmarshal.list
|
|
$(AM_V_GEN) $(GLIB_GENMARSHAL) --prefix=gimp_marshal $(srcdir)/gimpmarshal.list --header >> xgen-gmh \
|
|
&& (cmp -s xgen-gmh $(@F) || cp xgen-gmh $(@F)) \
|
|
&& rm -f xgen-gmh xgen-gmh~
|
|
|
|
gimpmarshal.c: gimpmarshal.h
|
|
$(AM_V_GEN) $(GLIB_GENMARSHAL) --prefix=gimp_marshal $(srcdir)/gimpmarshal.list --header --body >> xgen-gmc \
|
|
&& cp xgen-gmc $(@F) \
|
|
&& rm -f xgen-gmc xgen-gmc~
|
|
|
|
xgen-cec: $(srcdir)/core-enums.h $(GIMP_MKENUMS) Makefile.am
|
|
$(AM_V_GEN) $(GIMP_MKENUMS) \
|
|
--fhead "#include \"config.h\"\n#include <gio/gio.h>\n#include \"libgimpbase/gimpbase.h\"\n#include \"core-enums.h\"\n#include \"gimp-intl.h\"" \
|
|
--fprod "\n/* enumerations from \"@basename@\" */" \
|
|
--vhead "GType\n@enum_name@_get_type (void)\n{\n static const G@Type@Value values[] =\n {" \
|
|
--vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
|
|
--vtail " { 0, NULL, NULL }\n };\n" \
|
|
--dhead " static const Gimp@Type@Desc descs[] =\n {" \
|
|
--dprod " { @VALUENAME@, @valuedesc@, @valuehelp@ },@if ('@valueabbrev@' ne 'NULL')@\n /* Translators: this is an abbreviated version of @valueudesc@.\n Keep it short. */\n { @VALUENAME@, @valueabbrev@, NULL },@endif@" \
|
|
--dtail " { 0, NULL, NULL }\n };\n\n static GType type = 0;\n\n if (G_UNLIKELY (! type))\n {\n type = g_@type@_register_static (\"@EnumName@\", values);\n gimp_type_set_translation_context (type, \"@enumnick@\");\n gimp_@type@_set_value_descriptions (type, descs);\n }\n\n return type;\n}\n" \
|
|
$< > $@
|
|
|
|
# copy the generated enum file back to the source directory only if it's
|
|
# changed; otherwise, only update its timestamp, so that the recipe isn't
|
|
# executed again on the next build, however, allow this to (harmlessly) fail,
|
|
# to support building from a read-only source tree.
|
|
$(srcdir)/core-enums.c: xgen-cec
|
|
$(AM_V_GEN) if ! cmp -s $< $@; then \
|
|
cp $< $@; \
|
|
else \
|
|
touch $@ 2> /dev/null \
|
|
|| true; \
|
|
fi
|