Use -DNO_SELECT=ON to work around select behavior on older distros

This commit is contained in:
Mudit Vats
2021-01-04 14:38:40 -07:00
parent ca85fa4d14
commit 0ecd6c9911

View File

@@ -60,13 +60,13 @@ Using a Terminal window with the PATH and devtoolset enabled per the Dependencie
``` ```
mkdir build mkdir build
cd build cd build
cmake -DCMAKE_TOOLCHAIN_FILE=/rpc/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_BUILD_TYPE=Release .. cmake -DCMAKE_TOOLCHAIN_FILE=/rpc/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_BUILD_TYPE=Release -DNO_SELECT=ON ..
cmake --build . cmake --build .
``` ```
To build debug: To build debug:
``` ```
cmake -DCMAKE_TOOLCHAIN_FILE=/rpc/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_BUILD_TYPE=Debug .. cmake -DCMAKE_TOOLCHAIN_FILE=/rpc/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_BUILD_TYPE=Debug -DNO_SELECT=ON ..
cmake --build . cmake --build .
``` ```