Skip to content

Commit 991b37f

Browse files
committed
常用开发库内容合入
1 parent 6d0cb45 commit 991b37f

29 files changed

+2530
-462
lines changed

.vuepress/config/function.js

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ function genSidebar4Cplusplus() {
5454
children: [
5555
"tips/c++-tips-copy-on-write.md",
5656
"tips/c++-tips-forward-declaration.md",
57-
"tips/c++-tips-search-head-lib.md"
57+
"tips/c++-tips-search-head-lib.md",
58+
"tips/c++-tips-spec-template.md",
59+
"tips/c++-tips-override.md"
5860
]
5961
},
6062
{
@@ -169,7 +171,8 @@ function genSidebar4Database() {
169171
"es/es-data-analysis-process.md",
170172
"es/es-data-search.md",
171173
"es/es-data-store.md",
172-
"es/es-db-syn.md"
174+
"es/es-db-syn.md",
175+
"es/es-use.md"
173176
]
174177
}
175178
];
@@ -322,15 +325,20 @@ function genSidebar4develop() {
322325
collapsable: false,
323326
sidebarDepth: 0,
324327
children: [
328+
"library/library-overview.md",
325329
"library/library-cppcheck.md",
326330
"library/library-cppunit.md",
331+
"library/library-drogon.md",
327332
"library/library-fastcgi.md",
333+
"library/library-googletest.md",
328334
"library/library-hiredis.md",
329335
"library/library-jsoncpp.md",
330336
"library/library-log4cpp.md",
331-
"library/library-mysql.md",
332337
"library/library-poco.md",
333-
"library/library-redis_plus_plus.md",
338+
"library/library-protobuf.md",
339+
"library/library-tinyxml.md",
340+
"library/library-yamlcpp.md",
341+
"library/library-zeromq.md",
334342
]
335343
},
336344
{
@@ -577,7 +585,8 @@ function genSidebar4Devops() {
577585
"linux/linux-process.md",
578586
"linux/linux-process-thread-syn.md",
579587
"linux/linux-cmd-tips.md",
580-
"linux/linux-output-with-color.md"
588+
"linux/linux-output-with-color.md",
589+
"linux/linux-authority.md"
581590
]
582591
},
583592
{
@@ -1166,7 +1175,8 @@ function genSidebar4Grow() {
11661175
collapsable: false,
11671176
sidebarDepth: 0,
11681177
children: [
1169-
"product/product.md",
1178+
"product/product-requirement-instantiation.md",
1179+
"product/product-compatibility-principle.md",
11701180
]
11711181
},{
11721182
title: "团队",
@@ -1176,6 +1186,7 @@ function genSidebar4Grow() {
11761186
"team/team-cross-life-valley.md",
11771187
"team/team-system-arch.md",
11781188
"team/team-tech-share.md",
1189+
"team/team-member-define.md",
11791190
]
11801191
}
11811192
];

.vuepress/config/nav.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ module.exports =
8585
{
8686
text: '开发',
8787
items: [
88-
{ text: '开发 - 常用库', link: '/md/develop/library/library-cppcheck.md' },
88+
{ text: '开发 - 常用库', link: '/md/develop/library/library-overview.md' },
8989
{ text: '开发 - 工具安装', link: '/md/develop/tools/tools-install.md' },
9090
]
9191
},
@@ -240,7 +240,7 @@ module.exports =
240240
text: '成长',
241241
items: [
242242
{ text: '个人', link: '/md/grow/person/person-better-than-others.md' },
243-
{ text: '产品', link: '/md/grow/product/product.md' },
243+
{ text: '产品', link: '/md/grow/product/product-requirement-instantiation.md' },
244244
{ text: '团队', link: '/md/grow/team/team-system-arch.md' },
245245
]
246246
},
148 KB
Loading
110 KB
Loading
33.3 KB
Loading
175 KB
Loading
58.6 KB
Loading
43.4 KB
Loading
27.3 KB
Loading
Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
# centos下面使用cppcheck
1+
# 常用开发库 - cppcheck
22

3-
[[toc]]
3+
1. github官网下载tar.gz包
44

5-
1.github官网下载tar.gz包
5+
2. 安装过程
66

7-
2.安装过程
8-
9-
```bash
7+
```
108
tar -zxvf cppcheck-2.6.tar.gz
119
cd ./cppcheck-2.6
1210
mkdir build
@@ -16,10 +14,10 @@ cmake ..
1614
make -j4
1715
make install SRCDIR=. DESTDIR=../cppcheck_output/ CFGDIR=../cfg
1816
```
17+
18+
3. 测试
1919

20-
3.测试
21-
22-
```bash
20+
```
2321
cd /home/klc/code/cppcheck/cppcheck-2.6/cppcheck_output/usr/local/bin/
2422
./cppcheck --enable=all FunctionStudy/systemFunUse/util.cpp
2523
```

0 commit comments

Comments
 (0)