compiler of language C to openrisc processor with VHDL

T

Tony

Guest
Hi,

Now I am doing some programming on Openrisc processor on FPGA. with
Xilinx tools set we can upload the makefile to it and run.

the problem is how can I complie the c file to makefile which I can
upload it to fpga and processor.

example, if we get hello.c. how to compile it to makefile.c?

Many Thanks,

it is great if you can also send me a email to notice me.:)
scr106@york.ac.uk
 
Tony wrote:

the problem is how can I complie the c file to makefile which I can
upload it to fpga and processor.

example, if we get hello.c. how to compile it to makefile.c?
Follow up to comp.lang.c or comp.arch.fpga.
In a unix environment
cc hello.c
will give you the executable file hello.o

A makefile is an optional text file to guide
complex compilations using "make".
The name is Makefile or makefile, not makefile.c

-- Mike Treseler
 

Welcome to EDABoard.com

Sponsor

Back
Top