Changes

User:Pau pajuelo

189 bytes added, 10:19, 4 July 2012
Create your source files:
return 0;
} </pre>
 Follow the instructions above and create a Source File name named Makefile and copy the next code:
<pre>all: main
main: main.c
clean:
rm -f main main.o</pre>
CC is an environment variable that links with arm-poky-linux-gnueabi-gcc binary (IGEP SDK GCC). Environment variables are a set of dynamic named values that can affect the way running processes will behave on a computer. It is very useful because you can generate a Makefile that can be compiled with multiple toolchains.
CC is an IGEP SDK Environtment variables are located at /opt/poky/1.2/environment variable that links with arm-setup-armv7a-vfp-neon-poky-linux-gnueabi-gcc binary (IGEP SDK GCC). Environment You can add this variables are a set of dynamic named values that can affect the way running processes will behave on a computer, it is very useful to call a using "source" command or see your current environtment variables using "env" command that you don't know its location.
IGEP SDK Environtment variables are located at If you need to develop more complex programs, you should read this [http:/opt/pokywww.cs.colby.edu/1.2maxwell/courses/tutorials/maketutor/environment-setup-armv7a-vfp-neon-poky-linux-gnueabiMakefile tutorial]. You can add this variables using source command and see your current environtment variables using env command<br>
=== Compile your program: ===
4,199
edits