Skip to content

Instantly share code, notes, and snippets.

@dezashibi
Last active January 15, 2022 09:10
Show Gist options
  • Save dezashibi/5c2a1b1551311b58212f02ef5bf36f47 to your computer and use it in GitHub Desktop.
Save dezashibi/5c2a1b1551311b58212f02ef5bf36f47 to your computer and use it in GitHub Desktop.
make_exe.bat C release mode compiler for gcc in windows
@ECHO OFF
IF "%~1"=="" GOTO noargs
mingw32-gcc.exe -Wall -O2 -c %1.c -o %1.o
mingw32-g++.exe -o %1.exe %1.o -s
PAUSE
GOTO endprogram
:noargs
ECHO you should specify the c file without c extension
:endprogram
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment