Skip to content

Instantly share code, notes, and snippets.

@SeaniaTwix
Created July 19, 2020 09:53
Show Gist options
  • Save SeaniaTwix/a0aa57651a752c989ea096e96a3a7463 to your computer and use it in GitHub Desktop.
Save SeaniaTwix/a0aa57651a752c989ea096e96a3a7463 to your computer and use it in GitHub Desktop.
cc = vcc
# Configuration for the MS Visual Studio C/C++ compiler:
vcc.exe = "cl.exe"
vcc.linkerexe = "cl.exe"
# set the options for specific platforms:
vcc.options.always = "/nologo /EHsc"
vcc.options.linker = "/nologo /Zi /F33554432" # set the stack size to 32 MiB
vcc.options.debug = "/Zi /FS /Od /GZ /Ge"
vcc.options.speed = "/O2"
vcc.options.size = "/O1"
@SeaniaTwix
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment