0

デフォルトでリリースとしてモジュールをコンパイルしようとしています。buinding.gypに設定しました。

  'target_defaults': {
    'default_configuration': 'Release'
   },

しかし、常にBuildType="Debug"として取得しました

gyp info it worked if it ends with ok
gyp info using node-gyp@0.8.4
gyp info using node@0.8.12 | linux | x64
gyp info spawn make
gyp info spawn args [ 'BUILDTYPE=Debug', '-C', 'build' ]
make: Entering directory `/home/ammarch/colaboration/node-webworker-threads/build'
make: Nothing to be done for `all'.
make: Leaving directory `/home/ammarch/colaboration/node-webworker-threads/build'
gyp info ok 
4

1 に答える 1

0

package.jsonを確認してくださいscripts

あなたが--debugそこにいるなら、これはとにかくデバッグビルドを強制します。

"scripts": {
  "install": "node-gyp --debug rebuild",
  "test": "mocha tests"
},

削除--debugすると修正されます。

于 2013-02-27T19:21:46.600 に答える