OSDN Git Service

We require text relocations
authorChih-Wei Huang <cwhuang@linux.org.tw>
Thu, 8 Mar 2018 04:30:36 +0000 (12:30 +0800)
committerChih-Wei Huang <cwhuang@linux.org.tw>
Thu, 8 Mar 2018 04:30:36 +0000 (12:30 +0800)
Don't show annoying warnings.

linker/linker.cpp

index 397e9a8..c7b9a9a 100644 (file)
@@ -3328,13 +3328,13 @@ bool soinfo::link_image(const soinfo_list_t& global_group, const soinfo_list_t&
                      "Enforced-for-API-level-23)", get_realpath());
       return false;
     }
-#endif
     // Make segments writable to allow text relocations to work properly. We will later call
     // phdr_table_protect_segments() after all of them are applied.
     DL_WARN("\"%s\" has text relocations (https://android.googlesource.com/platform/"
             "bionic/+/master/android-changes-for-ndk-developers.md#Text-Relocations-Enforced-"
             "for-API-level-23)", get_realpath());
     add_dlwarning(get_realpath(), "text relocations");
+#endif
     if (phdr_table_unprotect_segments(phdr, phnum, load_bias) < 0) {
       DL_ERR("can't unprotect loadable segments for \"%s\": %s",
              get_realpath(), strerror(errno));