refactor build system to support cross-compiling

This commit is contained in:
Joel Dice
2007-10-22 14:56:27 -06:00
parent 3e84d4438a
commit ac4b28ffe6
10 changed files with 140 additions and 113 deletions

View File

@ -45,6 +45,8 @@
inline void* operator new(size_t, void* p) throw() { return p; }
inline void operator delete(void*) { abort(); }
namespace vm {
const unsigned BytesPerWord = sizeof(uintptr_t);