Skip to content

Instantly share code, notes, and snippets.

@mikhdm
Forked from chaliy/Visual C++.sublime-build
Last active August 1, 2019 13:36
Show Gist options
  • Save mikhdm/10760478 to your computer and use it in GitHub Desktop.
Save mikhdm/10760478 to your computer and use it in GitHub Desktop.
Visual C++ build system for sublime text to exec and compile .c and .cpp files from Subime Text editor.
{
"cmd": ["vcvars32.bat", "&", "cl", "/EHsc", "${file}"],
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${file_path}",
"selector": "source.c, source.cpp, source.c++",
// By default cl is not in your PATH, so add it to your path (preferably)
// or uncomment "path" and check that it has correct value
//"path": "path:/to/folder/where/cl.exe/located",
// this also will set path for vcvars32.bat
"shell": true, // Without this sublime has hard times to parse "&" in out command line
"variants":
[
{
"name": "Run",
"cmd": ["vcvars32.bat", "&", "cl", "/EHsc", "${file}", "&", "${file_path}/${file_base_name}.exe"]
}
]
}
@vegetaz
Copy link

vegetaz commented Jan 18, 2017

ERROR: Cannot determine the location of the VS Common Tools folder.
Microsoft (R) C/C++ Optimizing Compiler Version 19.00.24215.1 for x86
Copyright (C) Microsoft Corporation. All rights reserved.

HelloWorld.cpp
D:_Cache\2017\Jan\17\HelloWorld.cpp(1): fatal error C1034: iostream: no include path set
[Finished in 0.3s]

Mine:
{
"cmd": ["vcvars32.bat", "&", "cl", "/EHsc", "${file}"],
"file_regex": "^(..[^:]):([0-9]+):?([0-9]+)?:? (.)$",
"working_dir": "${file_path}",
"selector": "source.c, source.cpp, source.c++",
// By default cl is not in your PATH, so add it to your path (preferably)
// or uncomment "path" and check that it has correct value
//"path": "path:/to/folder/where/cl.exe/located",
"path": "C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin",
// this also will set path for vcvars32.bat
"shell": true, // Without this sublime has hard times to parse "&" in out command line

"variants":
[
	{
		"name": "Run",
		"cmd": ["vcvars32.bat", "&", "cl", "/EHsc", "${file}", "&", "${file_path}/${file_base_name}.exe"]
	}
]

}

Any solution?

@hustc12
Copy link

hustc12 commented Jul 22, 2017

@vegetaz, exactly the same issue with you...

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