From 81ec8653e552cf0fd501c0f1676af43b2ec27795 Mon Sep 17 00:00:00 2001 From: Stephane Glondu Date: Wed, 29 Jul 2020 16:22:39 +0200 Subject: [PATCH] Disable DT_TEXTREL warnings on Linux i386 Bug: https://github.com/ocaml/ocaml/issues/9800 Gbp-Pq: Name 0004-Disable-DT_TEXTREL-warnings-on-Linux-i386.patch --- configure.ac | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/configure.ac b/configure.ac index d27d47bc..48b438a3 100644 --- a/configure.ac +++ b/configure.ac @@ -1199,6 +1199,16 @@ AS_CASE([$arch], [common_cflags="-no-pie $common_cflags"], [])]) +# Disable DT_TEXTREL warnings on Linux i386 +# See https://github.com/ocaml/ocaml/issues/9800 + +AS_CASE([$host], + [i?86-*-linux-*], + [common_cflags="-Wl,-z,notext $common_cflags" + mksharedlib="$mksharedlib -Wl,-z,notext" + mkmaindll="$mkmaindll -Wl,-z,notext"], + []) + # Assembler AS_IF([test -n "$target_alias"], -- 2.30.2