Android-x86
Fork
Spenden

  • R/O
  • HTTP
  • SSH
  • HTTPS

bionic: Commit

bionic


Commit MetaInfo

Revisiona02c855c4598ec65d2848911c1bc190becbb2c5a (tree)
Zeit2019-12-17 12:55:22
AutorChristopher R. Palmer <crpalmer@gmai...>
CommiterChih-Wei Huang

Log Message

linker: Allow text-relocs for x86 (only)

This effectively reverts

https://android.googlesource.com/platform/bionic/+/e4ad91f86a47b39612e030a162f4793cb3421d31%5E%21/#F0

for x86 platforms. Unfortunately, this seems like it is required
if we are going to support ffmpeg. The ffmpeg team decreed that they
require text relocations for x86 (only) and that they would not
fix the fact that android 6.0 makes ffmpeg unusable on x86:

https://trac.ffmpeg.org/ticket/4928

Change-Id: I68397f4d62f4f6acd8e0d41b7ecdc115969b890a

Ändern Zusammenfassung

Diff

--- a/linker/linker.cpp
+++ b/linker/linker.cpp
@@ -3900,6 +3900,7 @@ bool soinfo::link_image(const soinfo_list_t& global_group, const soinfo_list_t&
39003900
39013901 #if !defined(__LP64__)
39023902 if (has_text_relocations) {
3903+#if !defined(__i386__) // ffmpeg says that they require text relocations on x86
39033904 // Fail if app is targeting M or above.
39043905 int app_target_api_level = get_application_target_sdk_version();
39053906 if (app_target_api_level >= __ANDROID_API_M__) {
@@ -3908,6 +3909,7 @@ bool soinfo::link_image(const soinfo_list_t& global_group, const soinfo_list_t&
39083909 "Enforced-for-API-level-23)", get_realpath());
39093910 return false;
39103911 }
3912+#endif
39113913 // Make segments writable to allow text relocations to work properly. We will later call
39123914 // phdr_table_protect_segments() after all of them are applied.
39133915 DL_WARN_documented_change(__ANDROID_API_M__,
Show on old repository browser