Browse Source

v8: remove optimization switches

Remove compiler switches from $(TOPLEVEL)/deps/v8/build/common.gypi, we set
them globally in $(TOPLEVEL)/common.gypi.

Commit 29d12c73 accidentally reintroduced the switches again. In particular,
the 'cflags!': ['-O2','-Os'] section forced building V8 without any
optimizations, resulting in a steep (~66%) performance drop on some benchmarks.

Fixes #4191.
v0.8.13-release
Ben Noordhuis 12 years ago
parent
commit
4b8629db37
  1. 10
      deps/v8/build/common.gypi

10
deps/v8/build/common.gypi

@ -339,16 +339,6 @@
'conditions': [
['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd" \
or OS=="android"', {
'cflags!': [
'-O2',
'-Os',
],
'cflags': [
'-fdata-sections',
'-ffunction-sections',
'-fomit-frame-pointer',
'-O3',
],
'conditions': [
[ 'gcc_version==44 and clang==0', {
'cflags': [

Loading…
Cancel
Save