Can someone tell me how to make an executable file in assembler? my environment is Ubuntu + Emacs + GCC for educational purpose I wrote C code (hello.c) and converted it to assembly (hello.s)
and I want to make an executable from a recorded build file.
I tried
Mx compile gcc hello.c -S
make assembly from C code
and
Mx compile as hello.s
make executable file
but there is only a.out file and it cannot execute
so i tried
as hello.s -o aaa
but the file "aaa" is not executable
source share