mirror of
https://gitee.com/openharmony/third_party_mesa3d
synced 2024-12-04 05:33:41 +00:00
Avoid building problematic module/drivers on windows.
This commit is contained in:
parent
16245d9b38
commit
26c57d1630
30
SConstruct
30
SConstruct
@ -33,17 +33,37 @@ platform_map = {
|
||||
'win32': 'winddk',
|
||||
}
|
||||
|
||||
platform = platform_map.get(sys.platform, sys.platform)
|
||||
default_platform = platform_map.get(sys.platform, sys.platform)
|
||||
default_drivers = 'all'
|
||||
if default_platform in ('linux', 'freebsd', 'darwin'):
|
||||
default_x11 = 'yes'
|
||||
else:
|
||||
default_x11 = 'no'
|
||||
|
||||
# TODO: auto-detect defaults
|
||||
opts = Options('config.py')
|
||||
opts.Add(BoolOption('debug', 'build debug version', False))
|
||||
opts.Add(BoolOption('dri', 'build dri drivers', False))
|
||||
opts.Add(BoolOption('llvm', 'use llvm', False))
|
||||
opts.Add(EnumOption('machine', 'use machine-specific assembly code', 'x86',
|
||||
allowed_values=('generic', 'x86', 'x86-64')))
|
||||
opts.Add(EnumOption('platform', 'target platform', platform,
|
||||
opts.Add(EnumOption('platform', 'target platform', default_platform,
|
||||
allowed_values=('linux', 'cell', 'winddk')))
|
||||
opts.Add(ListOption('statetrackers', 'state_trackers to build', 'all',
|
||||
[
|
||||
'mesa',
|
||||
],
|
||||
))
|
||||
#opts.Add(ListOption('drivers', 'pipe drivers to build', 'all',
|
||||
# [
|
||||
# 'softpipe',
|
||||
# 'failover',
|
||||
# 'i915simple',
|
||||
# 'i965simple',
|
||||
# 'cell',
|
||||
# ],
|
||||
# ))
|
||||
opts.Add(BoolOption('llvm', 'use llvm', False))
|
||||
opts.Add(BoolOption('dri', 'build dri drivers', False))
|
||||
opts.Add(BoolOption('x11', 'build x11 driver', default_x11))
|
||||
|
||||
env = Environment(
|
||||
options = opts,
|
||||
@ -114,7 +134,7 @@ if gcc:
|
||||
env.Append(CFLAGS = '-O3 -g3')
|
||||
env.Append(CXXFLAGS = '-O3 -g3')
|
||||
|
||||
env.Append(CFLAGS = '-Wall -Wmissing-prototypes -std=c99 -ffast-math -pedantic')
|
||||
env.Append(CFLAGS = '-Wall -Wmissing-prototypes -Wno-long-long -ffast-math -pedantic')
|
||||
env.Append(CXXFLAGS = '-Wall -pedantic')
|
||||
|
||||
# Be nice to Eclipse
|
||||
|
@ -1,7 +1,8 @@
|
||||
Import('*')
|
||||
|
||||
SConscript([
|
||||
'gallium/SConscript',
|
||||
'mesa/SConscript',
|
||||
'gallium/winsys/SConscript',
|
||||
])
|
||||
SConscript('gallium/SConscript')
|
||||
|
||||
if 'mesa' in env['state_trackers']:
|
||||
SConscript('mesa/SConscript')
|
||||
|
||||
SConscript('gallium/winsys/SConscript')
|
||||
|
@ -23,7 +23,12 @@ if llvm:
|
||||
SConscript([
|
||||
'drivers/softpipe/SConscript',
|
||||
'drivers/i915simple/SConscript',
|
||||
'drivers/i965simple/SConscript',
|
||||
'drivers/failover/SConscript',
|
||||
#'drivers/cell/SConscript',
|
||||
])
|
||||
|
||||
if not msvc:
|
||||
SConscript(['drivers/i965simple/SConscript'])
|
||||
|
||||
#if cell:
|
||||
# SConscript(['drivers/cell/SConscript'])
|
||||
|
@ -4,7 +4,8 @@ if dri:
|
||||
SConscript([
|
||||
'dri/SConscript',
|
||||
])
|
||||
else:
|
||||
|
||||
if env['x11'] and not dri and platform != 'winddk':
|
||||
SConscript([
|
||||
'xlib/SConscript',
|
||||
])
|
||||
|
Loading…
Reference in New Issue
Block a user