Sha256: a4f93c24cd61fc48b2be7110e2ea0b72551b64131e5ef0bcd88b5f013db36011

Contents?: true

Size: 1.18 KB

Versions: 44

Compression:

Stored size: 1.18 KB

Contents

# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

{
 'targets': [
    # Optimization disabled so that the exception-causing code is not removed
    # (divide by zero was getting optimized away in VS2010).
    {
      'target_name': 'test_eh_off',
      'type': 'executable',
      'msvs_settings': {
        'VCCLCompilerTool': {
          'ExceptionHandling': '0',
          'WarnAsError': 'true',
          'Optimization': '0',
        }
      },
      'sources': ['exception-handling-on.cc'],
    },
    {
      'target_name': 'test_eh_s',
      'type': 'executable',
      'msvs_settings': {
        'VCCLCompilerTool': {
          'ExceptionHandling': '1',
          'WarnAsError': 'true',
          'Optimization': '0',
        }
      },
      'sources': ['exception-handling-on.cc'],
    },
    {
      'target_name': 'test_eh_a',
      'type': 'executable',
      'msvs_settings': {
        'VCCLCompilerTool': {
          'ExceptionHandling': '2',
          'WarnAsError': 'true',
          'Optimization': '0',
        }
      },
      'sources': ['exception-handling-on.cc'],
    },
  ]
}

Version data entries

44 entries across 44 versions & 7 rubygems

Version Path
libv8-3.11.8.3 vendor/v8/build/gyp/test/win/compiler-flags/exception-handling.gyp
libv8-3.11.8.1 vendor/v8/build/gyp/test/win/compiler-flags/exception-handling.gyp
libv8-3.11.8.0 vendor/v8/build/gyp/test/win/compiler-flags/exception-handling.gyp
libv8-3.10.8.0 vendor/v8/build/gyp/test/win/compiler-flags/exception-handling.gyp