clion

Installing MinGW-w64-x86 64-gdb-8.3.1 on MSYS2

Installed the CLion IDE. I put the toolchain as a starter kit for the work. By default, the gdb-9.1- debugger is installed, a ... ly specified package gdb.exe from c:\msys64\usr\bin\ just doesn't perceive it. What am I doing wrong and what should I do? :)

How to view values from std::vector in the Visual Studio 2019 debugger?

There is the simplest code: #include <iostream> #include <vector> int main() { std::vector<int> v {0, ... , and how do I make it display useful information to me, and not the details of the internal implementation of the container?

CMakeLists.txt | Help compile the c++source code

There are source codes, as I understand it, in C++ https://github.com/fossephate/JoyCon-Driver I want to build an "exe-shnik" ... were specified in some other way. If anyone understands, please help me, how to fill in this file so that the program starts?

The maximum number of threads in C++ OpenMP is always 1

We set the task to write a couple of algorithms in C++ using OpenMP. Since I have a Macbook, I had to install the Clion IDE a ... o set it. I must say that I have not worked with C++ or C ++ before. OpenMP. OS: macOS Catalina Beta Version 10.15.6 (19G36e)

Did I set up the project correctly with the MinGW compiler (CLion)

Installed MinGW via msys2: compiler pacman -S mingw-w64-x86_64-gcc make pacman -S mingw-w64-x86_64-make gdb. Added path ... double x; std::cin >> x; std::cout << "Hello, World! " << x << std::endl; return 0; }

Problems with CLion compilation

I installed gcc compiler, but there are problems with compilation, I attach a log file. -- The C compiler identification is ... њРеС...Р°РеР"/AppData/Local/Temp/cmake_check_environment/_build7259772169542546870/CMakeFiles/CMakeError.log". Error code: 1

Analog of getch() when using gcc

The bottom line: I used to use Visual Studio 2015, in it, I connect the conio library. h I used the _getch () function. Now I ... t to get a keyboard symbol by pressing a key. getchar() returns only the character code. Sticking to pure C without using C++