/
githubmirror
/
libnet
Обзор
Документация
Войти
/
githubmirror
/
libnet
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.2-rc4
bin/Prepare
17 строк
381 B
Joachim Nilsson
Relocate scripts/ to bin/ and .bat file to win32/
29 сен 2019, 16:46
29 сен 2019, 16:46
65f90f7
Код
Авторство
О чём код?
#!/bin/sh set -x set -e sh ./autogen.sh CFLAGS="-O0 -g -Wall --coverage" ./configure # NOTES: # Coverage data matches the source files more closely if you do not optimize. # --coverage # This option is used to compile and link code instrumented for coverage # analysis. The option is a synonym for -fprofile-arcs -ftest-coverage # (when compiling) and -lgcov (when linking).