--- Quote Start ---
originally posted by wombat@Mar 16 2005, 03:59 PM
the simplest thing you can do to build your application without the ide is to create a shell script containing something like:
nios2-elf-gcc -o2 -o <project.elf> <source file.c> <another source file.c>
of course you can use options other than -o2 if appropriate.
you'll need some startup code, so you should probably copy crt0.s from the hal into your project before modifying it, and it will be easier to start from a hal generated linker script.
<div align='right'><{post_snapback}> (index.php?act=findpost&pid=5420)
--- quote end ---
--- Quote End ---
What about support for C++?
Is there a GNU version of something like nios2-elf-g++ ?
I would like to compile C++ for NIOS2 in Linux...