[cairo] Re: Munging header files for export (and other) attributes

Carl Worth cworth at cworth.org
Wed Aug 31 11:21:05 PDT 2005


On Wed, 31 Aug 2005 09:47:51 -0400, Owen Taylor wrote:
> For example, something like:
> 
>           int
>           my_printf (void *my_object, const char *my_format, ...)
>                 __attribute__ ((format (printf, 2, 3)));

Yes, something like that does have appeal. But I would still argue
against putting something like that in a public cairo header file.

> When hidden with appropriate macros and #ifdef __GNUC__.

I think there's the rub. As soon as there's a bug in these macros,
we start breaking the compilation of cairo-using programs, (which is
worse than breaking the compilation of cairo itself).

And bugs do find their way into these checks. For example:

	https://bugs.freedesktop.org/show_bug.cgi?id=4120

> The whole idea of using generated header files introduces a disturbing
> degree of fragility into the build system. Speaking from experience,
> build fragility is bad: it wastes time, it keeps people from getting
> the software built, it discourages contributions; you can't hack on
> a project unless you can build it from source. Give me a nice solid
> segfault any day.

I agree on the general "build fragility is bad" point. And that's
exactly why I don't want a lot of #ifdefs in cairo's public header
files. Pushing fragility out onto users of cairo is much worse than
absorbing it within the build of cairo itself.

> It should also be pointed out that the primary audience we are trying
> to address with this are people who *aren't* using cairo's standard
> build system: they are people who are integrating cairo into the Mozilla
> build  system, creating project files for MSVC, hand-crafting Makefiles
> for OpenWatcom... so hiding behind a tested set of rules in a
> Makefile.am isn't satisfactory.

There's a legitimate concern here, certainly. But I'm not sure I'm
drawing the same conclusion from it that you are.

One of the benefits I mentioned in the header-munging proposal was
that the sed-magic would be run by all parties, whether or not any
annotations were necessary. So, we could have better testing with this
approach than one in which only a small subset of people compiling
cairo do some header-file processing, (as is the case with the current
cairo.def rule).

As for the fact that some people are using other build systems. We
can't prevent that, but well-tested pieces of Makefile rules could
still be used elsewhere, (or even placed in scripts external to the
Makefiles if that would help).

The other thing we can do is to try to improve our build system to
eliminate some reasons that people avoid it, (though I don't expect to
ever be entirely successful on that front).

> Having two separate copies of the header in different directories with
> the same name, sounds like a recipe for all sorts of wonderfully
> difficult to debug build problems.

I agree it's not a perfect solution, but it's what I've been able to
come up with so far.

> If header cleanliness is a primary consideration, then there is an
> argument for not trying to address these problems at all; .defs
> files do work on Windows; OS/2 is a marginal platform these days.
> But if you are going to address the problem, there is a stronger
> argument for addressing them in a way that “just works” — and I'm
> not convinced that a header-munging scheme is going to just work.

I think I replied to this in more detail already in my reply to John
Ellson down-thread.

We do have a start at a .def approach in the tree, but it was not
getting pick-up from some Mozilla people who started proposing more
header-file decoration. I'm just trying to find a solution that
everyone is willing to live with.

-Carl
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: not available
Url : http://lists.freedesktop.org/archives/cairo/attachments/20050831/59e874b8/attachment.pgp


More information about the cairo mailing list