summaryrefslogtreecommitdiffstats
path: root/tags/s/shared-library-lacks-prerequisites.tag
diff options
context:
space:
mode:
Diffstat (limited to 'tags/s/shared-library-lacks-prerequisites.tag')
-rw-r--r--tags/s/shared-library-lacks-prerequisites.tag23
1 files changed, 23 insertions, 0 deletions
diff --git a/tags/s/shared-library-lacks-prerequisites.tag b/tags/s/shared-library-lacks-prerequisites.tag
new file mode 100644
index 0000000..f1684e1
--- /dev/null
+++ b/tags/s/shared-library-lacks-prerequisites.tag
@@ -0,0 +1,23 @@
+Tag: shared-library-lacks-prerequisites
+Severity: warning
+Check: binaries/prerequisites
+Renamed-From:
+ shared-lib-without-dependency-information
+Explanation: The listed shared library doesn't include information about the
+ other libraries against which it was linked.
+ .
+ More specifically, "<code>ldd foo.so</code>" should report such other
+ libraries. In your case, it reports "statically linked".
+ .
+ The fix is to specify the libraries. One way to do so is to add
+ something like "-lc" to the command-line options for "ld".
+
+Screen: coq/cmxs/prerequisites
+Advocates: Julien Puydt <julien.puydt@gmail.com>
+Reason: The Coq project comes with a kind of compiler that generates files
+ which are ELF shared objects. Unfortunately, they contain many undefined
+ symbols, but those are expected.
+ .
+ There are a lot of false positives.
+See-Also:
+ Bug#999602