summaryrefslogtreecommitdiff
path: root/dev-lang/gforth/files/gforth-0.7.3-rdynamic.patch
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2021-01-03 18:34:51 +0000
committerSergei Trofimovich <slyfox@gentoo.org>2021-01-03 18:35:07 +0000
commitb7d5d123f75de06cb3ea110788469f7c7a3a20b4 (patch)
treee27b15128bebcf4e9540dd7d8d556c8c3417a0b3 /dev-lang/gforth/files/gforth-0.7.3-rdynamic.patch
parentb668de83ad303e855f0bfa2a9c7a822724488cc9 (diff)
downloadgentoo-b7d5d123f75de06cb3ea110788469f7c7a3a20b4.tar.gz
gentoo-b7d5d123f75de06cb3ea110788469f7c7a3a20b4.tar.bz2
gentoo-b7d5d123f75de06cb3ea110788469f7c7a3a20b4.zip
dev-lang/gforth: fix clang build (use -rdynamic)
Reported-by: Agostino Sarubbo Closes: https://bugs.gentoo.org/729874 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'dev-lang/gforth/files/gforth-0.7.3-rdynamic.patch')
-rw-r--r--dev-lang/gforth/files/gforth-0.7.3-rdynamic.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/dev-lang/gforth/files/gforth-0.7.3-rdynamic.patch b/dev-lang/gforth/files/gforth-0.7.3-rdynamic.patch
new file mode 100644
index 000000000000..e776f4d40d04
--- /dev/null
+++ b/dev-lang/gforth/files/gforth-0.7.3-rdynamic.patch
@@ -0,0 +1,14 @@
+--- a/configure.in
++++ b/configure.in
+@@ -191,9 +191,9 @@ test "$make_type" = "GNU Make" && GNUMAKE=''
+ AC_MSG_RESULT($make_type)
+ AC_SUBST(GNUMAKE)
+
+-AC_MSG_CHECKING([whether the linker accepts -export-dynamic])
++AC_MSG_CHECKING([whether the linker accepts -rdynamic])
+ OLDLDFLAGS=$LDFLAGS
+-LDFLAGS="$LDFLAGS -export-dynamic"
++LDFLAGS="$LDFLAGS -rdynamic"
+ dnl AC_TRY_LINK gives false positive on rs6000-ibm-aix4.2.1.0
+ dnl AC_TRY_LINK(,,ac_export_dynamic=yes,ac_export_dynamic=no)
+ AC_TRY_RUN(main(){exit(0);},ac_export_dynamic=yes,ac_export_dynamic=no,ac_export_dynamic=no)