Machine Type Conflicts

Started by
0 comments, last by Nypyren 16 years, 11 months ago
Hello, I just would like to ask the solution to the problem: Linking.. libc.lib(chkstk.obj) : fatal error LNK1112: module machine type 'x64' conflicts with target machine type 'X86' Please help me.. thanks.. :|
Advertisement
For some reason you're trying to link a 64-bit static library into a 32-bit EXE.

Solution: Find a 32-bit version of the static library, or switch your options so that you build a 64-bit EXE.

This topic is closed to new replies.

Advertisement