[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Need help compiling freetype with debug output enabled
From: |
Vincent Torri |
Subject: |
Re: Need help compiling freetype with debug output enabled |
Date: |
Sun, 21 May 2023 07:31:12 +0200 |
On Sun, May 21, 2023 at 6:21 AM Werner LEMBERG <wl@gnu.org> wrote:
>
>
> > I am trying to look at the trace output using the FT_Trace_Set_Level
> > function. I read that FT_DEBUG_LOGGING macro must be set for this
> > to work, so I tried doing this by passing:
> > -Dc_args='-D FT_DEBUG_LOGGING'
> > to meson setup.
>
> Alas, support for `FT_DEBUG_LOGGING` is not implemented in Meson. You
> are very welcome to submit a Merge Request that adds it :-)
meson honors CPPFLAGS. try:
CPPFLAGS=-DFT_DEBUG_LOGGING' meson setup builddir
(or use export)
Vincent Torri