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
1 changed files with 2 additions and 0 deletions

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')