SublimeLinter-gcc
This linter plugin for SublimeLinter provides an interface to gcc or other gcc-like (cross-)compiler.
Details
Installs
- Total 20K
- Win 10K
- Mac 3K
- Linux 7K
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 3 | 2 | 1 | 10 | 4 | 0 | 1 | 0 | 0 | 3 | 3 | 5 | 3 | 1 | 4 | 7 | 4 | 4 | 4 | 1 | 4 | 4 | 2 | 5 | 1 | 8 | 2 | 4 | 4 | 9 | 2 | 10 | 2 | 5 | 2 | 4 | 1 | 2 | 5 | 3 | 6 | 5 | 7 | 4 | 0 | 3 |
Mac | 1 | 0 | 0 | 3 | 0 | 2 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 1 | 2 | 0 | 0 | 1 | 0 | 3 | 0 | 2 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 2 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
Linux | 0 | 0 | 0 | 1 | 0 | 3 | 0 | 0 | 0 | 2 | 2 | 1 | 1 | 0 | 1 | 3 | 0 | 3 | 1 | 0 | 1 | 1 | 0 | 2 | 3 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 4 | 2 | 1 | 2 | 1 | 6 | 0 | 3 | 2 | 0 |
Readme
- Source
- raw.githubusercontent.com
SublimeLinter-gcc
This linter plugin for SublimeLinter provides an interface to gcc or other gcc-like (cross-)compiler. It will be used with files that have the C/C++ syntax. If you are using clang, you may want to check SublimeLinter-clang.
Installation
SublimeLinter must be installed in order to use this plugin. If SublimeLinter is not installed, please follow the instructions here.
Linter installation
Before using this plugin, you must ensure that gcc
or other gcc-like compiler is installed on your system.
You may install gcc
with the following method:
- Mac OS X: OSX GCC Installer
- Linux:
gcc
could be installed by using most package managers. - Windows: MinGW-w64
Once gcc
is installed, you must ensure it is in your system PATH so that SublimeLinter can find it.
This may not be as straightforward as you think, so please read Debugging PATH problems in the documentation.
Plugin installation
Please use Package Control to install the linter plugin. This will ensure that the plugin will be updated when new versions are available. If you want to install from source so you can modify the source code, you probably know what you are doing so we won't cover that here.
To install via Package Control, do the following:
Within Sublime Text, bring up the
Command Palette
by Ctrl + Shift + P and typeinstall
. Among the commands you should seePackage Control: Install Package
. If that command is not highlighted, use the keyboard or mouse to select it. There will be a pause of a few seconds while Package Control fetches the list of available plugins.When the plugin list appears, type
gcc
. Among the entries you should seeSublimeLinter-gcc
. If that entry is not highlighted, use the keyboard or mouse to select it.
Settings
Here are some most frequently used custom settings.
Setting | Description |
---|---|
executable | The compiler's binary path. This is ["gcc"] or ["g++"] by default. If you are not using them, you have to set this to your compiler binary such as ["arm-none-eabi-gcc"] . |
I | A list of directories to be added to the header's searching paths. I.e., paths for -I flags. |
args | A list of extra flags to be passed to the compiler. These should be used carefully as they may cause linting to fail. |
Here is an example settings:
{
"linters":
{
"gcc": {
"disable": false,
"executable": ["gcc"],
"args": ["-fsyntax-only", "-std=c90"],
"I": [
"${file_path}/include",
"${folder}/include",
"/usr/local/include",
],
"excludes": [],
},
"g++": {
"disable": false,
"executable": ["g++"],
"args": ["-fsyntax-only", "-std=c++20"],
"I": [
"${file_path}/include",
"${folder}/include",
"/usr/local/include",
],
"excludes": [],
},
},
}
Here are some useful docs for SublimeLinter settings.
- General information on how SublimeLinter works with settings.
- Variables that can be used in settings.
- Information on generic linter settings.
Notes
Here is the official list of warning options in gcc 13.2.0. I prefer turn on all warnings via
-Wall
(this is default for this plugin) and then suppress unwanted warnings via-Wno-
prefix.Use the
-fsyntax-only
flag inargs
gives a much faster syntax-only checking but some warnings which are emitted in the code optimization phase would not be caught.
Demo
Troubleshooting
C/C++ linting is not always straightforward. A few things to try when there's (almost) no linting information available:
- Try to compile from the command line, and verify it works.
- The linter might be missing some header files. They can be added with settings
I
. - Sometimes gcc fails to locate the C/C++ standard library headers.
Assuming the compilation works when executed via command line, try to compile with g++ -v
.
This will display all of the hidden flags that gcc uses.
As a last resort, they can all be added in settings args
.
Contributing
If you would like to contribute enhancements or fixes, please do the following:
- Fork the plugin repository.
- Hack on a separate topic branch created from the latest
master
. - Commit and push the topic branch.
- Make sure your modification could pass unittests.
- Make a pull request.
- Be patient.
Please note that modifications should follow these coding guidelines:
- Indent is 4 spaces.
- Code should pass flake8 and pep257 linters.
- Probably format codes with black code formatter.
- Vertical whitespace helps readability, don’t be afraid to use it.
- Please use descriptive variable names, no abbreviations unless they are very well known.
Thank you for helping out!