First page Back Continue Last page Summary Graphics
Example bprun command file
List of compile commands in ccruf
- gcc -c -O -DEXT2=2 -DLinux -Wall main.c
- gcc -c -O -DEXT2=2 -DLinux -Wall ruf.c
- gcc -c -O -DEXT2=2 -DLinux -Wall fs.c
- gcc -c -O -DEXT2=2 -DLinux -Wall dev.c
- gcc -c -O -DEXT2=2 -DLinux -Wall fatal.c
Run using bprun -Nx -f ccruf
- gcc...-Wall repeated saves command line typing
Link with
- gcc -oprog main.o ruf.o fs.o dev.o fatal.o
You cannot add the link command because all the compiles must first complete before you link.
Notes: