Altera_Forum
Honored Contributor
21 years agohow to add application to uclinux?
i want to add hello_world to uclinux,
the code is: # include <stdio.h> main() {char *str="Hello world !"; printf("%s\n",str); exit(0); i have 3 problems: 1.how to write makefile,can you give me the whole code?? 2.when i creat maketarget,there has a blanket(build target), what content should i fill in? 3.after build the application,how to upload the application to the linux? thanks!!!