mirror of
https://github.com/corda/corda.git
synced 2025-01-22 12:28:11 +00:00
temporarily disable use of SSE on 32-bit systems until a bug involving memory<->SSE-register moves is fixed
This commit is contained in:
parent
fb5796b740
commit
5b8a7ca566
@ -2169,7 +2169,10 @@ JNI_CreateJavaVM(Machine** m, Thread** t, void* args)
|
||||
System* s = makeSystem(crashDumpDirectory);
|
||||
Heap* h = makeHeap(s, heapLimit);
|
||||
Finder* f = makeFinder(s, RUNTIME_ARRAY_BODY(classpathBuffer), bootLibrary);
|
||||
Processor* p = makeProcessor(s, h, true);
|
||||
Processor* p = makeProcessor(s, h, false); // change back to true
|
||||
// once use of SSE is
|
||||
// fixed on 32-bit
|
||||
// systems
|
||||
|
||||
const char** properties = static_cast<const char**>
|
||||
(h->allocate(sizeof(const char*) * propertyCount));
|
||||
|
Loading…
Reference in New Issue
Block a user