-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathladspa-debug.patch
More file actions
30 lines (26 loc) · 919 Bytes
/
ladspa-debug.patch
File metadata and controls
30 lines (26 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
From: Felipe Sateler <fsateler@debian.org>
Date: Sun, 14 Apr 2019 12:44:19 -0400
Subject: Don't remove symbol table and relocation information from binaries
This can be done post install by separate tools, and prevents building separate
debug symbol packages
---
src/Makefile | 2 --
1 file changed, 2 deletions(-)
diff --git a/src/Makefile b/src/Makefile
index bcd8966..719431f 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -45,7 +45,6 @@ CXX ?= c++
$(LIBRARIES) \
-fvisibility=hidden \
-fvisibility-inlines-hidden \
- -s \
-Wl,--version-script=gcc_exports.map
../plugins/%.so: plugins/%.cpp ladspa.h gcc_exports.map
@@ -59,7 +58,6 @@ CXX ?= c++
$(LIBRARIES) \
-fvisibility=hidden \
-fvisibility-inlines-hidden \
- -s \
-Wl,--version-script=gcc_exports.map
###############################################################################