| Index: runtime/vm/bootstrap_nocore.cc
|
| diff --git a/runtime/vm/bootstrap_nocore.cc b/runtime/vm/bootstrap_nocore.cc
|
| index a188ae5ddbf086389443676e5cbed01b23da2ebf..e688fe2c6f9b28261b46c914c42d1bb9f1ca0d07 100644
|
| --- a/runtime/vm/bootstrap_nocore.cc
|
| +++ b/runtime/vm/bootstrap_nocore.cc
|
| @@ -84,6 +84,7 @@ RawError* BootstrapFromKernel(Thread* thread, kernel::Program* program) {
|
| pending.set_is_marked_for_parsing();
|
| }
|
|
|
| + // Load the bootstrap libraries in order (see object_store.h).
|
| Library& library = Library::Handle(zone);
|
| String& dart_name = String::Handle(zone);
|
| String& kernel_name = String::Handle(zone);
|
| @@ -103,7 +104,18 @@ RawError* BootstrapFromKernel(Thread* thread, kernel::Program* program) {
|
| }
|
| }
|
|
|
| + // Finish bootstrapping, including class finalization.
|
| Finish(thread, /*from_kernel=*/true);
|
| +
|
| + // The platform binary may contain other libraries (e.g., dart:_builtin or
|
| + // dart:io) that will not be bundled with application. Load them now.
|
| + reader.ReadProgram();
|
| +
|
| + // The builtin library should be registered with the VM.
|
| + dart_name = String::New("dart:_builtin");
|
| + library = Library::LookupLibrary(thread, dart_name);
|
| + isolate->object_store()->set_builtin_library(library);
|
| +
|
| return Error::null();
|
| }
|
|
|
|
|