On Tue, 2022-03-15 at 21:47 +0000, Cătălin George Feștilă wrote:
I try to create a hello word arm static executable, with the default example but I got these errors. I search on the web and fedora packages to find a way to solve this issue. I used a basic example source code:
cat hello.cpp #include <iostream> using namespace std; int main(void) { std::cout << "Hello word! from Fedora Linux!" << std::endl; return 0; }
You forgot to show the errors. You also don´t say if they are compilation errors or runtime errors.
poc