mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
meson: Fix omx-bellagio target linkage
This needs to use --whole-archive (link_whole in meson) to properly expose symbols. v4: - Always add libswdri and libswkmsdri to link_with Fixes:1d36dc674d("meson: build gallium omx state tracker") Signed-off-by: Dylan Baker <dylan.c.baker@intel.com> Acked-by: Eric Engestrom <eric.engestrom@imgtec.com> Reviewed-by: Emil Velikov <emil.velikov@collabora.com> (cherry picked from commit91a59b6287)
This commit is contained in:
parent
66f2e7801b
commit
7bc6404bbc
1 changed files with 4 additions and 3 deletions
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2017 Intel Corporation
|
||||
# Copyright © 2017-2018 Intel Corporation
|
||||
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
# of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
@ -39,9 +39,10 @@ libomx_gallium = shared_library(
|
|||
include_directories : [
|
||||
inc_common, inc_util, inc_gallium_winsys, inc_gallium_drivers,
|
||||
],
|
||||
link_whole : [libomx_st],
|
||||
link_with : [
|
||||
libomx_st, libgalliumvlwinsys, libgalliumvl, libgallium, libmesa_util,
|
||||
libpipe_loader_static, libws_null, libwsw,
|
||||
libgalliumvlwinsys, libgalliumvl, libgallium, libmesa_util,
|
||||
libpipe_loader_static, libws_null, libwsw, libswdri, libswkmsdri,
|
||||
],
|
||||
link_depends : omx_link_depends,
|
||||
dependencies : [dep_thread, driver_r600, driver_radeonsi, driver_nouveau],
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue