Re: compile a basic example to arm executable on Fedora

2022-03-14 Thread Barry Scott
> On 13 Mar 2022, at 21:59, Cătălin George Feștilă > wrote: > > I asked because I don't think arm development is well implemented. An answer > would be as correct as possible from a developer who has worked with > something like this, considering that it is not very well documented and I >

Re: compile a basic example to arm executable on Fedora

2022-03-14 Thread Richard W.M. Jones
On Sun, Mar 13, 2022 at 09:59:09PM -, Cătălin George Feștilă wrote: > I asked because I don't think arm development is well > implemented. Arm development on Fedora works very well. I suggest joining one of these lists where beginner questions can be answered:

Re: compile a basic example to arm executable on Fedora

2022-03-13 Thread Kevin Kofler via devel
Cătălin George Feștilă wrote: > cat hello.c > #include > using namespace std; > int main(void) > { > std::cout << "Hello word! from Fedora Linux!" << std::endl; > return 0; > } This is C++ code and does not belong in a source file with .c extension. > I install wit the dnf tool > > dnf install

Re: compile a basic example to arm executable on Fedora

2022-03-13 Thread Cătălin George Feștilă
I asked because I don't think arm development is well implemented. An answer would be as correct as possible from a developer who has worked with something like this, considering that it is not very well documented and I have not seen the tests with this tool that would work with development

Re: compile a basic example to arm executable on Fedora

2022-03-13 Thread Barry Scott
> On 13 Mar 2022, at 20:46, 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. This list is for developing fedora itself,

compile a basic example to arm executable on Fedora

2022-03-13 Thread Cătălin George Feștilă
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.c #include using namespace std; int main(void) { std::cout <<