disable use of SSE when compiling ahead-of-time

This commit is contained in:
Joel Dice
2009-10-10 17:46:43 -06:00
parent 38bf29300f
commit 44a6620aa1
8 changed files with 184 additions and 131 deletions

View File

@ -386,7 +386,7 @@ main(int ac, const char** av)
System* s = makeSystem(0);
Heap* h = makeHeap(s, 128 * 1024 * 1024);
Finder* f = makeFinder(s, av[1], 0);
Processor* p = makeProcessor(s, h);
Processor* p = makeProcessor(s, h, false);
BootImage image;
const unsigned CodeCapacity = 32 * 1024 * 1024;