GCC's -mwindows flag can be used to instruct the linker to create an executable using the IMAGE_SUBSYSTEM_WINDOWS_GUIWindows subsystem. There is no equivalent flagt for Linux executables and I do not yet know a way to instruct Clang to do the same (but asked on Stackoverflow).
GCC's
-mwindows
flag can be used to instruct the linker to create an executable using theIMAGE_SUBSYSTEM_WINDOWS_GUI
Windows subsystem. There is no equivalent flagt for Linux executables and I do not yet know a way to instruct Clang to do the same (but asked on Stackoverflow).