diff options
author | Elliott Hughes <enh@google.com> | 2015-04-03 11:27:53 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2015-04-03 12:37:03 -0700 |
commit | 76e1cbca75e9fdaf7a7943f2c58e65433b283f4a (patch) | |
tree | 71f98b1cf8521c3c2111bf375707d8aebf653cf9 /libc/version_script.txt | |
parent | 06b6e3c51d38d70c5ca99f3a3f795697031ac27f (diff) | |
download | bionic-76e1cbca75e9fdaf7a7943f2c58e65433b283f4a.zip bionic-76e1cbca75e9fdaf7a7943f2c58e65433b283f4a.tar.gz bionic-76e1cbca75e9fdaf7a7943f2c58e65433b283f4a.tar.bz2 |
Fix volantis boot.
NVIDIA binary blobs are assuming that __cache_clear, _Unwind_Backtrace,
and _Unwind_GetIP are all in some library that they link, but now we've
cleaned up this leakage, they're no longer getting it. Deliberately leak
the symbols from libc.so until we get new blobs.
Bug: http://b/20065774
Change-Id: I92ef07b2bce8d1ad719bf40dab41d745cd6904d4
Diffstat (limited to 'libc/version_script.txt')
-rw-r--r-- | libc/version_script.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libc/version_script.txt b/libc/version_script.txt index afc5e5c..349a2fc 100644 --- a/libc/version_script.txt +++ b/libc/version_script.txt @@ -1,4 +1,9 @@ LIBC { + global: + /* Work-around for http://b/20065774. */ + __clear_cache; + _Unwind_Backtrace; + _Unwind_GetIP; local: _ZSt7nothrow; _ZdaPv; |