-
c++基础库, 使用scons进行编译构建, scons兼容了Mac和Ubuntu. SConstruct根据不同的平台设置不同的编译参数,进行编译
-
注意:
1). Mac os下默认的编译器是Clang,编译出来的符号和g++编译不一致,所以在SConstruct里面指定了编译器为g++
2). Linux选择Ubuntu12.04, 可能有些lib的目录和RedHat、CentOs有差异
1). build: scons -i -Q -j4 2> /dev/null
编译会有一些没有用的Warn去不掉,直接从定向到/dev/null
2). 使用g++ 4.8,Mac系统默认为4.2在编译的时候会报找不到一些符号
3). clean: scons -c
4). 单元测试
例如common
scons test -i -Q -j4
1). build: scons -i -Q -j4
编译选项指定了特定路径下的g++版本
2). clean: scons -c
4). 单元测试
例如common
scons test -i -Q -j4
a. common.h
b. config.h
c. argvContext.h
d. localVector.h
e. stdExtention.h
a. log.h
b. loggerUtil.h
a. fileLock.h
b. fileUtil.h
a. mysqlClient.h
a. thread.h
b. threadPool.h
c. mutexLock.h
google unit test基础库
- gtest_32 32位操作系统下编译出来的gtest和gtest_main静态库
- gtest_64 64位操作系统下编译出来的gtest和gtest_main静态库
1. gtest library build
1). git clone https://github.com/google/googletest.git googletest
2). cd googletest/googletest
3). mkdir build
4). cd build
5). cmake ..
6). make
7). cp libgtest* cpp_util/gtest/lib_32
or
cp libgtest* cpp_util/gtest/lib_64
1. g++: cpp_util/mysql/mysqlClient.h:4:19: fatal error: mysql.h: No such file or directory
解决方案: install mysql
ubuntu:sudo apt-get update
sudo apt-get install mysql-server