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