vtu@home boinc project

The project http://boinc.vtu.lt/vtuathome/ is a test project. It is developed to test the BOINC platform and to learn the BOINC API. The project is still incomplete and your notes, suggestions and comments are appreciated.

The aim of the project is to count the quantity of prime numbers in a large interval. The worst algorythm [...]

Shell script i use to compile boinc server side daemon

# /home/aurimas/boinc is a path where boinc is located # prepare_.cpp is my boinc server daemon g++ -I/home/aurimas/boinc/lib -I/home/aurimas/boinc/tools -I/home/aurimas/boinc/sched -I/home/aurimas/boinc/db -I/usr/include/mysql -I/home/aurimas/boinc/api -include /home/aurimas/boinc/config.h -c prepare_.cpp -o prepare_.o g++ -I/usr/local/include -o prepare_ prepare_.o -I/usr/local/mysql/include -L/home/aurimas/boinc/lib -lsched -lboinc -pthread -lmysqld -lssl -lcrypt -lz -L/usr/lib -L/lib -lrt /lib/libwrap.so.0

Shell script i use to compile BOINC applications

Shell script i use to compile BOINC applications

## slave_.cpp – boinc application ## /home/aurimas/boinc – in my case is a path where boinc is located g++ -I/home/aurimas/boinc/lib -I/home/aurimas/boinc/api -include /home/aurimas/boinc/config.h -c slave_.cpp -o slave_.o g++ -o slave_ -static slave_.o -L/home/aurimas/boinc/lib -lboinc_zip -lboinc_api -lboinc -pthread