scons: Always load lex/yacc tool.

lex/yacc is not loaded by default when toolchain is not default either,
e.g., when toolchain=crossmingw.
This commit is contained in:
José Fonseca
2011-03-03 15:28:36 +00:00
parent 118ecb1a22
commit 8987109c27

View File

@@ -598,6 +598,8 @@ def generate(env):
env.Append(LIBS = [])
# Load tools
env.Tool('lex')
env.Tool('yacc')
if env['llvm']:
env.Tool('llvm')
env.Tool('udis86')