diff options
author | Mauro Rossi <[email protected]> | 2017-05-20 17:31:36 +0200 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-06-17 18:38:31 +0100 |
commit | 58d337941e9696541a6c5744770b21b0d7a9fb1f (patch) | |
tree | fd2730fdbe0ec723f8e751ef93cd7dffc443e60b /src | |
parent | 68aa39d5c2fed23736f07136390e61e1740e4d6f (diff) |
android: ac: add missing libdrm_amdgpu shared dependency
Fixes building errors in amd/common:
target C: libmesa_amd_common <= external/mesa/src/amd/common/ac_gpu_info.c
...
target C: libmesa_amd_common <= external/mesa/src/amd/common/ac_surface.c
...
external/mesa/src/amd/common/ac_gpu_info.h:31:10: fatal error: 'amdgpu.h' file not found
^
2 errors
Fixes: 98a2492 ("ac_surface: use radeon_info from ac_gpu_info")
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/amd/Android.common.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/amd/Android.common.mk b/src/amd/Android.common.mk index e3915b45bfe..39d2732fd99 100644 --- a/src/amd/Android.common.mk +++ b/src/amd/Android.common.mk @@ -61,6 +61,9 @@ LOCAL_C_INCLUDES := \ LOCAL_EXPORT_C_INCLUDE_DIRS := \ $(LOCAL_PATH)/common +LOCAL_SHARED_LIBRARIES := \ + libdrm_amdgpu + LOCAL_STATIC_LIBRARIES := \ libmesa_nir |