diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2006-03-04 12:35:13 -0500 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2006-03-04 12:35:13 -0500 |
commit | 1e071c9f5fd5258ff92dc496aecc175db94a5ad7 (patch) | |
tree | a17c310be2c5299ae94799fc749d8f878bfe734b | |
parent | 1e3b221fe38a09d477f306ac837e9f816bcea029 (diff) | |
download | gem5-1e071c9f5fd5258ff92dc496aecc175db94a5ad7.tar.xz |
we REALLY don't want to use system headers for libelf...
use "" not <>
targetarch->arch
arch/alpha/system.cc:
targetarch -> arch
base/loader/elf_object.cc:
we REALLY don't want to use system headers for libelf...
use "" not <>
--HG--
extra : convert_revision : d0e1672dc655dca3081e36b2158e7b19ef54af40
-rw-r--r-- | arch/alpha/system.cc | 2 | ||||
-rw-r--r-- | base/loader/elf_object.cc | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/arch/alpha/system.cc b/arch/alpha/system.cc index b841a6d53..1e80c7768 100644 --- a/arch/alpha/system.cc +++ b/arch/alpha/system.cc @@ -27,6 +27,7 @@ */ #include "arch/alpha/system.hh" +#include "arch/vtophys.hh" #include "base/remote_gdb.hh" #include "base/loader/object_file.hh" #include "base/loader/symtab.hh" @@ -35,7 +36,6 @@ #include "mem/functional/physical.hh" #include "sim/byteswap.hh" #include "sim/builder.hh" -#include "targetarch/vtophys.hh" using namespace LittleEndianGuest; diff --git a/base/loader/elf_object.cc b/base/loader/elf_object.cc index 9dd9f9d00..fd69c9e56 100644 --- a/base/loader/elf_object.cc +++ b/base/loader/elf_object.cc @@ -38,8 +38,8 @@ #define __LIBELF_NEED_LINK_H 0 #define __LIBELF_SYMBOL_VERSIONS 0 -#include <libelf/libelf.h> -#include <libelf/gelf.h> +#include "libelf/libelf.h" +#include "libelf/gelf.h" #include "base/loader/elf_object.hh" |