summaryrefslogtreecommitdiffstats
path: root/linker/dlfcn.cpp
diff options
context:
space:
mode:
authorDmitriy Ivanov <dimitry@google.com>2014-09-16 14:31:06 -0700
committerDmitriy Ivanov <dimitry@google.com>2014-09-16 15:26:47 -0700
commit8f61d991831f0ea515fa50a5c38dbbcfbab0dd28 (patch)
tree15a839ab19e618385984e1f8946079a2207a6de2 /linker/dlfcn.cpp
parent370704d69db15ec0b4d24e6412b5d30ded0ffc03 (diff)
downloadbionic-8f61d991831f0ea515fa50a5c38dbbcfbab0dd28.zip
bionic-8f61d991831f0ea515fa50a5c38dbbcfbab0dd28.tar.gz
bionic-8f61d991831f0ea515fa50a5c38dbbcfbab0dd28.tar.bz2
Remove has_DT_SYMBOLIC flag
From the elf-spec: "Symbolically bound shared objects are identified by the .dynamic entry DT_SYMBOLIC. This tag is informational only; the runtime linker processes symbol lookups from these objects in the same manner as any other object." Change-Id: I4aae0e502ed9fac096fbf076f4d6b2e055d784f6
Diffstat (limited to 'linker/dlfcn.cpp')
-rw-r--r--linker/dlfcn.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/linker/dlfcn.cpp b/linker/dlfcn.cpp
index 712e80e..c930ce9 100644
--- a/linker/dlfcn.cpp
+++ b/linker/dlfcn.cpp
@@ -244,7 +244,6 @@ soinfo* get_libdl_info() {
__libdl_info.nchain = sizeof(g_libdl_chains)/sizeof(unsigned);
__libdl_info.bucket = g_libdl_buckets;
__libdl_info.chain = g_libdl_chains;
- __libdl_info.has_DT_SYMBOLIC = true;
__libdl_info.ref_count = 1;
}