Problems with Dev-cpp [closed]

-1

I installed Dev-Cpp 5.5.1 and it shows an error like this when I try to compile:

  

"Failed to execute (and the file path)".

Can anyone help me with this?

I've tried version 4.9.9.2 and the same error occurs.

    
asked by anonymous 26.03.2014 / 17:02

1 answer

1

You are probably using Windows 32-bit and compiling for Windows 64-bit. Even though the compiler will run in 32 bits, the executable created will not work.

Try to select a 32bit profile in Tools > > Compiler Options. If it is not there, try the 'profile finder' button (the two yellow 'plus' signs). Another alternative is to try to pass -m32 to the compiler.

    
26.03.2014 / 18:42