ISA: Put parser generated files in a "generated" directory.

This is to avoid collision with non-generated files.
This commit is contained in:
Gabe Black
2012-04-23 12:00:41 -07:00
parent 867ff2b5f1
commit 74ca8a3cd0
10 changed files with 11 additions and 10 deletions

View File

@@ -29,6 +29,7 @@
# Authors: Steve Reinhardt
import sys
import os
Import('*')
@@ -107,7 +108,7 @@ def isa_desc_emitter(target, source, env):
# Add in the CPU models.
source += [ Value(m) for m in cpu_models ]
return target, source
return [os.path.join("generated", t) for t in target], source
ARCH_DIR = Dir('.')