File: build.sh

package info (click to toggle)
libslow5lib 1.3.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,280 kB
  • sloc: ansic: 13,123; python: 1,353; sh: 600; makefile: 98; cpp: 40
file content (15 lines) | stat: -rwxr-xr-x 1,252 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -x
set -e

make clean && make -j zstd=1 slow5_mt=1
gcc -Wall -O2 -g -I include/ -o test/bench/convert_to_pa test/bench/convert_to_pa.c lib/libslow5.a -lm -lz -lzstd -fopenmp
gcc -Wall -O2 -g -I include/ -o test/bench/convert_to_pa_rand test/bench/convert_to_pa_rand.c lib/libslow5.a -lm -lz -lzstd -fopenmp
gcc -Wall -O2 -g -I include/ -o test/bench/get_all test/bench/get_all.c lib/libslow5.a -lm -lz -lzstd -lpthread
gcc -Wall -O2 -g -I include/ -o test/bench/get_read_ids test/bench/get_read_ids.c lib/libslow5.a -lm -lz -lzstd
gcc -Wall -O2 -g -I include/ -o test/bench/get_samples test/bench/get_samples.c lib/libslow5.a -lm -lz -lzstd -lpthread  -fopenmp
gcc -Wall -O2 -g -I include/ -o test/bench/get_samples_no_pipelining test/bench/get_samples_no_pipelining.c lib/libslow5.a -lm -lz -lzstd -lpthread  -fopenmp
gcc -Wall -O2 -g -I include/ -o test/bench/get_samples_rand test/bench/get_samples_rand.c lib/libslow5.a -lm -lz -lzstd -lpthread  -fopenmp
gcc -Wall -O2 -g -I include/ -o test/bench/get_sample_count_rand test/bench/get_sample_count_rand.c lib/libslow5.a -lm -lz -lzstd -lpthread
gcc -Wall -O2 -g -I include/ -o test/bench/get_read_number_rand test/bench/get_read_number_rand.c lib/libslow5.a -lm -lz -lzstd -lpthread