-
Notifications
You must be signed in to change notification settings - Fork 13
Closed as not planned
Description
From binding.gyp
, there are only following conditions:
['OS=="mac"', {
"sources": [
"src/macos/PolicyWatcher.cc",
],
"defines": [
"MACOS",
],
"xcode_settings": {
"GCC_ENABLE_CPP_EXCEPTIONS": "YES"
}
}],
['OS=="mac" and target_arch=="arm64"', {
"xcode_settings": {
"ARCHS": ["arm64"]
}
}],
['OS=="linux"' or 'OS'=="AIX", {
"sources": [
"src/linux/PolicyWatcher.cc",
],
"defines": [
"LINUX",
],
"libraries": [
"userenv.lib"
]
}],
["OS=='win'", {
// ...
}]
As you can see, there is no AIX
support.
Metadata
Metadata
Assignees
Labels
No labels