Index: src/mksnapshot.cc |
diff --git a/src/mksnapshot.cc b/src/mksnapshot.cc |
index 3ac475be2e466c01b92375bdb87c527d0416881e..a8d9b35f3be4a81f4bd6bccc7a520100511cc725 100644 |
--- a/src/mksnapshot.cc |
+++ b/src/mksnapshot.cc |
@@ -312,6 +312,9 @@ int main(int argc, char** argv) { |
// By default, log code create information in the snapshot. |
i::FLAG_log_code = true; |
+ // Disable the i18n extension, as it doesn't support being snapshotted yet. |
+ i::FLAG_enable_i18n = false; |
+ |
// Print the usage if an error occurs when parsing the command line |
// flags or if the help flag is set. |
int result = i::FlagList::SetFlagsFromCommandLine(&argc, argv, true); |