You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Basically I got warnings messages "warning LNK4068: /MACHINE not specified" that made it default to X64 and thus error and failed compilation.
I fixed it by quickly modifying generated pdfium.vcxproj and adding /MACHINE:X86 by hand to
ups... actually this seems to be an issue of node-gyp. on what OS did you compile? with what node-gyp version? I think you should specify specific parameters if your os is 64 but want on x32
Well, actually I did npm install --arch=ia32 --msvs_version=2013 and then nw-gyp rebuild --arch=ia32 --target=0.12.3 --msvs_version=2013 so it should have set the /MACHINE:X86 in pdfium.gyp but it didn't.
Basically I got warnings messages "warning LNK4068: /MACHINE not specified" that made it default to X64 and thus error and failed compilation.
I fixed it by quickly modifying generated pdfium.vcxproj and adding /MACHINE:X86 by hand to
and to
It should instead probably be done in pdfium.gyp, so if you want to, you can fix it. :)
The text was updated successfully, but these errors were encountered: