Removed gcc_version magic from our GYP files, we don't support GCC 4.4 anymore.

R=jkummerow@chromium.org

Review URL: https://codereview.chromium.org/710233004

Cr-Commit-Position: refs/heads/master@{#25260}
git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@25260 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent e4d18396
...@@ -30,7 +30,6 @@ ...@@ -30,7 +30,6 @@
{ {
'variables': { 'variables': {
'msvs_use_common_release': 0, 'msvs_use_common_release': 0,
'gcc_version%': 'unknown',
'clang%': 0, 'clang%': 0,
'v8_target_arch%': '<(target_arch)', 'v8_target_arch%': '<(target_arch)',
# Native Client builds currently use the V8 ARM JIT and # Native Client builds currently use the V8 ARM JIT and
...@@ -942,14 +941,6 @@ ...@@ -942,14 +941,6 @@
'-ffunction-sections', '-ffunction-sections',
'-O1', # TODO(2807) should be -O3. '-O1', # TODO(2807) should be -O3.
], ],
'conditions': [
['gcc_version==44 and clang==0', {
'cflags': [
# Avoid crashes with gcc 4.4 in the v8 test suite.
'-fno-tree-vrp',
],
}],
],
}], }],
['OS=="mac"', { ['OS=="mac"', {
'xcode_settings': { 'xcode_settings': {
...@@ -1008,12 +999,6 @@ ...@@ -1008,12 +999,6 @@
'cflags': ['-O2'], 'cflags': ['-O2'],
'cflags!': ['-O3'], 'cflags!': ['-O3'],
}], }],
['gcc_version==44 and clang==0', {
'cflags': [
# Avoid crashes with gcc 4.4 in the v8 test suite.
'-fno-tree-vrp',
],
}],
], ],
}], }],
['OS=="mac"', { ['OS=="mac"', {
...@@ -1086,12 +1071,6 @@ ...@@ -1086,12 +1071,6 @@
'<(wno_array_bounds)', '<(wno_array_bounds)',
], ],
'conditions': [ 'conditions': [
[ 'gcc_version==44 and clang==0', {
'cflags': [
# Avoid crashes with gcc 4.4 in the v8 test suite.
'-fno-tree-vrp',
],
}],
# TODO(crbug.com/272548): Avoid -O3 in NaCl # TODO(crbug.com/272548): Avoid -O3 in NaCl
['nacl_target_arch=="none"', { ['nacl_target_arch=="none"', {
'cflags': ['-O3'], 'cflags': ['-O3'],
...@@ -1112,14 +1091,6 @@ ...@@ -1112,14 +1091,6 @@
'-ffunction-sections', '-ffunction-sections',
'-O2', '-O2',
], ],
'conditions': [
[ 'gcc_version==44 and clang==0', {
'cflags': [
# Avoid crashes with gcc 4.4 in the v8 test suite.
'-fno-tree-vrp',
],
}],
],
}], }],
['OS=="mac"', { ['OS=="mac"', {
'xcode_settings': { 'xcode_settings': {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment