Alexander
Alexander

Reputation: 481

Visual Studio C++ Project for Linux, how to run .out file?

Im using Visual Studio 2022 and have created a C++ project for linux.

I followed this article: https://learn.microsoft.com/en-us/cpp/linux/connect-to-your-remote-linux-computer?view=msvc-170

And got a running OpenGL-application in Linux via Remote Debugging in Visual Studio.

enter image description here

I see a .out-file in Linux but I can not run it.

enter image description here

So, how do I compile an executable file, so I can run it on Linux Mint? I am using Linux Mint.

Upvotes: 0

Views: 928

Answers (1)

hari hara sankar
hari hara sankar

Reputation: 328

As you are using linux, you can use cpp or g++ for compiling your code. Linux usually have the g++. Run it by g++ filename.cpp and you will get a ELF file named a.out, you can execute this by the command ./a.out. If you couldn't run or your code check for the modes on file with ls -la command and if you can't find the letter -x in your files mode then use the command chmod +x filename .Hope this solves the problem.

Upvotes: 0

Related Questions