> cmd.exe /X /C "lib /MACHINE:x64 /nologo /out:libclib-win64.lib > ...myobjfiles..." > fatal error LNK1112: module machine type 'X86' conflicts with target > machine type 'x64'
Grab the full cmd.exe line and try to execute it outside of Maven on your system from the right directory etc. I can nearly guarantee you will hit the same error. Assuming you do, then you need to start looking at why that "lib" command fails on one set of machines but passes on another. This has nothing to do with Maven. You need to ask this question on a Visual Studio Tools email list or something. The X86 and x64 stuff makes me think your builds are probably failing on 64-bit Windows but passing on 32-bit, or vice versa, or something related to that. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
