| Index: src/trusted/validator/build.scons
|
| diff --git a/src/trusted/validator/build.scons b/src/trusted/validator/build.scons
|
| index be1009f0dc3d29a532d433e2fbe117a850ea6857..6ce810aa2ff994cf51ed7c6756f0477e35e11dce 100644
|
| --- a/src/trusted/validator/build.scons
|
| +++ b/src/trusted/validator/build.scons
|
| @@ -11,13 +11,9 @@ Import('env')
|
|
|
| env.ComponentLibrary(env.NaClTargetArchSuffix('ncfileutils'), ['ncfileutil.c'])
|
|
|
| -val_lib_env = env.Clone()
|
| -if env.Bit('validator_ragel'):
|
| - val_lib_env.Append(CPPDEFINES=[['NACL_VALIDATOR_RAGEL', '1']])
|
| +env.ComponentLibrary('validation_cache', ['validation_cache.c'])
|
|
|
| -val_lib_env.ComponentLibrary('validation_cache', ['validation_cache.c'])
|
| -
|
| -val_lib_env.ComponentLibrary('validators', ['validator_init.c'])
|
| +env.ComponentLibrary('validators', ['validator_init.c'])
|
|
|
| if env.Bit('target_x86') or env.Bit('target_mips32'):
|
| # TODO(ncbray) support ARM. This will require making validation caching safe
|
|
|