Skip to content

build: ignore `v8_enable|disble_object_print` CLI option handling

This patch will avoid collisions in the v8_enable_object_print build definition.

This are the results of the V8 build after this patch:

$ ./configure --verbose | \
  grep v8_enable_object_print
    'v8_enable_object_print': 1,

$ ./configure --v8-enable-object-print --verbose | \
  grep v8_enable_object_print
    'v8_enable_object_print': 1,

$ ./configure --v8-disable-object-print --verbose | \
  grep v8_enable_object_print
    'v8_enable_object_print': 0,

$ ./configure --v8-enable-object-print --v8-disable-object-print
    Exception: Only one of the --v8-enable-object-print or ...

Merge request reports

Loading