mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 20:38:06 +02:00
scons: Refuse to use LLVM 2.7 for now.
LLVM's trunk is totally broken, at least for x86_64. See http://www.llvm.org/bugs/show_bug.cgi?id=6429
This commit is contained in:
parent
19a633310f
commit
44703217f7
1 changed files with 10 additions and 0 deletions
|
|
@ -82,6 +82,11 @@ def generate(env):
|
|||
print 'scons: could not determine the LLVM version from %s' % llvm_config
|
||||
return
|
||||
|
||||
if llvm_version >= distutils.version.LooseVersion('2.7'):
|
||||
print 'scons: Ignoring unsupported LLVM version %s' % llvm_version
|
||||
print 'scons: See http://www.llvm.org/bugs/show_bug.cgi?id=6429'
|
||||
return
|
||||
|
||||
env.Prepend(CPPPATH = [os.path.join(llvm_dir, 'include')])
|
||||
env.AppendUnique(CPPDEFINES = [
|
||||
'__STDC_LIMIT_MACROS',
|
||||
|
|
@ -133,6 +138,11 @@ def generate(env):
|
|||
llvm_version = env.backtick('llvm-config --version').rstrip()
|
||||
llvm_version = distutils.version.LooseVersion(llvm_version)
|
||||
|
||||
if llvm_version >= distutils.version.LooseVersion('2.7'):
|
||||
print 'scons: Ignoring unsupported LLVM version %s' % llvm_version
|
||||
print 'scons: See http://www.llvm.org/bugs/show_bug.cgi?id=6429'
|
||||
return
|
||||
|
||||
try:
|
||||
env.ParseConfig('llvm-config --cppflags')
|
||||
env.ParseConfig('llvm-config --libs jit interpreter nativecodegen bitwriter')
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue