forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-plugins/calf: Fix build with LLD
Upstream-PR: calf-studio-gear/calf#332 Closes: https://bugs.gentoo.org/740158 Signed-off-by: Violet Purcell <[email protected]>
- Loading branch information
Showing
3 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
media-plugins/calf/files/calf-0.90.3-fix-build-with-lld.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
From https://github.com/calf-studio-gear/calf/pull/332/commits/bdaaa92dd82e2425e4683b9d496370c5880e3b3e Mon Sep 17 00:00:00 2001 | ||
From: Violet Purcell <[email protected]> | ||
Date: Thu, 21 Sep 2023 19:08:39 -0400 | ||
Subject: [PATCH] Fix build with LLD | ||
|
||
LLVM's LLD handles the -retain-symbols-file option (used by | ||
-export-symbols-regex in libtool) differently from GNU ld, causing | ||
undefined references during link. This commit removes the | ||
-export-symbols-regex option from libcalf_la_LDFLAGS since by default | ||
libtool exports all symbols anyway, so it should not be necessary. | ||
|
||
Signed-off-by: Violet Purcell <[email protected]> | ||
--- a/src/Makefile.am | ||
+++ b/src/Makefile.am | ||
@@ -42,7 +42,7 @@ libcalf_la_LIBADD = $(FLUIDSYNTH_DEPS_LIBS) $(GLIB_DEPS_LIBS) | ||
if USE_DEBUG | ||
calf_la_LDFLAGS = -rpath $(pkglibdir) -avoid-version -module -lexpat -disable-static | ||
else | ||
-calf_la_LDFLAGS = -rpath $(pkglibdir) -avoid-version -module -lexpat -disable-static -export-symbols-regex "lv2_descriptor" | ||
+calf_la_LDFLAGS = -rpath $(pkglibdir) -avoid-version -module -lexpat -disable-static | ||
endif | ||
|
||
if USE_LV2_GUI | ||
-- | ||
2.42.0 | ||
|