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>
Tue, 15 May 2018 02:19:25 +0000 (10:19 +0800)
Don't show annoying warnings.

linker/linker.cpp

index 435f189..12bdf3e 100644 (file)
@@ -3959,12 +3959,12 @@ bool soinfo::link_image(const soinfo_list_t& global_group, const soinfo_list_t&
       DL_ERR("%s: has text relocations", 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. This is wasting memory and prevents "
             "security hardening. Please fix.", 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));