Compile Error -Windows

Hello,


I am trying to compile the code on windows ( using the command prompt) and i get this error.

I know that for windows the code is already compiled, but I need to recompile the code after adding some modifications .

Just to mention that these

errors appear in the original code and not the one I modified.

 

Any help would be much appreciated.

Comments

  • Hello, the error appears when you compile on Windows with a linux-based compiler like g++ because your system loads the functions for Windows but the compiler looks for the linux definitions.

    To fix that you have to compile on Windows using Miscrosoft Visual Studio 2022 (v143) (https://visualstudio.microsoft.com/) or compile on a linux host with g++. There is another alternaive using the toolchain MSYS2 (https://www.msys2.org/), which allows using g++ for Windows.

  • Thank you for your immediate response.

     

    I will try both.

Sign In or Register to comment.