https://github.com/chenshuo/muduo-tutorial
Tutorial of Muduo network library
https://github.com/chenshuo/muduo-tutorial
Last synced: 5 days ago
JSON representation
Tutorial of Muduo network library
- Host: GitHub
- URL: https://github.com/chenshuo/muduo-tutorial
- Owner: chenshuo
- Created: 2011-01-21T15:01:11.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2019-10-21T22:29:44.000Z (over 5 years ago)
- Last Synced: 2025-02-09T16:07:25.568Z (12 days ago)
- Language: C++
- Homepage:
- Size: 7.81 KB
- Stars: 518
- Watchers: 23
- Forks: 179
- Open Issues: 1
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
Examples of Muduo network library
0) src - source file
1) bazel - build with Bazel
2) cmake-submodule - build with CMake, checking out muduo as a git submodule
3) cmake - build with CMake
2) makefile - build with Makefile1) build with bazel
cd bazel
bazel build -c opt :all2) build with CMake with git submodule
git submodule update --init
mkdir build
cd build
cmake ../cmake-submodule
makeAssuming Muduo is installed in $HOME/build/debug-install
3) build with CMake
mkdir build
cd build
cmake ../cmake
make
# echo binary is in ./bin/4) build with GNU make
cd makefile
make
# echo binary is in ./