2014-12-16 09:03:55 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2014-12-18 16:44:56 +01:00
|
|
|
COMPILER=clang
|
|
|
|
CPP_COMPILER=clang++
|
|
|
|
|
2015-01-09 23:56:00 +01:00
|
|
|
gcc -g -pg -O2 ../libpatricia/patricia.c -c -o patricia.o
|
|
|
|
g++ -g -pg -O2 lpm_performance_tests.cpp patricia.o -olpm_performance_tests -lrt
|
2014-12-18 16:44:56 +01:00
|
|
|
|
|
|
|
#$COMPILER -O4 ../libpatricia/patricia.c -c -o patricia.o
|
|
|
|
#ar q patricia.a patricia.o
|
|
|
|
#$CPP_COMPILER lpm_performance_tests.cpp -olpm_performance_tests.o -c
|
|
|
|
#$CPP_COMPILER -v -O4 lpm_performance_tests.o patricia.a -olpm_performance_tests -lrt
|
|
|
|
|