blob: 3b37d8e1af40ab9c43c54568ade7abe18636ca18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
Import('*')
if not 'i965' in env['drivers']:
print 'warning: i965 pipe driver not built skipping i965_dri.so'
Return()
env = drienv.Clone()
env.ParseConfig('pkg-config --cflags --libs libdrm_intel')
drivers = [
st_dri,
i965drm,
i965,
trace,
]
env.LoadableModule(
target ='i965_dri.so',
source = COMMON_GALLIUM_SOURCES,
LIBS = drivers + mesa + gallium + env['LIBS'],
SHLIBPREFIX = '',
)
|