mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 15:10:10 +01:00
scons: Fix egl-static build due to conflicting symbols.
radeonsi and r600 have duplicate symbols, so it's not possible to statically link both. Remove the newcomer, radeonsi, until duplicate symbols are fixed.
This commit is contained in:
parent
e44089b2f7
commit
abfe759172
1 changed files with 1 additions and 2 deletions
|
|
@ -98,12 +98,11 @@ if env['HAVE_DRM']:
|
|||
])
|
||||
|
||||
if env['HAVE_DRM_RADEON']:
|
||||
env.Append(CPPDEFINES = ['_EGL_PIPE_R300', '_EGL_PIPE_R600', '_EGL_PIPE_RADEONSI'])
|
||||
env.Append(CPPDEFINES = ['_EGL_PIPE_R300', '_EGL_PIPE_R600'])
|
||||
env.Prepend(LIBS = [
|
||||
radeonwinsys,
|
||||
r300,
|
||||
r600,
|
||||
radeonsi,
|
||||
])
|
||||
|
||||
env.Append(CPPDEFINES = ['_EGL_PIPE_VMWGFX'])
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue