mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00
src,test: further cleanup references to osx
PR-URL: https://github.com/nodejs/node/pull/53820 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
This commit is contained in:
parent
3a43e55a00
commit
cff7da7749
36 changed files with 48 additions and 48 deletions
|
@ -164,14 +164,14 @@ parser.add_argument("--fully-static",
|
|||
dest="fully_static",
|
||||
default=None,
|
||||
help="Generate an executable without external dynamic libraries. This "
|
||||
"will not work on OSX when using the default compilation environment")
|
||||
"will not work on macOS when using the default compilation environment")
|
||||
|
||||
parser.add_argument("--partly-static",
|
||||
action="store_true",
|
||||
dest="partly_static",
|
||||
default=None,
|
||||
help="Generate an executable with libgcc and libstdc++ libraries. This "
|
||||
"will not work on OSX when using the default compilation environment")
|
||||
"will not work on macOS when using the default compilation environment")
|
||||
|
||||
parser.add_argument("--enable-vtune-profiling",
|
||||
action="store_true",
|
||||
|
@ -1744,7 +1744,7 @@ def configure_openssl(o):
|
|||
def configure_static(o):
|
||||
if options.fully_static or options.partly_static:
|
||||
if flavor == 'mac':
|
||||
warn("Generation of static executable will not work on OSX "
|
||||
warn("Generation of static executable will not work on macOS "
|
||||
"when using the default compilation environment")
|
||||
return
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue