Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows install of ODAS_WEB failing, not sure why #38

Open
MiloMindbender opened this issue Aug 27, 2019 · 7 comments
Open

Windows install of ODAS_WEB failing, not sure why #38

MiloMindbender opened this issue Aug 27, 2019 · 7 comments
Assignees

Comments

@MiloMindbender
Copy link

I installed nodejs v12 with the windows installer from the nodejs website (here https://nodejs.org/en/download/current/), cloned the repository but when I do the NPM install I get a ton of errors. Any idea why? windows output and the npm log attached.

This is on Windows 10 build 1803
windows.log
npm-debug.log

I've been a coder for a long time but have not worked with nodejs, so forgive me if this is a noob mistake.

@GodCed GodCed self-assigned this Aug 28, 2019
@GodCed
Copy link
Collaborator

GodCed commented Aug 28, 2019

Hi there, could you try checking out the v0.3 tag in the repo and try again?
I think I messed up a little and master is mismatched with the current release.

Make sure you installed the build essentials during Node.js installation.
You can run:
npm install --global windows-build-tools
in an admin Powershell to confirm. They'll be installed if they are not.

@MiloMindbender
Copy link
Author

Still not working for me...I did

git checkout v0.3
npm install --global windows-build-tools

Got some errors and warnings

PS C:\GitHubRepos\odas_web> npm install --global windows-build-tools
npm WARN engine [email protected]: wanted: {"node":">=8.0.0"} (current: {"node":"0.12.2","npm":"2.7.4"})
npm WARN engine [email protected]: wanted: {"node":">=8"} (current: {"node":"0.12.2","npm":"2.7.4"})
npm WARN engine [email protected]: wanted: {"node":">=4"} (current: {"node":"0.12.2","npm":"2.7.4"})
npm WARN engine [email protected]: wanted: {"node":">=6 <7 || >=8"} (current: {"node":"0.12.2","npm":"2.7.4"})
npm WARN engine [email protected]: wanted: {"node":">=6"} (current: {"node":"0.12.2","npm":"2.7.4"})
npm WARN engine [email protected]: wanted: {"node":">=8"} (current: {"node":"0.12.2","npm":"2.7.4"})
npm WARN engine [email protected]: wanted: {"node":">=4"} (current: {"node":"0.12.2","npm":"2.7.4"})
npm WARN engine [email protected]: wanted: {"node":">=4"} (current: {"node":"0.12.2","npm":"2.7.4"})
npm WARN engine [email protected]: wanted: {"node":">= 4"} (current: {"node":"0.12.2","npm":"2.7.4"})
npm WARN engine [email protected]: wanted: {"node":">=4"} (current: {"node":"0.12.2","npm":"2.7.4"})
npm WARN engine [email protected]: wanted: {"node":">=4"} (current: {"node":"0.12.2","npm":"2.7.4"})
npm WARN engine [email protected]: wanted: {"node":">=6"} (current: {"node":"0.12.2","npm":"2.7.4"})
npm WARN engine [email protected]: wanted: {"node":">=4"} (current: {"node":"0.12.2","npm":"2.7.4"})
npm WARN engine [email protected]: wanted: {"node":">=4"} (current: {"node":"0.12.2","npm":"2.7.4"})
npm WARN engine [email protected]: wanted: {"node":">=4"} (current: {"node":"0.12.2","npm":"2.7.4"})
npm WARN engine [email protected]: wanted: {"node":">= 4.0.0"} (current: {"node":"0.12.2","npm":"2.7.4"})
npm WARN engine [email protected]: wanted: {"node":">=6"} (current: {"node":"0.12.2","npm":"2.7.4"})
npm WARN engine [email protected]: wanted: {"node":">=4"} (current: {"node":"0.12.2","npm":"2.7.4"})
npm WARN engine [email protected]: wanted: {"node":">=6"} (current: {"node":"0.12.2","npm":"2.7.4"})

[email protected] postinstall C:\Users\gcorson\AppData\Roaming\npm\node_modules\windows-build-tools
node ./dist/index.js

C:\Users\gcorson\AppData\Roaming\npm\node_modules\windows-build-tools\dist\compatible.js:4
const { warn } = require('./logging');
^^^^^
SyntaxError: Use of const in strict mode.
at exports.runInThisContext (vm.js:73:16)
at Module._compile (module.js:443:25)
at Object.Module._extensions..js (module.js:478:10)
at Module.load (module.js:355:32)
at Function.Module._load (module.js:310:12)
at Module.require (module.js:365:17)
at require (module.js:384:17)
at Object. (C:\Users\gcorson\AppData\Roaming\npm\node_modules\windows-build-tools\dist\index.js:6:1)
at Module._compile (module.js:460:26)
at Object.Module._extensions..js (module.js:478:10)
npm ERR! Windows_NT 6.3.9600
npm ERR! argv "C:\Program Files (x86)\nodejs\\node.exe" "C:\Program Files (x86)\nodejs\node_modules\npm\bin\npm-cli.js" "install" "--global" "windows-build-tools"
npm ERR! node v0.12.2
npm ERR! npm v2.7.4
npm ERR! code ELIFECYCLE

npm ERR! [email protected] postinstall: node ./dist/index.js
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] postinstall script 'node ./dist/index.js'.
npm ERR! This is most likely a problem with the windows-build-tools package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! node ./dist/index.js
npm ERR! You can get their info via:
npm ERR! npm owner ls windows-build-tools
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR! C:\GitHubRepos\odas_web\npm-debug.log
PS C:\GitHubRepos\odas_web>

And similar errors as before when running npm install

Did I checkout the tag right? Should I delete the whole thing from my machine and start over?

I was able to install it on a Mac (record function does not work) but still no joy on the PC

@MiloMindbender
Copy link
Author

Is it having a problem with node.js v12? Looks like it's reading the version as 0.12.2 instead of 12.10.0 which is what I requested from the node.js website.

@GodCed
Copy link
Collaborator

GodCed commented Sep 5, 2019

Yes, this sure looks like it. I'm not too familiar with node on windows so I can't really help with your setup. node -v should show v12.

@MiloMindbender
Copy link
Author

node -v shows v0.12.2

Maybe a problem with the distribution at the node.js site?

@GodCed
Copy link
Collaborator

GodCed commented Sep 6, 2019

Maybe but I would be surprised. When I installed v12 from there for Windows testing I got the proper version installed. At this point I would try reinstalling node.

If v0.12 persist I would check with node issue tracker directly.

@wasdee
Copy link

wasdee commented May 14, 2021

hello from 2021, I faced similar a issue.

  • not yet install npm install --global windows-build-tools
  • build with node v15
  • clone from master branch

Error Log after npm install

npm install
npm ERR! code 1
npm ERR! path C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc
npm ERR! command failed
npm ERR! command C:\WINDOWS\system32\cmd.exe /d /s /c node-pre-gyp install --fallback-to-build --library=static_library
npm ERR! Building the projects in this solution one at a time. To enable parallel build, please add the "-m" switch.
npm ERR!   win_delay_load_hook.cc
npm ERR!   Generating code
npm ERR!   Previous IPDB not found, fall back to full compilation.
npm ERR!   All 1 functions were compiled because no usable IPDB/IOBJ from previous compilation was found.
npm ERR!   Finished generating code
npm ERR!   WINDOWS_BUILD_WARNING.vcxproj -> C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\Release\\WINDOWS_BUILD_WARNING.node
npm ERR!   err_data.c
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\third_party\boringssl\include\openssl\base.h(147,1): warning C4005: 'OPENSSL_VERSION_NUMBER': macro redefinition [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\AppData\Local\node-gyp\Cache\15.13.0\include\node\openssl\opensslv.h(42): message : see previous definition of 'OPENSSL_VERSION_NUMBER' [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\AppData\Local\node-gyp\Cache\15.13.0\include\node\openssl\e_os2.h(171,1): warning C4005: 'OPENSSL_EXPORT': macro redefinition [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\third_party\boringssl\include\openssl\base.h(182): message : see previous definition of 'OPENSSL_EXPORT' [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\AppData\Local\node-gyp\Cache\15.13.0\include\node\openssl\ossl_typ.h(91,26): error C2371: 'EVP_MD': redefinition; different basic types [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\third_party\boringssl\include\openssl\base.h(304): message : see declaration of 'EVP_MD' [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\AppData\Local\node-gyp\Cache\15.13.0\include\node\openssl\ossl_typ.h(92,30): error C2371: 'EVP_MD_CTX': redefinition; different basic types [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\third_party\boringssl\include\openssl\base.h(303): message : see declaration of 'EVP_MD_CTX' [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\AppData\Local\node-gyp\Cache\15.13.0\include\node\openssl\ossl_typ.h(100,34): error C2371: 'EVP_ENCODE_CTX': redefinition; different basic types [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\third_party\boringssl\include\openssl\base.h(308): message : see declaration of 'EVP_ENCODE_CTX' [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\AppData\Local\node-gyp\Cache\15.13.0\include\node\openssl\crypto.h(235,3): error C2371: 'CRYPTO_THREADID': redefinition; different basic types [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\third_party\boringssl\include\openssl\base.h(231): message : see declaration of 'CRYPTO_THREADID' [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(33,1): error C2118: negative subscript [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(34,1): error C2118: negative subscript [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(35,1): error C2118: negative subscript [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(36,1): error C2118: negative subscript [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(37,1): error C2118: negative subscript [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(38,1): error C2118: negative subscript [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(39,1): error C2118: negative subscript [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(40,1): error C2065: 'ERR_LIB_PKCS8': undeclared identifier [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(40,1): error C2057: expected constant expression [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(40,1): error C2466: cannot allocate an array of constant size 0 [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(41,1): error C2118: negative subscript [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(42,1): error C2118: negative subscript [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(43,1): error C2118: negative subscript [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(44,1): error C2118: negative subscript [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(45,1): error C2118: negative subscript [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(46,1): error C2118: negative subscript [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(47,1): error C2118: negative subscript [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(48,1): error C2118: negative subscript [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(49,1): error C2118: negative subscript [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(50,1): error C2065: 'ERR_LIB_DIGEST': undeclared identifier [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(50,1): error C2057: expected constant expression [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(50,1): error C2466: cannot allocate an array of constant size 0 [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(51,1): error C2065: 'ERR_LIB_CIPHER': undeclared identifier [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(51,1): error C2057: expected constant expression [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(51,1): error C2466: cannot allocate an array of constant size 0 [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(52,1): error C2065: 'ERR_LIB_HKDF': undeclared identifier [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(52,1): error C2057: expected constant expression [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(52,1): error C2466: cannot allocate an array of constant size 0 [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(53,1): error C2118: negative subscript [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(54,1): error C2065: 'ERR_NUM_LIBS': undeclared identifier [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(54,1): error C2057: expected constant expression [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\boringssl\err_data.c(54,1): error C2466: cannot allocate an array of constant size 0 [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\boringssl.vcxproj]
npm ERR!   alloc.cc
npm ERR!   atm.cc
npm ERR!   cpu_iphone.cc
npm ERR!   cpu_linux.cc
npm ERR!   cpu_posix.cc
npm ERR!   cpu_windows.cc
npm ERR!   env_linux.cc
npm ERR!   env_posix.cc
npm ERR!   env_windows.cc
npm ERR!   host_port.cc
npm ERR!   log.cc
npm ERR!   log_android.cc
npm ERR!   log_linux.cc
npm ERR!   log_posix.cc
npm ERR!   log_windows.cc
npm ERR!   mpscq.cc
npm ERR!   murmur_hash.cc
npm ERR!   string.cc
npm ERR!   string_posix.cc
npm ERR!   string_util_windows.cc
npm ERR!   string_windows.cc
npm ERR!   sync.cc
npm ERR!   sync_posix.cc
npm ERR!   sync_windows.cc
npm ERR!   time.cc
npm ERR!   time_posix.cc
npm ERR!   time_precise.cc
npm ERR!   time_windows.cc
npm ERR!   tls_pthread.cc
npm ERR!   tmpfile_msys.cc
npm ERR!   tmpfile_posix.cc
npm ERR!   tmpfile_windows.cc
npm ERR!   wrap_memcpy.cc
npm ERR!   arena.cc
npm ERR!   fork.cc
npm ERR!   global_config_env.cc
npm ERR!   thd_posix.cc
npm ERR!   thd_windows.cc
npm ERR!   basic_timers.cc
npm ERR!   stap_timers.cc
npm ERR!   win_delay_load_hook.cc
npm ERR!   gpr.vcxproj -> C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\Release\\libgpr.lib
npm ERR!   init.cc
npm ERR!   avl.cc
npm ERR!   backoff.cc
npm ERR!   channel_args.cc
npm ERR!   channel_stack.cc
npm ERR!   channel_stack_builder.cc
npm ERR!   channel_trace.cc
npm ERR!   channelz.cc
npm ERR!   channelz_registry.cc
npm ERR!   connected_channel.cc
npm ERR!   handshaker.cc
npm ERR!   handshaker_registry.cc
npm ERR!   status_util.cc
npm ERR!   compression.cc
npm ERR!   compression_args.cc
npm ERR!   compression_internal.cc
npm ERR!   message_compress.cc
npm ERR!   stream_compression.cc
npm ERR!   stream_compression_gzip.cc
npm ERR!   stream_compression_identity.cc
npm ERR!   stats.cc
npm ERR!   stats_data.cc
npm ERR!   format_request.cc
npm ERR!   httpcli.cc
npm ERR!   parser.cc
npm ERR!   buffer_list.cc
npm ERR!   call_combiner.cc
npm ERR!   cfstream_handle.cc
npm ERR!   combiner.cc
npm ERR!   endpoint.cc
npm ERR!   endpoint_cfstream.cc
npm ERR!   endpoint_pair_posix.cc
npm ERR!   endpoint_pair_uv.cc
npm ERR!   endpoint_pair_windows.cc
npm ERR!   error.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\iomgr\error_internal.h(58,12): warning C4200: nonstandard extension used: zero-sized array in struct/union [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\iomgr\error_internal.h(58,12): message : This member will be ignored by a defaulted constructor or copy/move assignment operator [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   error_cfstream.cc
npm ERR!   ev_epoll1_linux.cc
npm ERR!   ev_epollex_linux.cc
npm ERR!   ev_poll_posix.cc
npm ERR!   ev_posix.cc
npm ERR!   ev_windows.cc
npm ERR!   exec_ctx.cc
npm ERR!   executor.cc
npm ERR!   fork_posix.cc
npm ERR!   fork_windows.cc
npm ERR!   gethostname_fallback.cc
npm ERR!   gethostname_host_name_max.cc
npm ERR!   gethostname_sysconf.cc
npm ERR!   grpc_if_nametoindex_posix.cc
npm ERR!   grpc_if_nametoindex_unsupported.cc
npm ERR!   internal_errqueue.cc
npm ERR!   iocp_windows.cc
npm ERR!   iomgr.cc
npm ERR!   iomgr_custom.cc
npm ERR!   iomgr_internal.cc
npm ERR!   iomgr_posix.cc
npm ERR!   iomgr_posix_cfstream.cc
npm ERR!   iomgr_uv.cc
npm ERR!   iomgr_windows.cc
npm ERR!   is_epollexclusive_available.cc
npm ERR!   load_file.cc
npm ERR!   lockfree_event.cc
npm ERR!   polling_entity.cc
npm ERR!   pollset.cc
npm ERR!   pollset_custom.cc
npm ERR!   pollset_set.cc
npm ERR!   pollset_set_custom.cc
npm ERR!   pollset_set_windows.cc
npm ERR!   pollset_uv.cc
npm ERR!   pollset_windows.cc
npm ERR!   resolve_address.cc
npm ERR!   resolve_address_custom.cc
npm ERR!   resolve_address_posix.cc
npm ERR!   resolve_address_windows.cc
npm ERR!   resource_quota.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\iomgr\resource_quota.cc(943,71): warning C4146: unary minus operator applied to unsigned type, result still unsigned [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   sockaddr_utils.cc
npm ERR!   socket_factory_posix.cc
npm ERR!   socket_mutator.cc
npm ERR!   socket_utils_common_posix.cc
npm ERR!   socket_utils_linux.cc
npm ERR!   socket_utils_posix.cc
npm ERR!   socket_utils_uv.cc
npm ERR!   socket_utils_windows.cc
npm ERR!   socket_windows.cc
npm ERR!   tcp_client.cc
npm ERR!   tcp_client_cfstream.cc
npm ERR!   tcp_client_custom.cc
npm ERR!   tcp_client_posix.cc
npm ERR!   tcp_client_windows.cc
npm ERR!   tcp_custom.cc
npm ERR!   tcp_posix.cc
npm ERR!   tcp_server.cc
npm ERR!   tcp_server_custom.cc
npm ERR!   tcp_server_posix.cc
npm ERR!   tcp_server_utils_posix_common.cc
npm ERR!   tcp_server_utils_posix_ifaddrs.cc
npm ERR!   tcp_server_utils_posix_noifaddrs.cc
npm ERR!   tcp_server_windows.cc
npm ERR!   tcp_uv.cc
npm ERR!   tcp_windows.cc
npm ERR!   time_averaged_stats.cc
npm ERR!   timer.cc
npm ERR!   timer_custom.cc
npm ERR!   timer_generic.cc
npm ERR!   timer_heap.cc
npm ERR!   timer_manager.cc
npm ERR!   timer_uv.cc
npm ERR!   udp_server.cc
npm ERR!   unix_sockets_posix.cc
npm ERR!   unix_sockets_posix_noop.cc
npm ERR!   wakeup_fd_eventfd.cc
npm ERR!   wakeup_fd_nospecial.cc
npm ERR!   wakeup_fd_pipe.cc
npm ERR!   wakeup_fd_posix.cc
npm ERR!   json.cc
npm ERR!   json_reader.cc
npm ERR!   json_string.cc
npm ERR!   json_writer.cc
npm ERR!   b64.cc
npm ERR!   percent_encoding.cc
npm ERR!   slice.cc
npm ERR!   slice_buffer.cc
npm ERR!   slice_intern.cc
npm ERR!   slice_string_helpers.cc
npm ERR!   api_trace.cc
npm ERR!   byte_buffer.cc
npm ERR!   byte_buffer_reader.cc
npm ERR!   call.cc
npm ERR!   call_details.cc
npm ERR!   call_log_batch.cc
npm ERR!   channel.cc
npm ERR!   channel_init.cc
npm ERR!   channel_ping.cc
npm ERR!   channel_stack_type.cc
npm ERR!   completion_queue.cc
npm ERR!   completion_queue_factory.cc
npm ERR!   event_string.cc
npm ERR!   lame_client.cc
npm ERR!   metadata_array.cc
npm ERR!   server.cc
npm ERR!   validate_metadata.cc
npm ERR!   version.cc
npm ERR!   bdp_estimator.cc
npm ERR!   byte_stream.cc
npm ERR!   connectivity_state.cc
npm ERR!   error_utils.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\iomgr\error_internal.h(58,12): warning C4200: nonstandard extension used: zero-sized array in struct/union [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\iomgr\error_internal.h(58,12): message : This member will be ignored by a defaulted constructor or copy/move assignment operator [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   metadata.cc
npm ERR!   metadata_batch.cc
npm ERR!   pid_controller.cc
npm ERR!   static_metadata.cc
npm ERR!   status_conversion.cc
npm ERR!   status_metadata.cc
npm ERR!   timeout_encoding.cc
npm ERR!   transport.cc
npm ERR!   transport_op_string.cc
npm ERR!   uri_parser.cc
npm ERR!   trace.cc
npm ERR!   server_secure_chttp2.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   bin_decoder.cc
npm ERR!   bin_encoder.cc
npm ERR!   chttp2_plugin.cc
npm ERR!   chttp2_transport.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\ext\transport\chttp2\transport\internal.h(109,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   context_list.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\ext\transport\chttp2\transport\internal.h(109,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   flow_control.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\ext\transport\chttp2\transport\internal.h(109,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   frame_data.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\ext\transport\chttp2\transport\internal.h(109,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   frame_goaway.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\ext\transport\chttp2\transport\internal.h(109,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   frame_ping.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\ext\transport\chttp2\transport\internal.h(109,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   frame_rst_stream.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\ext\transport\chttp2\transport\internal.h(109,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   frame_settings.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\ext\transport\chttp2\transport\internal.h(109,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   frame_window_update.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\ext\transport\chttp2\transport\internal.h(109,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   hpack_encoder.cc
npm ERR!   hpack_parser.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\ext\transport\chttp2\transport\internal.h(109,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   hpack_table.cc
npm ERR!   http2_settings.cc
npm ERR!   huffsyms.cc
npm ERR!   incoming_metadata.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\ext\transport\chttp2\transport\internal.h(109,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   parsing.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\ext\transport\chttp2\transport\internal.h(109,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   stream_lists.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\ext\transport\chttp2\transport\internal.h(109,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   stream_map.cc
npm ERR!   varint.cc
npm ERR!   writing.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\ext\transport\chttp2\transport\internal.h(109,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\ext\transport\chttp2\transport\writing.cc(541,35): warning C4804: '>': unsafe use of type 'bool' in operation [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   alpn.cc
npm ERR!   http_client_filter.cc
npm ERR!   http_filters_plugin.cc
npm ERR!   message_compress_filter.cc
npm ERR!   http_server_filter.cc
npm ERR!   httpcli_security_connector.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   security_context.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   alts_credentials.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   composite_credentials.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   credentials.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   credentials_metadata.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   fake_credentials.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   credentials_generic.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   google_default_credentials.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   iam_credentials.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   json_token.cc
npm ERR!   jwt_credentials.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   jwt_verifier.cc
npm ERR!   local_credentials.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   oauth2_credentials.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   plugin_credentials.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   ssl_credentials.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\security_connector\ssl\ssl_security_connector.h(60,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   grpc_tls_credentials_options.cc
npm ERR!   spiffe_credentials.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   alts_security_connector.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   fake_security_connector.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   load_system_roots_fallback.cc
npm ERR!   load_system_roots_linux.cc
npm ERR!   local_security_connector.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   security_connector.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   ssl_security_connector.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\security_connector\ssl\ssl_security_connector.h(60,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   ssl_utils.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   spiffe_security_connector.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\security_connector\ssl\ssl_security_connector.h(60,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   client_auth_filter.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   secure_endpoint.cc
npm ERR!   security_handshaker.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   server_auth_filter.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   target_authority_table.cc
npm ERR!   tsi_error.cc
npm ERR!   json_util.cc
npm ERR!   init_secure.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   aes_gcm.cc
npm ERR!   gsec.cc
npm ERR!   alts_counter.cc
npm ERR!   alts_crypter.cc
npm ERR!   alts_frame_protector.cc
npm ERR!   alts_record_protocol_crypter_common.cc
npm ERR!   alts_seal_privacy_integrity_crypter.cc
npm ERR!   alts_unseal_privacy_integrity_crypter.cc
npm ERR!   frame_handler.cc
npm ERR!   alts_handshaker_client.cc
npm ERR!   alts_shared_resource.cc
npm ERR!   alts_tsi_handshaker.cc
npm ERR!   alts_grpc_integrity_only_record_protocol.cc
npm ERR!   alts_grpc_privacy_integrity_record_protocol.cc
npm ERR!   alts_grpc_record_protocol_common.cc
npm ERR!   alts_iovec_record_protocol.cc
npm ERR!   alts_zero_copy_grpc_protector.cc
npm ERR!   check_gcp_environment.cc
npm ERR!   check_gcp_environment_linux.cc
npm ERR!   check_gcp_environment_no_op.cc
npm ERR!   check_gcp_environment_windows.cc
npm ERR!   grpc_alts_credentials_client_options.cc
npm ERR!   grpc_alts_credentials_options.cc
npm ERR!   grpc_alts_credentials_server_options.cc
npm ERR!   alts_handshaker_service_api.cc
npm ERR!   alts_handshaker_service_api_util.cc
npm ERR!   alts_tsi_utils.cc
npm ERR!   transport_security_common_api.cc
npm ERR!   altscontext.pb.c
npm ERR!   handshaker.pb.c
npm ERR!   transport_security_common.pb.c
npm ERR!   pb_common.c
npm ERR!   pb_decode.c
npm ERR!   pb_encode.c
npm ERR!   transport_security.cc
npm ERR!   channel_create.cc
npm ERR!   channel_create_posix.cc
npm ERR!   authority.cc
npm ERR!   chttp2_connector.cc
npm ERR!   backup_poller.cc
npm ERR!   channel_connectivity.cc
npm ERR!   client_channel.cc
npm ERR!   client_channel_channelz.cc
npm ERR!   client_channel_factory.cc
npm ERR!   client_channel_plugin.cc
npm ERR!   connector.cc
npm ERR!   global_subchannel_pool.cc
npm ERR!   health_check_client.cc
npm ERR!   http_connect_handshaker.cc
npm ERR!   http_proxy.cc
npm ERR!   lb_policy.cc
npm ERR!   lb_policy_registry.cc
npm ERR!   local_subchannel_pool.cc
npm ERR!   parse_address.cc
npm ERR!   proxy_mapper.cc
npm ERR!   proxy_mapper_registry.cc
npm ERR!   resolver.cc
npm ERR!   resolver_registry.cc
npm ERR!   resolver_result_parsing.cc
npm ERR!   resolving_lb_policy.cc
npm ERR!   retry_throttle.cc
npm ERR!   server_address.cc
npm ERR!   service_config.cc
npm ERR!   subchannel.cc
npm ERR!   subchannel_pool_interface.cc
npm ERR!   deadline_filter.cc
npm ERR!   health.pb.c
npm ERR!   fake_transport_security.cc
npm ERR!   local_transport_security.cc
npm ERR!   ssl_session_boringssl.cc
npm ERR!   ssl_session_cache.cc
npm ERR!   ssl_session_openssl.cc
npm ERR!   ssl_transport_security.cc
npm ERR!   transport_security_grpc.cc
npm ERR!   chttp2_server.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\ext\transport\chttp2\transport\internal.h(109,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   secure_channel_create.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   server_chttp2.cc
npm ERR!   server_chttp2_posix.cc
npm ERR!   inproc_plugin.cc
npm ERR!   inproc_transport.cc
npm ERR!   client_load_reporting_filter.cc
npm ERR!   grpclb.cc
npm ERR!   grpclb_channel_secure.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   grpclb_client_stats.cc
npm ERR!   load_balancer_api.cc
npm ERR!   fake_resolver.cc
npm ERR!   duration.pb.c
npm ERR!   timestamp.pb.c
npm ERR!   load_balancer.pb.c
npm ERR!   xds.cc
npm ERR!   xds_channel_secure.cc
npm ERR! C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\deps\grpc\src\core\lib\security\credentials\credentials.h(155,16): warning C5208: unnamed class used in typedef name cannot declare members other than non-static data members, member enumerations, or member classes [C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\grpc.vcxproj]
npm ERR!   xds_client_stats.cc
npm ERR!   xds_load_balancer_api.cc
npm ERR!   pick_first.cc
npm ERR!   round_robin.cc
npm ERR!   dns_resolver_ares.cc
npm ERR!   grpc_ares_ev_driver.cc
npm ERR!   grpc_ares_ev_driver_libuv.cc
npm ERR!   grpc_ares_ev_driver_posix.cc
npm ERR!   grpc_ares_ev_driver_windows.cc
npm ERR!   grpc_ares_wrapper.cc
npm ERR!   grpc_ares_wrapper_fallback.cc
npm ERR!   grpc_ares_wrapper_libuv.cc
npm ERR!   grpc_ares_wrapper_posix.cc
npm ERR!   grpc_ares_wrapper_windows.cc
npm ERR!   dns_resolver_selection.cc
npm ERR!   dns_resolver.cc
npm ERR!   sockaddr_resolver.cc
npm ERR!   grpc_context.cc
npm ERR!   max_age_filter.cc
npm ERR!   message_size_filter.cc
npm ERR!   client_authority_filter.cc
npm ERR!   workaround_cronet_compression_filter.cc
npm ERR!   workaround_utils.cc
npm ERR!   grpc_plugin_registry.cc
npm ERR!   win_delay_load_hook.cc
npm ERR!   grpc.vcxproj -> C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\Release\\libgrpc.lib
npm ERR!   adler32.c
npm ERR!   compress.c
npm ERR!   crc32.c
npm ERR!   deflate.c
npm ERR!   gzclose.c
npm ERR!   gzlib.c
npm ERR!   gzread.c
npm ERR!   gzwrite.c
npm ERR!   infback.c
npm ERR!   inffast.c
npm ERR!   inflate.c
npm ERR!   inftrees.c
npm ERR!   trees.c
npm ERR!   uncompr.c
npm ERR!   zutil.c
npm ERR!   win_delay_load_hook.cc
npm ERR!   z.vcxproj -> C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\build\Release\\libz.lib
npm ERR! Failed to execute 'C:\Program Files\nodejs\node.exe C:\Users\lifep\AppData\Roaming\nvm\v15.13.0\node_modules\npm\node_modules\node-gyp\bin\node-gyp.js build --fallback-to-build --library=static_library --module=C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\src\node\extension_binary\node-v88-win32-x64-unknown\grpc_node.node --module_name=grpc_node --module_path=C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\src\node\extension_binary\node-v88-win32-x64-unknown --napi_version=8 --node_abi_napi=napi --napi_build_version=0 --node_napi_label=node-v88' (1)
npm ERR! node-pre-gyp info it worked if it ends with ok
npm ERR! node-pre-gyp info using [email protected]
npm ERR! node-pre-gyp info using [email protected] | win32 | x64
npm ERR! node-pre-gyp WARN Using request for node-pre-gyp https download
npm ERR! node-pre-gyp info check checked for "C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\src\node\extension_binary\node-v88-win32-x64-unknown\grpc_node.node" (not found)
npm ERR! node-pre-gyp http GET https://node-precompiled-binaries.grpc.io/grpc/v1.21.1/node-v88-win32-x64-unknown.tar.gz
npm ERR! node-pre-gyp http 404 https://node-precompiled-binaries.grpc.io/grpc/v1.21.1/node-v88-win32-x64-unknown.tar.gz
npm ERR! node-pre-gyp WARN Tried to download(404): https://node-precompiled-binaries.grpc.io/grpc/v1.21.1/node-v88-win32-x64-unknown.tar.gz
npm ERR! node-pre-gyp WARN Pre-built binaries not found for [email protected] and [email protected] (node-v88 ABI, unknown) (falling back to source compile with node-gyp)
npm ERR! node-pre-gyp http 404 status code downloading tarball https://node-precompiled-binaries.grpc.io/grpc/v1.21.1/node-v88-win32-x64-unknown.tar.gz
npm ERR! gyp info it worked if it ends with ok
npm ERR! gyp info using [email protected]
npm ERR! gyp info using [email protected] | win32 | x64
npm ERR! gyp info ok
npm ERR! gyp info it worked if it ends with ok
npm ERR! gyp info using [email protected]
npm ERR! gyp info using [email protected] | win32 | x64
npm ERR! gyp info find Python using Python version 3.8.5 found at "C:\Users\lifep\anaconda3\python.exe"
npm ERR! gyp info find VS using VS2019 (16.9.31229.75) found at:
npm ERR! gyp info find VS "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community"
npm ERR! gyp info find VS run with --verbose for detailed information
npm ERR! gyp info spawn C:\Users\lifep\anaconda3\python.exe
npm ERR! gyp info spawn args [
npm ERR! gyp info spawn args   'C:\\Users\\lifep\\AppData\\Roaming\\nvm\\v15.13.0\\node_modules\\npm\\node_modules\\node-gyp\\gyp\\gyp_main.py',
npm ERR! gyp info spawn args   'binding.gyp',
npm ERR! gyp info spawn args   '-f',
npm ERR! gyp info spawn args   'msvs',
npm ERR! gyp info spawn args   '-I',
npm ERR! gyp info spawn args   'C:\\Users\\lifep\\Documents\\GitHub\\odas_web\\node_modules\\grpc\\build\\config.gypi',
npm ERR! gyp info spawn args   '-I',
npm ERR! gyp info spawn args   'C:\\Users\\lifep\\AppData\\Roaming\\nvm\\v15.13.0\\node_modules\\npm\\node_modules\\node-gyp\\addon.gypi',
npm ERR! gyp info spawn args   '-I',
npm ERR! gyp info spawn args   'C:\\Users\\lifep\\AppData\\Local\\node-gyp\\Cache\\15.13.0\\include\\node\\common.gypi',
npm ERR! gyp info spawn args   '-Dlibrary=shared_library',
npm ERR! gyp info spawn args   '-Dvisibility=default',
npm ERR! gyp info spawn args   '-Dnode_root_dir=C:\\Users\\lifep\\AppData\\Local\\node-gyp\\Cache\\15.13.0',
npm ERR! gyp info spawn args   '-Dnode_gyp_dir=C:\\Users\\lifep\\AppData\\Roaming\\nvm\\v15.13.0\\node_modules\\npm\\node_modules\\node-gyp',
npm ERR! gyp info spawn args   '-Dnode_lib_file=C:\\\\Users\\\\lifep\\\\AppData\\\\Local\\\\node-gyp\\\\Cache\\\\15.13.0\\\\<(target_arch)\\\\node.lib',
npm ERR! gyp info spawn args   '-Dmodule_root_dir=C:\\Users\\lifep\\Documents\\GitHub\\odas_web\\node_modules\\grpc',
npm ERR! gyp info spawn args   '-Dnode_engine=v8',
npm ERR! gyp info spawn args   '--depth=.',
npm ERR! gyp info spawn args   '--no-parallel',
npm ERR! gyp info spawn args   '--generator-output',
npm ERR! gyp info spawn args   'C:\\Users\\lifep\\Documents\\GitHub\\odas_web\\node_modules\\grpc\\build',
npm ERR! gyp info spawn args   '-Goutput_dir=.'
npm ERR! gyp info spawn args ]
npm ERR! gyp info ok
npm ERR! gyp info it worked if it ends with ok
npm ERR! gyp info using [email protected]
npm ERR! gyp info using [email protected] | win32 | x64
npm ERR! gyp info spawn C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Current\Bin\MSBuild.exe
npm ERR! gyp info spawn args [
npm ERR! gyp info spawn args   'build/binding.sln',
npm ERR! gyp info spawn args   '/clp:Verbosity=minimal',
npm ERR! gyp info spawn args   '/nologo',
npm ERR! gyp info spawn args   '/p:Configuration=Release;Platform=x64'
npm ERR! gyp info spawn args ]
npm ERR! gyp ERR! build error
npm ERR! gyp ERR! stack Error: `C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Current\Bin\MSBuild.exe` failed with exit code: 1
npm ERR! gyp ERR! stack     at ChildProcess.onExit (C:\Users\lifep\AppData\Roaming\nvm\v15.13.0\node_modules\npm\node_modules\node-gyp\lib\build.js:194:23)
npm ERR! gyp ERR! stack     at ChildProcess.emit (node:events:369:20)
npm ERR! gyp ERR! stack     at Process.ChildProcess._handle.onexit (node:internal/child_process:290:12)
npm ERR! gyp ERR! System Windows_NT 10.0.19042
npm ERR! gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\Users\\lifep\\AppData\\Roaming\\nvm\\v15.13.0\\node_modules\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js" "build" "--fallback-to-build" "--library=static_library" "--module=C:\\Users\\lifep\\Documents\\GitHub\\odas_web\\node_modules\\grpc\\src\\node\\extension_binary\\node-v88-win32-x64-unknown\\grpc_node.node" "--module_name=grpc_node" "--module_path=C:\\Users\\lifep\\Documents\\GitHub\\odas_web\\node_modules\\grpc\\src\\node\\extension_binary\\node-v88-win32-x64-unknown" "--napi_version=8" "--node_abi_napi=napi" "--napi_build_version=0" "--node_napi_label=node-v88"
npm ERR! gyp ERR! cwd C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc
npm ERR! gyp ERR! node -v v15.13.0
npm ERR! gyp ERR! node-gyp -v v7.1.2
npm ERR! gyp ERR! not ok
npm ERR! node-pre-gyp ERR! build error
npm ERR! node-pre-gyp ERR! stack Error: Failed to execute 'C:\Program Files\nodejs\node.exe C:\Users\lifep\AppData\Roaming\nvm\v15.13.0\node_modules\npm\node_modules\node-gyp\bin\node-gyp.js build --fallback-to-build --library=static_library --module=C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\src\node\extension_binary\node-v88-win32-x64-unknown\grpc_node.node --module_name=grpc_node --module_path=C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\src\node\extension_binary\node-v88-win32-x64-unknown --napi_version=8 --node_abi_napi=napi --napi_build_version=0 --node_napi_label=node-v88' (1)
npm ERR! node-pre-gyp ERR! stack     at ChildProcess.<anonymous> (C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc\node_modules\node-pre-gyp\lib\util\compile.js:83:29)
npm ERR! node-pre-gyp ERR! stack     at ChildProcess.emit (node:events:369:20)
npm ERR! node-pre-gyp ERR! stack     at maybeClose (node:internal/child_process:1067:16)
npm ERR! node-pre-gyp ERR! stack     at Process.ChildProcess._handle.onexit (node:internal/child_process:301:5)
npm ERR! node-pre-gyp ERR! System Windows_NT 10.0.19042
npm ERR! node-pre-gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\Users\\lifep\\Documents\\GitHub\\odas_web\\node_modules\\grpc\\node_modules\\node-pre-gyp\\bin\\node-pre-gyp" "install" "--fallback-to-build" "--library=static_library"
npm ERR! node-pre-gyp ERR! cwd C:\Users\lifep\Documents\GitHub\odas_web\node_modules\grpc
npm ERR! node-pre-gyp ERR! node -v v15.13.0
npm ERR! node-pre-gyp ERR! node-pre-gyp -v v0.13.0
npm ERR! node-pre-gyp ERR! not ok

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\lifep\AppData\Local\npm-cache\_logs\2021-05-14T09_21_58_259Z-debug.log

I am following the recommend actions.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants