cmake/bochs: build --with-all-libs again
Without --with-all-libs (as documented in doc/how-to-build.txt), at least the "nogui" GUI does not work anymore -- the default for headless experiments. (Note the UNDEFINED->UNDEF enum rename; this was necessary due to a vga.h include side-effect in bochs/gui/svga.cc.) Change-Id: I1bc3208e905783505a35bbc48ff29f00eef599d6
This commit is contained in:
@ -24,9 +24,9 @@ namespace fail {
|
||||
int m_symbol_type;
|
||||
|
||||
public:
|
||||
enum { SECTION = 1, SYMBOL = 2, UNDEFINED = 3, };
|
||||
enum { SECTION = 1, SYMBOL = 2, UNDEF = 3, };
|
||||
|
||||
ElfSymbol(const std::string & name = ELF::NOTFOUND, guest_address_t addr = ADDR_INV, size_t size = -1, int type = UNDEFINED,
|
||||
ElfSymbol(const std::string & name = ELF::NOTFOUND, guest_address_t addr = ADDR_INV, size_t size = -1, int type = UNDEF,
|
||||
int symbol_type = 0)
|
||||
: name(name), address(addr), size(size), m_type(type), m_symbol_type(symbol_type) {};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user