diff options
| author | 2018-01-18 16:24:11 -0800 | |
|---|---|---|
| committer | 2018-01-18 16:24:11 -0800 | |
| commit | 0c3c4d1c7d6fb210548f32a6e6ec01fd9bf90760 (patch) | |
| tree | 20bef3c1e82ff74b1794f202401c291020e21f96 | |
| parent | d6cd4b241a7c51cf2611e4b1cf30358c77bf9804 (diff) | |
Fixing app compat issue b/72143978
Revert "Remove obsolete workaround."
This reverts commit 5e48241a95b843c10f96c57d8544af9d04807218.
Bug: 72143978
Bug: 24465209
Test: Tested failing case on sailfish, reverted back all CL's since
Test: 3471433 for b/24465209 and apps open
| -rw-r--r-- | native/graphics/jni/Android.bp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/native/graphics/jni/Android.bp b/native/graphics/jni/Android.bp index 5785b0c42a2f..d7695ef17a08 100644 --- a/native/graphics/jni/Android.bp +++ b/native/graphics/jni/Android.bp @@ -30,6 +30,13 @@ cc_library_shared { "libandroid_runtime", "libskia", ], + + arch: { + arm: { + // TODO: This is to work around b/24465209. Remove after root cause is fixed + ldflags: ["-Wl,--hash-style=both"], + }, + }, } // The headers module is in frameworks/native/Android.bp. |