diff options
author | Mauro Rossi <issor.oruam@gmail.com> | 2021-03-15 23:39:26 +0100 |
---|---|---|
committer | Marge Bot <eric+marge@anholt.net> | 2021-03-18 01:31:31 +0000 |
commit | 1b9d8d7fdfad64b68bf9828e3be1498fdaee90eb (patch) | |
tree | 7d2e2d8cc0f97c0c443b1da8741d5889007db3c7 /src/util | |
parent | edbbf4537bf3a8b54afa5f0d73b04a8fa418154b (diff) | |
download | mesa-1b9d8d7fdfad64b68bf9828e3be1498fdaee90eb.tar.gz mesa-1b9d8d7fdfad64b68bf9828e3be1498fdaee90eb.tar.bz2 mesa-1b9d8d7fdfad64b68bf9828e3be1498fdaee90eb.zip |
android: util: create some standalone compression helpers
Fixes the following building errors:
FAILED: out/target/product/x86_64/obj/SHARED_LIBRARIES/vulkan.android-x86_intermediates/LINKED/vulkan.radv.so
...
ld.lld: error: undefined symbol: util_compress_inflate
>>> referenced by disk_cache_os.c:459 (external/mesa/src/util/disk_cache_os.c:459)
...
ld.lld: error: undefined symbol: util_compress_max_compressed_len
>>> referenced by disk_cache_os.c:614 (external/mesa/src/util/disk_cache_os.c:614)
...
ld.lld: error: undefined symbol: util_compress_deflate
>>> referenced by disk_cache_os.c:622 (external/mesa/src/util/disk_cache_os.c:622)
Fixes: d7ecbd5bf837 ("util: create some standalone compression helpers")
Reviewed-By: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9613>
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/Makefile.sources | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util/Makefile.sources b/src/util/Makefile.sources index 98cddf8eaa5..3c365d57847 100644 --- a/src/util/Makefile.sources +++ b/src/util/Makefile.sources @@ -11,6 +11,8 @@ MESA_UTIL_FILES := \ build_id.h \ cnd_monotonic.h \ compiler.h \ + compress.c \ + compress.h \ crc32.c \ crc32.h \ dag.c \ |