You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Shouldn't the operator be or instead of and? From what I understand SmartOS can't handle thin archives so they should be disabled whatever the build target is.
The text was updated successfully, but these errors were encountered:
standalone_static_library is only relevant when building a static archive. gyp raises an error when you try to enable it for a non-static library build, hence the and.
This makes it inconvenient to distribute Node.js as a prebuilt static library for embedders.
Based on what I learned from #7957 (comment), thin archives save space and compilation time, and they are turned off if the build target is a static library and the OS is solaris.
Shouldn't the operator be
or
instead ofand
? From what I understand SmartOS can't handle thin archives so they should be disabled whatever the build target is.The text was updated successfully, but these errors were encountered: