diff options
Diffstat (limited to 'base/native_library_linux.cc')
-rw-r--r-- | base/native_library_linux.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/base/native_library_linux.cc b/base/native_library_linux.cc index 2e5db88..99e32c6 100644 --- a/base/native_library_linux.cc +++ b/base/native_library_linux.cc @@ -14,6 +14,10 @@ namespace base { // static NativeLibrary LoadNativeLibrary(const FilePath& library_path) { + // We deliberately do not use RTLD_DEEPBIND. For the history why, please + // refer to the bug tracker. Some useful bug reports to read include: + // http://crbug.com/17943, http://crbug.com/17557, http://crbug.com/36892, + // and http://crbug.com/40794. void* dl = dlopen(library_path.value().c_str(), RTLD_LAZY); if (!dl) { std::string error_message = dlerror(); |