[Mesa-dev] [Mesa-stable] [PATCH] amd/vulkan: meson build - use radv_deps for libvulkan_radeon

Dylan Baker dylan at pnwbakers.com
Mon Dec 3 17:17:34 UTC 2018


Quoting Tobias Klausmann (2018-12-01 09:30:20)
> Without this the build breaks with:
> 
> FAILED: src/amd/vulkan/src at amd@vulkan@@vulkan_radeon at sha/radv_pipeline.c.o
> cc -Isrc/amd/vulkan/src at amd@vulkan@@vulkan_radeon at sha -Isrc/amd/vulkan
> -I../src/amd/vulkan -Isrc/../include -I../src/../include -Isrc -I../src
> -Isrc/mapi -I../src/mapi -Isrc/mesa -I../src/mesa -I../src/gallium/include
> -Isrc/gallium/auxiliary -I../src/gallium/auxiliary -Isrc/amd -I../src/amd
> -Isrc/amd/common -I../src/amd/common -Isrc/compiler -I../src/compiler
> -Isrc/vulkan/util -I../src/vulkan/util -Isrc/vulkan/wsi -I../src/vulkan/wsi
> -Isrc/compiler/nir -I../src/compiler/nir -I/usr/include -I/usr/include/libdrm
> -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch
> -std=c99 -O2 -g '-DVERSION="18.3.0-rc5"' -DPACKAGE_VERSION=VERSION
> '-DPACKAGE_BUGREPORT="https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa"'
> -DGLX_USE_TLS -DHAVE_ST_VDPAU -DENABLE_ST_OMX_BELLAGIO=0
> -DENABLE_ST_OMX_TIZONIA=0 -DHAVE_X11_PLATFORM -DGLX_INDIRECT_RENDERING
> -DGLX_DIRECT_RENDERING -DGLX_USE_DRM -DHAVE_DRM_PLATFORM -DENABLE_SHADER_CACHE
> -DHAVE___BUILTIN_BSWAP32 -DHAVE___BUILTIN_BSWAP64 -DHAVE___BUILTIN_CLZ
> -DHAVE___BUILTIN_CLZLL -DHAVE___BUILTIN_CTZ -DHAVE___BUILTIN_EXPECT
> -DHAVE___BUILTIN_FFS -DHAVE___BUILTIN_FFSLL -DHAVE___BUILTIN_POPCOUNT
> -DHAVE___BUILTIN_POPCOUNTLL -DHAVE___BUILTIN_UNREACHABLE
> -DHAVE_FUNC_ATTRIBUTE_CONST -DHAVE_FUNC_ATTRIBUTE_FLATTEN
> -DHAVE_FUNC_ATTRIBUTE_MALLOC -DHAVE_FUNC_ATTRIBUTE_PURE
> -DHAVE_FUNC_ATTRIBUTE_UNUSED -DHAVE_FUNC_ATTRIBUTE_WARN_UNUSED_RESULT
> -DHAVE_FUNC_ATTRIBUTE_WEAK -DHAVE_FUNC_ATTRIBUTE_FORMAT
> -DHAVE_FUNC_ATTRIBUTE_PACKED -DHAVE_FUNC_ATTRIBUTE_RETURNS_NONNULL
> -DHAVE_FUNC_ATTRIBUTE_VISIBILITY -DHAVE_FUNC_ATTRIBUTE_ALIAS
> -DHAVE_FUNC_ATTRIBUTE_NORETURN -DUSE_SSE41 -DUSE_GCC_ATOMIC_BUILTINS
> -DUSE_X86_64_ASM -DMAJOR_IN_SYSMACROS -DHAVE_SYS_SYSCTL_H -DHAVE_LINUX_FUTEX_H
> -DHAVE_ENDIAN_H -DHAVE_DLFCN_H -DHAVE_STRTOF -DHAVE_MKOSTEMP
> -DHAVE_POSIX_MEMALIGN -DHAVE_TIMESPEC_GET -DHAVE_MEMFD_CREATE -DHAVE_STRTOD_L
> -DHAVE_DLADDR -DHAVE_DL_ITERATE_PHDR -DHAVE_ZLIB -DHAVE_PTHREAD
> -DHAVE_PTHREAD_SETAFFINITY -DHAVE_LIBDRM -DHAVE_LLVM=0x0600
> -DMESA_LLVM_VERSION_PATCH=1 -DHAVE_WAYLAND_PLATFORM -DWL_HIDE_DEPRECATED
> -DHAVE_DRI3 -DHAVE_DRI3_MODIFIERS -Werror=implicit-function-declaration
> -Werror=missing-prototypes -Werror=return-type -fno-math-errno
> -fno-trapping-math -Wno-missing-field-initializers -Wno-format-truncation -O2
> -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables
> -fasynchronous-unwind-tables -fstack-clash-protection -DNDEBUG -fPIC -pthread
> -D__STDC_FORMAT_MACROS -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS
> -D__STDC_LIMIT_MACROS -fvisibility=hidden -Wno-override-init
> -DVK_USE_PLATFORM_XCB_KHR -DVK_USE_PLATFORM_XLIB_KHR
> -DVK_USE_PLATFORM_WAYLAND_KHR -DVK_USE_PLATFORM_DISPLAY_KHR
> -DVK_USE_PLATFORM_XLIB_XRANDR_EXT  -MD -MQ
> 'src/amd/vulkan/src at amd@vulkan@@vulkan_radeon at sha/radv_pipeline.c.o' -MF
> 'src/amd/vulkan/src at amd@vulkan@@vulkan_radeon at sha/radv_pipeline.c.o.d' -o
> 'src/amd/vulkan/src at amd@vulkan@@vulkan_radeon at sha/radv_pipeline.c.o' -c
> ../src/amd/vulkan/radv_pipeline.c
> In file included from ../src/vulkan/util/vk_alloc.h:29,
>                  from ../src/amd/vulkan/radv_private.h:52,
>                  from ../src/amd/vulkan/radv_debug.h:27,
>                  from ../src/amd/vulkan/radv_pipeline.c:30:
> ../src/../include/vulkan/vulkan.h:54:10: fatal error: wayland-client.h: Datei
> oder Verzeichnis nicht gefunden
>  #include <wayland-client.h>
>           ^~~~~~~~~~~~~~~~~~
> compilation terminated.
> 
> The above command misses the include directory for wayland:
>     -I/usr/include/wayland
> 
> The missing include is contained in the (until now) unused radv_deps:
> 
> if with_platform_wayland
>   radv_deps += dep_wayland_client
>   radv_flags += '-DVK_USE_PLATFORM_WAYLAND_KHR'
>   libradv_files += files('radv_wsi_wayland.c')
> endif
> 
> Fixes: 673dda83307 "meson: build "radv" vulkan driver for radeon hardware"
> Signed-off-by: Tobias Klausmann <tobias.johannes.klausmann at mni.thm.de>
> Cc: 18.3 <mesa-stable at lists.freedesktop.org>
> ---
>  src/amd/vulkan/meson.build | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/src/amd/vulkan/meson.build b/src/amd/vulkan/meson.build
> index 0f1261d480..cc2aa7fd17 100644
> --- a/src/amd/vulkan/meson.build
> +++ b/src/amd/vulkan/meson.build
> @@ -140,7 +140,7 @@ libvulkan_radeon = shared_library(
>    ],
>    dependencies : [
>      dep_llvm, dep_libdrm_amdgpu, dep_thread, dep_elf, dep_dl, dep_m,
> -    dep_valgrind,
> +    dep_valgrind, radv_deps,
>      idep_nir,
>    ],
>    c_args : [c_vis_args, no_override_init_args, radv_flags],
> -- 
> 2.19.2
> 

Reviewed-by: Dylan Baker <dylan at pnwbakers.com>

I'll go ahead and push this with Emil and I's rbs added.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 228 bytes
Desc: signature
URL: <https://lists.freedesktop.org/archives/mesa-dev/attachments/20181203/56cad55a/attachment.sig>


More information about the mesa-dev mailing list