Nios® V/II Embedded Design Suite (EDS)
Support for Embedded Development Tools, Processors (SoCs and Nios® V/II processor), Embedded Development Suites (EDSs), Boot and Configuration, Operating Systems, C and C++
12603 Discussions

Generating elf from assembly code

Altera_Forum
Honored Contributor II
1,088 Views

Hello guys! 

Is there any manual or tutorial about generating elf file (.elf) from assembly code (.s) in Eclipse. I can't find any documentation about this way of programming.
0 Kudos
1 Reply
Altera_Forum
Honored Contributor II
368 Views

If you feed a .s file into gcc it will just assemble it. 

IIRC if you use .S then it is also processed by the C pre-processor (which is often useful). 

 

Depending on what you are actually doing, writing the code in C might generate good enough object code (and is easier). 

 

OTOH I wouldn't even try to use an IDE's build scheme for anuthing complex. 

Write your own makefile and linker script.
0 Kudos
Reply