tools: skip workaround for newer llvm
PR-URL: https://github.com/nodejs/node/pull/14077 Fixes: https://github.com/nodejs/node/issues/14076 Refs: https://svnweb.freebsd.org/ports/head/www/node/Makefile?revision=444555&view=markup Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Refael Ackermann <refack@gmail.com>
This commit is contained in:
parent
fc544d4c00
commit
8979b4fc9f
12
common.gypi
12
common.gypi
@ -407,9 +407,15 @@
|
||||
'libraries': [ '-lelf' ],
|
||||
}],
|
||||
['OS=="freebsd"', {
|
||||
# Use this flag because on FreeBSD std::pairs copy constructor is non-trivial
|
||||
# https://lists.freebsd.org/pipermail/freebsd-toolchain/2016-March/002094.html
|
||||
'cflags': [ '-D_LIBCPP_TRIVIAL_PAIR_COPY_CTOR=1' ],
|
||||
'conditions': [
|
||||
['llvm_version < "4.0"', {
|
||||
# Use this flag because on FreeBSD std::pairs copy constructor is non-trivial.
|
||||
# Doesn't apply to llvm 4.0 (FreeBSD 11.1) or later.
|
||||
# Refs: https://lists.freebsd.org/pipermail/freebsd-toolchain/2016-March/002094.html
|
||||
# Refs: https://svnweb.freebsd.org/ports/head/www/node/Makefile?revision=444555&view=markup
|
||||
'cflags': [ '-D_LIBCPP_TRIVIAL_PAIR_COPY_CTOR=1' ],
|
||||
}],
|
||||
],
|
||||
'ldflags': [
|
||||
'-Wl,--export-dynamic',
|
||||
],
|
||||
|
Loading…
x
Reference in New Issue
Block a user