build: fix c++ code coverage on macOS
PR-URL: https://github.com/nodejs/node/pull/24520 Reviewed-By: Anna Henningsen <anna@addaleax.net>
This commit is contained in:
parent
0d2311820d
commit
eb6741b15e
19
node.gypi
19
node.gypi
@ -274,25 +274,28 @@
|
|||||||
'-Wl,--whole-archive <(v8_base)',
|
'-Wl,--whole-archive <(v8_base)',
|
||||||
'-Wl,--no-whole-archive' ]
|
'-Wl,--no-whole-archive' ]
|
||||||
}],
|
}],
|
||||||
[ 'OS in "mac freebsd linux" and node_shared=="false"'
|
[ 'coverage=="true" and node_shared=="false" and OS in "mac freebsd linux"', {
|
||||||
' and coverage=="true"', {
|
'cflags!': [ '-O3' ],
|
||||||
'ldflags': [ '--coverage',
|
'ldflags': [ '--coverage',
|
||||||
'-g',
|
'-g',
|
||||||
'-O0' ],
|
'-O0' ],
|
||||||
'cflags': [ '--coverage',
|
'cflags': [ '--coverage',
|
||||||
'-g',
|
'-g',
|
||||||
'-O0' ],
|
'-O0' ],
|
||||||
'cflags!': [ '-O3' ],
|
|
||||||
'xcode_settings': {
|
'xcode_settings': {
|
||||||
'OTHER_LDFLAGS': [
|
'OTHER_CFLAGS': [
|
||||||
'--coverage',
|
|
||||||
],
|
|
||||||
'OTHER_CFLAGS+': [
|
|
||||||
'--coverage',
|
'--coverage',
|
||||||
'-g',
|
'-g',
|
||||||
'-O0'
|
'-O0'
|
||||||
],
|
],
|
||||||
}
|
},
|
||||||
|
'conditions': [
|
||||||
|
[ '_type=="executable"', {
|
||||||
|
'xcode_settings': {
|
||||||
|
'OTHER_LDFLAGS': [ '--coverage', ],
|
||||||
|
},
|
||||||
|
}],
|
||||||
|
],
|
||||||
}],
|
}],
|
||||||
[ 'OS=="sunos"', {
|
[ 'OS=="sunos"', {
|
||||||
'ldflags': [ '-Wl,-M,/usr/lib/ld/map.noexstk' ],
|
'ldflags': [ '-Wl,-M,/usr/lib/ld/map.noexstk' ],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user