Guest User

Untitled

a guest
Feb 17th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.99 KB | None | 0 0
  1. {
  2. "targets": [
  3. {
  4. "target_name": "hello",
  5. "sources": [ "./hello.cc" ],
  6. "cflags_cc": [ "-mavx2" ]
  7. }
  8. ]
  9. }
  10.  
  11. ~/WebstormProjects/shiningExample  node-gyp rebuild --verbose
  12. gyp info it worked if it ends with ok
  13. gyp verb cli [ '/Users/andrey/.nvm/versions/node/v10.15.0/bin/node',
  14. gyp verb cli '/usr/local/bin/node-gyp',
  15. gyp verb cli 'rebuild',
  16. gyp verb cli '--verbose' ]
  17. gyp info using node-gyp@3.8.0
  18. gyp info using node@10.15.0 | darwin | x64
  19. gyp verb command rebuild []
  20. gyp verb command clean []
  21. gyp verb clean removing "build" directory
  22. gyp verb command configure []
  23. gyp verb check python checking for Python executable "python2" in the PATH
  24. gyp verb `which` succeeded python2 /usr/local/bin/python2
  25. gyp verb check python version `/usr/local/bin/python2 -c "import sys; print "2.7.15
  26. gyp verb check python version .%s.%s" % sys.version_info[:3];"` returned: %j
  27. gyp verb get node dir no --target version specified, falling back to host node version: 10.15.0
  28. gyp verb command install [ '10.15.0' ]
  29. gyp verb install input version string "10.15.0"
  30. gyp verb install installing version: 10.15.0
  31. gyp verb install --ensure was passed, so won't reinstall if already installed
  32. gyp verb install version is already installed, need to check "installVersion"
  33. gyp verb got "installVersion" 9
  34. gyp verb needs "installVersion" 9
  35. gyp verb install version is good
  36. gyp verb get node dir target node version installed: 10.15.0
  37. gyp verb build dir attempting to create "build" dir: /Users/andrey/WebstormProjects/shiningExample/build
  38. gyp verb build dir "build" dir needed to be created? /Users/andrey/WebstormProjects/shiningExample/build
  39. gyp verb build/config.gypi creating config file
  40. gyp verb build/config.gypi writing out config file: /Users/andrey/WebstormProjects/shiningExample/build/config.gypi
  41. gyp verb config.gypi checking for gypi file: /Users/andrey/WebstormProjects/shiningExample/config.gypi
  42. gyp verb common.gypi checking for gypi file: /Users/andrey/WebstormProjects/shiningExample/common.gypi
  43. gyp verb gyp gyp format was not specified; forcing "make"
  44. gyp info spawn /usr/local/bin/python2
  45. gyp info spawn args [ '/Users/andrey/.config/yarn/global/node_modules/node-gyp/gyp/gyp_main.py',
  46. gyp info spawn args 'binding.gyp',
  47. gyp info spawn args '-f',
  48. gyp info spawn args 'make',
  49. gyp info spawn args '-I',
  50. gyp info spawn args '/Users/andrey/WebstormProjects/shiningExample/build/config.gypi',
  51. gyp info spawn args '-I',
  52. gyp info spawn args '/Users/andrey/.config/yarn/global/node_modules/node-gyp/addon.gypi',
  53. gyp info spawn args '-I',
  54. gyp info spawn args '/Users/andrey/.node-gyp/10.15.0/include/node/common.gypi',
  55. gyp info spawn args '-Dlibrary=shared_library',
  56. gyp info spawn args '-Dvisibility=default',
  57. gyp info spawn args '-Dnode_root_dir=/Users/andrey/.node-gyp/10.15.0',
  58. gyp info spawn args '-Dnode_gyp_dir=/Users/andrey/.config/yarn/global/node_modules/node-gyp',
  59. gyp info spawn args '-Dnode_lib_file=/Users/andrey/.node-gyp/10.15.0/<(target_arch)/node.lib',
  60. gyp info spawn args '-Dmodule_root_dir=/Users/andrey/WebstormProjects/shiningExample',
  61. gyp info spawn args '-Dnode_engine=v8',
  62. gyp info spawn args '--depth=.',
  63. gyp info spawn args '--no-parallel',
  64. gyp info spawn args '--generator-output',
  65. gyp info spawn args 'build',
  66. gyp info spawn args '-Goutput_dir=.' ]
  67. gyp verb command build []
  68. gyp verb build type Release
  69. gyp verb architecture x64
  70. gyp verb node dev dir /Users/andrey/.node-gyp/10.15.0
  71. gyp verb `which` succeeded for `make` /usr/bin/make
  72. gyp info spawn make
  73. gyp info spawn args [ 'V=1', 'BUILDTYPE=Release', '-C', 'build' ]
  74. c++ '-DNODE_GYP_MODULE_NAME=hello' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DBUILDING_NODE_EXTENSION' -I/Users/andrey/.node-gyp/10.15.0/include/node -I/Users/andrey/.node-gyp/10.15.0/src -I/Users/andrey/.node-gyp/10.15.0/deps/openssl/config -I/Users/andrey/.node-gyp/10.15.0/deps/openssl/openssl/include -I/Users/andrey/.node-gyp/10.15.0/deps/uv/include -I/Users/andrey/.node-gyp/10.15.0/deps/zlib -I/Users/andrey/.node-gyp/10.15.0/deps/v8/include -Os -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=gnu++1y -stdlib=libc++ -fno-rtti -fno-exceptions -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/hello/hello.o.d.raw -c -o Release/obj.target/hello/hello.o ../hello.cc
  75. c++ -bundle -undefined dynamic_lookup -Wl,-no_pie -Wl,-search_paths_first -mmacosx-version-min=10.7 -arch x86_64 -L./Release -stdlib=libc++ -o Release/hello.node Release/obj.target/hello/hello.o
  76. gyp info ok
  77.  
  78. ~/WebstormProjects/shiningExample  node-gyp -v
  79. v3.8.0
  80. ~/WebstormProjects/shiningExample  node -v
  81. v10.15.0
  82. ~/WebstormProjects/shiningExample  c++ -v
  83. Apple LLVM version 9.1.0 (clang-902.0.39.2)
  84. Target: x86_64-apple-darwin17.7.0
  85. Thread model: posix
  86. InstalledDir: /Library/Developer/CommandLineTools/usr/bin
  87. Found CUDA installation: /usr/local/cuda, version unknown
Add Comment
Please, Sign In to add comment