[lttng-dev] [PATCH babeltrace stable-1.5] Fix: python bindings when building with PIE hardening

Jérémie Galarneau jeremie.galarneau at efficios.com
Mon Nov 13 23:43:14 UTC 2017


Merged, thanks!

Jérémie

On 25 October 2017 at 16:30, Michael Jeanson <mjeanson at efficios.com> wrote:
> Work around a bug/limitation in python distutils where object files are
> built with -fPIC appended after the CFLAGS but the final shared object
> is linked with -shared before the LDFLAGS which can then be overriden by
> hardening flags and result in an invalid build.
>
> The work around is to append -shared to the LDFLAGS making sure it's not
> overriden.
>
> Signed-off-by: Michael Jeanson <mjeanson at efficios.com>
> ---
>  bindings/python/Makefile.am | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/bindings/python/Makefile.am b/bindings/python/Makefile.am
> index 2ceab03..5e4dde8 100644
> --- a/bindings/python/Makefile.am
> +++ b/bindings/python/Makefile.am
> @@ -25,7 +25,7 @@ BINDINGS_DEPS=setup.py \
>  BUILD_FLAGS=CC="$(CC)" \
>                 CFLAGS="$(GLIB_CFLAGS) $(AM_CFLAGS) $(CFLAGS)" \
>                 CPPFLAGS="$(DEFS) $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS)" \
> -               LDFLAGS="$(AM_LDFLAGS) $(LDFLAGS) $(GLIB_LIBS) $(LIBS)"
> +               LDFLAGS="$(AM_LDFLAGS) $(LDFLAGS) $(GLIB_LIBS) -shared $(LIBS)"
>
>  build-python-bindings.stamp: $(BINDINGS_DEPS)
>         $(BUILD_FLAGS) $(PYTHON) $(builddir)/setup.py build_ext
> --
> 2.7.4
>



-- 
Jérémie Galarneau
EfficiOS Inc.
http://www.efficios.com


More information about the lttng-dev mailing list