Forum Discussion
Altera_Forum
Honored Contributor
19 years agoI recommend turning on the objdump file generation in the Nios II IDE (under the preferences). By specifying -save-temps you are getting the assembler output, however the custom instructions for those floating point operations don't get pulled in until link time (so you'll see them in the objdump).
So here's the order: 1) Compiler creates the assembly and object files (containing calls to the generic math libraries) 2) During linking the linker figures out if the library should be pulled in or a custom library/hardware 3) After linking completes you have an elf and the objdump file is created based on it. I hope that helps clarify the issue.