ruby: Make ruby #includes use full paths to the files they're including.

This basically means changing all #include statements and changing
autogenerated code so that it generates the correct paths.  Because
slicc generates #includes, I had to hard code the include paths to
mem/protocol.
This commit is contained in:
Nathan Binkert
2009-05-11 10:38:45 -07:00
parent d8c592a05d
commit 24da30e317
344 changed files with 1464 additions and 1471 deletions

View File

@@ -32,11 +32,11 @@
*
*/
#include "EnqueueStatementAST.hh"
#include "SymbolTable.hh"
#include "VarExprAST.hh"
#include "PairListAST.hh"
#include "util.hh"
#include "mem/slicc/ast/EnqueueStatementAST.hh"
#include "mem/slicc/symbols/SymbolTable.hh"
#include "mem/slicc/ast/VarExprAST.hh"
#include "mem/slicc/ast/PairListAST.hh"
#include "mem/gems_common/util.hh"
EnqueueStatementAST::EnqueueStatementAST(VarExprAST* queue_name_ptr,
TypeAST* type_name_ptr,