Index: build/standalone.gypi |
diff --git a/build/standalone.gypi b/build/standalone.gypi |
index 78c178682c5741daa892f4ecafb29161c9535e3d..5a29d99f7f7550503972f894deded9aad0218339 100644 |
--- a/build/standalone.gypi |
+++ b/build/standalone.gypi |
@@ -82,15 +82,13 @@ |
# Speeds up Debug builds: |
# 0 - Compiler optimizations off (debuggable) (default). This may |
# be 5x slower than Release (or worse). |
- # 1 - Turn on compiler optimizations. This may be hard or impossible to |
- # debug. This may still be 2x slower than Release (or worse). |
- # 2 - Turn on optimizations, and also #undef DEBUG / #define NDEBUG |
- # (but leave V8_ENABLE_CHECKS and most other assertions enabled. |
- # This may cause some v8 tests to fail in the Debug configuration. |
- # This roughly matches the performance of a Release build and can |
- # be used by embedders that need to build their own code as debug |
- # but don't want or need a debug version of V8. This should produce |
- # near-release speeds. |
+ # 1 - Turn on optimizations and disable slow DCHECKs, but leave |
+ # V8_ENABLE_CHECKS and most other assertions enabled. This may cause |
+ # some v8 tests to fail in the Debug configuration. This roughly |
+ # matches the performance of a Release build and can be used by |
+ # embedders that need to build their own code as debug but don't want |
+ # or need a debug version of V8. This should produce near-release |
+ # speeds. |
'v8_optimized_debug%': 0, |
# Use external files for startup data blobs: |
@@ -164,7 +162,7 @@ |
], |
}, |
'Optdebug': { |
- 'inherit_from': [ 'DebugBaseCommon', 'DebugBase2' ], |
+ 'inherit_from': [ 'DebugBaseCommon', 'DebugBase1' ], |
}, |
'Debug': { |
# Xcode insists on this empty entry. |