diff options
author | Emil Velikov <[email protected]> | 2016-10-12 19:05:32 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2016-10-14 11:09:00 +0100 |
commit | 3fd0cafc1c04b35707e9f862d07edd0599fe18fa (patch) | |
tree | b47a308d68c9cbcaaa349ce3053334a5a3137d02 /src/amd/vulkan/Makefile.am | |
parent | a8a5f0a0252ece806dc7d9dd34c897509d778a80 (diff) |
radv: move AMDGPU_LIBS later in the link chain
At the moment (albeit unlikely) one could get link-time issues, since
libdrm_amdgpu.so is before it's users in the link chain.
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Dave Airlie <[email protected]>
Reviewed-by: Edward O'Callaghan <[email protected]>
Acked-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/vulkan/Makefile.am')
-rw-r--r-- | src/amd/vulkan/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/amd/vulkan/Makefile.am b/src/amd/vulkan/Makefile.am index b6f3d002543..e2f5c029a07 100644 --- a/src/amd/vulkan/Makefile.am +++ b/src/amd/vulkan/Makefile.am @@ -58,7 +58,7 @@ VULKAN_SOURCES = \ $(VULKAN_GENERATED_FILES) \ $(VULKAN_FILES) -VULKAN_LIB_DEPS = $(AMDGPU_LIBS) +VULKAN_LIB_DEPS = if HAVE_PLATFORM_X11 @@ -100,6 +100,7 @@ VULKAN_LIB_DEPS += \ $(LLVM_LIBS) \ $(LIBELF_LIBS) \ $(PTHREAD_LIBS) \ + $(AMDGPU_LIBS) \ $(LIBDRM_LIBS) \ $(PTHREAD_LIBS) \ $(DLOPEN_LIBS) \ |