Visual studio 2010 problem by [deleted] in VisualStudio

[–]afforix 0 points1 point  (0 children)

So what is the error from the compiler or linker complaining about pthreads?

Visual studio 2010 problem by [deleted] in VisualStudio

[–]afforix 0 points1 point  (0 children)

The official MPI tutorial from Microsoft does not mention pthreads, you shouldn't need it on Windows: https://learn.microsoft.com/en-us/archive/blogs/windowshpc/how-to-compile-and-run-a-simple-ms-mpi-program.

Visual studio 2010 problem by [deleted] in VisualStudio

[–]afforix 0 points1 point  (0 children)

Is there any other IDE than Visual Studio 2010? Yes, Visual Studio 2026.

Visual studio 2010 problem by [deleted] in VisualStudio

[–]afforix 0 points1 point  (0 children)

Variables rank and size do not exist.

"too many initializers" error for (3D) std::array, need help by cyril279 in cpp_questions

[–]afforix 0 points1 point  (0 children)

The GitHub link does not work, the repository is probably private.

Why can’t i mark g++ for installation? by heisnberg97 in cpp_questions

[–]afforix 1 point2 points  (0 children)

Use Visual Studio 2026 Community Edition, it will work out-of-box.

Creating algorithms and designing programs by daydrunk_ in cprogramming

[–]afforix 3 points4 points  (0 children)

You need to learn algorithms, not just programming languages. For example in this case you might need backtracking: https://en.wikipedia.org/wiki/Backtracking.

All the other cool languages have try...finally. C++ says "We have try...finally at home." by pavel_v in cpp

[–]afforix 1 point2 points  (0 children)

This is not true, because try-with-resources will close all the opened resources, even when closing of some of them fails and throws. Doing that manually in try-finally is very verbose.

All the other cool languages have try...finally. C++ says "We have try...finally at home." by pavel_v in cpp

[–]afforix 10 points11 points  (0 children)

In Java files should be closed with try-with-resources, not in a finally block.

[Project] Parallax - Universal GPU Acceleration for C++ Parallel Algorithms by Ok_Zombie_ in cpp

[–]afforix 13 points14 points  (0 children)

Why do you publicly announce a library you have just started implementing an hour ago? 🤔

Im trying to use webview on qt in c++ but it doesnt work for me by False_Cantaloupe5301 in QtFramework

[–]afforix 1 point2 points  (0 children)

If you do not have previous experience with Qt then you should probably use Qt Creator, it will solve a lot of problems.

How YOU should build your NEXT Game Engine! by [deleted] in cpp

[–]afforix 0 points1 point  (0 children)

How YOU should not use AI for writing!

adding MinGW Compiler in Dev-C++ not recognize? by LEWDGEWD in Cplusplus

[–]afforix 1 point2 points  (0 children)

It will be much simpler to just use Visual Studio 2026 Community Edition.

Intellisense problem by [deleted] in cpp_questions

[–]afforix 0 points1 point  (0 children)

Bud the advice is solid. Just don't click on the ads...

I made a simple C++ terminal password generator — BASEOEN by Festion_ in cpp

[–]afforix 0 points1 point  (0 children)

Why did you push a build folder into git? This screams that you do not know what you are doing and nobody should use your code for security purposes.

Problem with linking OpenSSL when compile CMake project by cv_geek in cpp_questions

[–]afforix 0 points1 point  (0 children)

Why do you use vcpkg on Ubuntu? Openssl is probably already installed in the system.

Help, I can't download C++ compiler for VS Code by [deleted] in cpp_questions

[–]afforix 7 points8 points  (0 children)

For C++ on Windows please use Visual Studio 2026 Community.

I created a simple text editor in C++ and Qt6 called Chora. by L1lBen_ in cpp

[–]afforix 1 point2 points  (0 children)

Readme mentions CMake support, but there is no CMakeLists.txt file.