Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Issue 9346022: Set OmitFramePointers to false for official builds to do some tests. (Closed)

Created:
8 years, 10 months ago by kerz_chromium
Modified:
8 years, 10 months ago
Reviewers:
eroman
CC:
chromium-reviews
Visibility:
Public.

Description

Set OmitFramePointers to false for official builds to do some tests. BUG=NONE TBR=eroman@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=120793

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1 line, -1 line) Patch
M build/internal/release_impl_official.gypi View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 3 (0 generated)
kerz_chromium
8 years, 10 months ago (2012-02-07 16:49:09 UTC) #1
eroman
lgtm On Tue, Feb 7, 2012 at 8:49 AM, <kerz@chromium.org> wrote: > Reviewers: eroman, > ...
8 years, 10 months ago (2012-02-07 17:15:27 UTC) #2
eroman
8 years, 10 months ago (2012-02-08 21:56:52 UTC) #3
Actually I don't think that is sufficient.
The following comment from win_release_OmitFramePointers says that one must also
specify /Oy- to really disable FPO.

['win_release_OmitFramePointers==0', {
    'OmitFramePointers': 'false',
    # The above is not sufficient (http://crbug.com/106711): it
    # simply eliminates an explicit "/Oy", but both /O2 and /Ox
    # perform FPO regardless, so we must explicitly disable.
    # We still want the false setting above to avoid having
    # "/Oy /Oy-" and warnings about overriding.
    'AdditionalOptions': ['/Oy-'],
}],

Powered by Google App Engine
This is Rietveld 408576698