-
Notifications
You must be signed in to change notification settings - Fork 11
Build
Yuzhen Huang edited this page Nov 17, 2017
·
1 revision
Download the source code.
git clone https://github.com/Yuzhen11/flexps.git
Go to the project root and do an out-of-source build using CMake:
mkdir debug
cd debug
cmake -DCMAKE_BUILD_TYPE=Debug ..
make help # List all build target
make $ApplicationName # Build application
make -j # Build all applications with all threads
To show Log messages for debugging:
GLOG_logtostderr=1 ./HuskyUnitTest # Show all Log information
GLOG_logtostderr=1 ./HuskyUnitTest --gtest_filter=$TestName # Show the Log information for particular test
To generate core dumped debug file:
ulimit -c unlimited