VS Code C++ Linter [closed] - c++

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I am using vs code to write my C++ code now. However, I don't know how to set up a C++ linter for my vs code environment. I find one called C++ advanced lint but its setting seems a little complicated and I spend a lot of time but still didn't get success. Want to ask someone who also using vs code to write c++ that which c++ linter do you use? and how to use it? Thanks.

I am using clang-tidy on ubuntu. First of all download it from package manager:
sudo apt-get install clang-tidy
Then install the clang-tidy extension in vscode (Clang-Tidy
notskm.clang-tidy).
Once installed click on the extension settings
Locate Clang-tidy: Checks, click on Edit in settings.json.
In your settings.json file will be generated this code:
"clang-tidy.checks": [
]
You can paste here the checks that you want to enable.
To see the available checks you can run this command from terminal:
clang-tidy --list-checks -checks='*'
For example you could take all the modernize checks, and you would end up with something like this:
"clang-tidy.checks": [
"modernize-*"
]
Save your settings.json and go to your code. When saving a file the linter should now tell you what are the problems in your code.

Related

Choosing an IDE that is capable of running source command [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I would like to use an IDE for debugging but prior to running the program (either debug or execute), I run a source command. So without any IDE, I run these commands in the terminal:
make
source foo.sh
./run my_args
OR
gdb --args ./run my_args
I tried to use Kdevelop, but I didn't find any way to tell Kdevelop to run that source command and then execute the command. I tried to use a wrapper but had no success.
So, I want to know what are the other IDE candidates. Any thoughts?
I guess you run source to change some envs? If this action can be done before make, you can just run source xxx.sh && kdevelop
Kdevelop has the ability to change envs before run/debug, just setting it in project configure.
Use an explicit bash -c command to run multiple things from a single command:
bash -c 'source foo.sh; ./run my_args'

Why is airmon-ng missing from my aircrack-ng installation? [closed]

Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 days ago.
Improve this question
So I've attempted to install the aircrack-ng library on my Mac. I've followed the instructions outlined by the aircrack-ng docs and by the README file on the Github repository. When I run,
aircrack-ng --help
I get the list of options, etc... like I should. But when I run,
airmon-ng
I get
zsh: command not found: airmon-ng
I've run both commands as root and in the aircrack-ng directory. I've tried installing both the stable version linked by the aircrack-ng docs and the version directly from Github. Other commands like airebase-ng and aircrack-ng work (at least they result in output), but for some reason airmon-ng doesn't. Also, inside the aircrack-ng directory, I found scripts named "aircrack-ng", "airbase-ing", etc... but there weren't any files named "airmon-ng." The commands I used in the setup were:
git clone https://github.com/aircrack-ng/aircrack-ng
cd aircrack-ng
autoreconf -i
./configure --with-experimental
I tried it once with
make
make install
and then repeated the whole process again and tried using
gmake
and both times I get the same error. I'm incredibly confused why airmon-ng appears to be missing. Any help is appreciated :) Thanks.
My bad, I finally found the answer in a similar StackOverflow question that actually got recommended to me since I asked this question.
The reality is that there is no airmon-ng command on the MacOS installation; I was looking for something that didn't exist. On MacOS, there's an alternative command called airport (that's built into the OS) that you can use instead.

How do I compile Qt Application under Manjaro KDE? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
Complete noob right here, I'm learning c++ and I saw some tutorial somewhere with instructions to compile the Qt application example from the command line, then I noticed the path from the tutorial was not correct, I want to learn how to compile Qt from command line, and maybe even do some makefiles to automate the process, at least I want to get started ...It seems like the qt libraries are already installed within my system since it is using the KDE desktop environment, but I don't know how should I link or what paths should I include as arguments. Please guide me, remember I'm a complety noob but I really want to learn.
This is the tutorial I'm talking about http://zetcode.com/gui/qt5/introduction/
When you build, Qt Creator does three things only: it invokes qmake, then make, then runs the target. That's all.
Suppose your project is in ~/src/project. Here's how you would build it properly using a shadow build folder:
$ mkdir -p ~/src/project-build
$ cd ~/src/project-build
$ qmake ~/src/project
$ make -j

Making an executable file out of a project/solution in VS2015 Community Edition (C++) [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I'm new and trying to get on learning the C++ language but have so far been unable to find how to create an executable file. And whenever I find even close to a solution (although I can no longer seem to find the site that I found one at) I cannot seem to find the tabs or sub tabs that they say to look under. If anyone versed in Visual Studio 2015 could help me find out how to do this it would be greatly appreciated.
You are looking for "Build" or "Build Solution".
And (most likely) you are working within a "Debug configuration", so the .EXE file will be buried in a "Debug" subdirectory of your Project's directory.
Building in Visual Studio

Compiling process for Qt [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
I'm attempting to get Qt setup to run a simple hello world example, but I can't get the compilation setup right for the IDE (QtCreator). When I attempt to build by pressing the build button, I am getting the following error message:
Qt creator needs a compiler setup to build. Configure a compiler in the kit options
So I noticed that I had nothing setup for the compiler. I then downloaded a MinGW compiler and it seems the IDE managed to recognize it automatically. Still, when I attempt to build I am getting the same error message.
The truth is that I really don't know the process of compilation either from the command line or in other IDEs. I've read that there might be an issue with paths? I'm running on Windows. I would be extremely grateful if someone could explain what I may be doing wrong and what issue I may be having with building in QtCreator.
You will need to do the following steps for QtCreator:
1) Go to Settings > Build and Run > Kits.
2) Check if the auto-detection is correct. It is probably not if you have issues, so you will need to either set up manually or rreinstall QtCreator to see if the problem goes away. If it is not detected, you will have a read exclamation mark.
3) Add a new Kit.
4) Type a name.
5) You need to choose the proper "Qt version".
6) You need to choose the compiler.
7) Select the "Make Default" option.
As for command line, you should be able to do something like this to build a simple dummy main.cpp:
main.cpp
int main() {}
and then you can run the following commands in the (msys/cygwin/etc) prompt:
qmake -project && qmake && make