[c++] How to compile for Windows on Linux with gcc/g++?

Install a cross compiler, like mingw64 from your package manager. Then compile in the following way: instead of simply calling gcc call i686-w64-mingw32-gcc for 32-bit Windows or x86_64-w64-mingw32-gcc" for 64-bit Windows. I would also use the --static option, as the target system may not have all the libraries.

If you want to compile other language, like Fortran, replace -gcc with -gfortran in the previous commands.

Examples related to c++

Method Call Chaining; returning a pointer vs a reference? How can I tell if an algorithm is efficient? Difference between opening a file in binary vs text How can compare-and-swap be used for a wait-free mutual exclusion for any shared data structure? Install Qt on Ubuntu #include errors detected in vscode Cannot open include file: 'stdio.h' - Visual Studio Community 2017 - C++ Error How to fix the error "Windows SDK version 8.1" was not found? Visual Studio 2017 errors on standard headers How do I check if a Key is pressed on C++

Examples related to opengl

Drawing Circle with OpenGL How do you install GLUT and OpenGL in Visual Studio 2012? How to fix this Error: #include <gl/glut.h> "Cannot open source file gl/glut.h" How to draw text using only OpenGL methods? glm rotate usage in Opengl Creating a 3D sphere in Opengl using Visual C++ How to get the GL library/headers? How to use glOrtho() in OpenGL? How to debug a GLSL shader? How to compile for Windows on Linux with gcc/g++?

Examples related to gcc

Can't compile C program on a Mac after upgrade to Mojave Compiling an application for use in highly radioactive environments Make Error 127 when running trying to compile code How to Install gcc 5.3 with yum on CentOS 7.2? How does one set up the Visual Studio Code compiler/debugger to GCC? How do I set up CLion to compile and run? CMake error at CMakeLists.txt:30 (project): No CMAKE_C_COMPILER could be found How to printf a 64-bit integer as hex? Differences between arm64 and aarch64 Fatal error: iostream: No such file or directory in compiling C program using GCC

Examples related to glut

How do you install GLUT and OpenGL in Visual Studio 2012? How to compile for Windows on Linux with gcc/g++?

Examples related to freeglut

How to compile for Windows on Linux with gcc/g++?