Updates:
Status: WorkingAsIntended
Comment #1 on issue 2157 by [email protected]: v8 uses target CFLAGS
to build host files, and fails when they are run
http://code.google.com/p/v8/issues/detail?id=2157
V8 doesn't know or care about release_extra_cflags:
$ grep -Inr release_extra_cflags v8/ | wc -l
0
It inherits the build environment (including GYP variables, default target
properties and so on) from the embedder, in this case Chrome. I suggest to
modify Chromium's build/common.gypi, where release_extra_cflags is added to
the 'cflags' list, to only do so for the target toolset. Something along
the lines of:
'target_conditions': [
['_toolset=="target"', {
'cflags': [
'<@(release_extra_cflags)',
],
}],
],
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev