On 3/15/22 3:48 PM, 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; }
No problem here...
-----
bash.6[~]: g++ -o hello hello.cpp bash.7[~]: ./hello Hello word! from Fedora Linux! bash.8[~]: cat hello.cpp
#include <iostream> using namespace std; int main(void) { std::cout << "Hello word! from Fedora Linux!" << std::endl; return 0; } bash.9[~]:
-----
Does the "arm" part matter? By the way, in this case, the line "using namespace std;" is not needed.