How do I build 32-bit binaries on a 64-bit system using npm?

后端 未结 3 1228
我在风中等你
我在风中等你 2021-02-02 17:13

I\'m developing an application that I plan to distribute using node-webkit, which only has 32-bit binaries on Windows. My OS is Windows 7 Ultimate 64-bit, so npm is building 64-

3条回答
  •  长情又很酷
    2021-02-02 17:41

    You should be able to clone the repo into node_modules yourself and compile it manually using

    node-gyp clean configure build --verbose --arch=ia32
    

    inside the directory where you cloned the repo.

提交回复
热议问题