william

Keep Calm and Markdown.

CppServer

使用 CppServer 实现 TCP/UDP 通信。

安装

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
apt-get install uuid-dev

pip3 install gil

git clone https://github.com/chronoxor/CppServer.git
cd CppServer
gil update

cd modules
rm -rf asio
pc git clone git@github.com:chriskohlhoff/asio.git

cgdb: 安装与使用

安装

安装 cgdb

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
git clone git@github.com:cgdb/cgdb.git
cd cgdb

./autogen.sh

## 安装依赖包
## CentOS
yum install ncurses-devel
yum install texinfo
## 如果是 CentOS8
yum config-manager --set-enabled PowerTools
yum install help2man
yum install readline-devel
yum install flex

## Ubuntu
sudo apt-get install texinfo
sudo apt-get install flex

./configure --prefix=/usr/local
make -j
sudo make install
0%