diff options
author | Ryan Prichard <rprichard@google.com> | 2021-01-28 14:06:52 -0800 |
---|---|---|
committer | Ryan Prichard <rprichard@google.com> | 2021-01-28 15:41:47 -0800 |
commit | ef1478765da06fad1238d4690911a6f40faa40fb (patch) | |
tree | 7b211efd5e60fe53190402c7c490085fe75cc404 /linker | |
parent | f700de5f531e44434fd78bd678b027ad33403a56 (diff) |
Fix -Wl,--exclude-libs typo: x86->i686
These lines shouldn't actually matter, because the DSOs are using
version scripts to allow-list exported symbols.
Bug: none
Test: bionic unit tests
Change-Id: I39d3df8c4f8053624f862b3c6994e30c693e928c
Diffstat (limited to 'linker')
-rw-r--r-- | linker/Android.bp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linker/Android.bp b/linker/Android.bp index efda312e7..6f5d46535 100644 --- a/linker/Android.bp +++ b/linker/Android.bp @@ -409,7 +409,7 @@ cc_library { "-Wl,--exclude-libs=libgcc_stripped.a", "-Wl,--exclude-libs=libclang_rt.builtins-arm-android.a", "-Wl,--exclude-libs=libclang_rt.builtins-aarch64-android.a", - "-Wl,--exclude-libs=libclang_rt.builtins-x86-android.a", + "-Wl,--exclude-libs=libclang_rt.builtins-i686-android.a", "-Wl,--exclude-libs=libclang_rt.builtins-x86_64-android.a", ], |