Couple of quick notes as a reminder. I’ll come back with some further notes of using a cross-compiler tool chain with Eclipse C/C++ when I have time:
Compile to object code:
as example.s -o example.o
Link to an executable:
ld -o example example.o
Articles, notes and random thoughts on Software Development and Technology
Couple of quick notes as a reminder. I’ll come back with some further notes of using a cross-compiler tool chain with Eclipse C/C++ when I have time:
Compile to object code:
as example.s -o example.o
Link to an executable:
ld -o example example.o