From 74ca8a3cd023bce0e919d09b494ee1e6c672a2a2 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Mon, 23 Apr 2012 12:00:41 -0700 Subject: ISA: Put parser generated files in a "generated" directory. This is to avoid collision with non-generated files. --- src/arch/SConscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/arch/SConscript') diff --git a/src/arch/SConscript b/src/arch/SConscript index 775aa1f41..d423fe9ea 100644 --- a/src/arch/SConscript +++ b/src/arch/SConscript @@ -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('.') -- cgit v1.2.3