diff options
author | Mauro Rossi <[email protected]> | 2020-06-20 18:22:31 +0200 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-06-24 10:00:14 +0000 |
commit | b41828c33751d666726dc27222674b7eff08fe28 (patch) | |
tree | 2f5e4df96d881965088d201e0909df3810900f6a /src/freedreno | |
parent | 5f97dfc4c848cb6388ec138c19a22a8a880901d1 (diff) |
android: freedreno: add fd5_layout.c to Makefile.sources
Fixes the following building error:
FAILED: out/target/product/x86_64/obj/SHARED_LIBRARIES/gallium_dri_intermediates/LINKED/gallium_dri.so
...
ld.lld: error: undefined symbol: fdl5_layout
clang-9: error: linker command failed with exit code 1 (use -v to see invocation)
Fixes: a1a739995ba ("freedreno/a5xx: Move resource layout to fdl.")
Signed-off-by: Mauro Rossi <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Acked-by: Rob Clark <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5580>
Diffstat (limited to 'src/freedreno')
-rw-r--r-- | src/freedreno/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/freedreno/Makefile.sources b/src/freedreno/Makefile.sources index ee839445cd7..1e6d114a969 100644 --- a/src/freedreno/Makefile.sources +++ b/src/freedreno/Makefile.sources @@ -15,6 +15,7 @@ drm_SOURCES := \ drm/msm_ringbuffer.c ir3_SOURCES := \ + fdl/fd5_layout.c \ fdl/fd6_layout.c \ fdl/freedreno_layout.c \ ir3/disasm-a3xx.c \ |