mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-24 17:10:13 +01:00
intel: fix build error
CCLD test_decode ./.libs/libdrm_intel.so: undefined reference to `drmPrimeHandleToFD' ./.libs/libdrm_intel.so: undefined reference to `drmPrimeFDToHandle' collect2: ld returned 1 exit status From Adam Jackson's explaination: most distros have changed it so ld defaults to --no-copy-dt-needed-entries, so if you use something from libdrm you can't just assume libdrm_intel will bring it in for you, you have to be explicit Signed-off-by: Rob Clark <rob@ti.com>
This commit is contained in:
parent
ff65de9666
commit
faf26b689d
1 changed files with 1 additions and 1 deletions
|
|
@ -77,6 +77,6 @@ EXTRA_DIST = \
|
|||
$(BATCHES:.batch=.batch-ref.txt) \
|
||||
tests/test-batch.sh
|
||||
|
||||
test_decode_LDADD = libdrm_intel.la
|
||||
test_decode_LDADD = libdrm_intel.la ../libdrm.la
|
||||
|
||||
pkgconfig_DATA = libdrm_intel.pc
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue