This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
common-tools-tcp-burst/compile_cn.txt
2019-07-10 17:54:02 +08:00

21 lines
393 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
make clean
make distclean
编译时将configure.ac第34行:
#CFLAGS="${CFLAGS} -Wall -O3 -std=gnu99"
改为:
CFLAGS="${CFLAGS} -Wall -g -std=gnu99 -DTCPBURST=1"
方便调试、DEBUG
正式使用时,改为
CFLAGS="${CFLAGS} -Wall -O3 -std=gnu99 -DTCPBURST=1"
使用MARSIO模式
CFLAGS="${CFLAGS} -Wall -O3 -std=gnu99 -DTCPBURST=1 -DMARSIO=1 -lmarsio"
./configure
make
make install
*/