You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wasn't able to compile because of the below error: /usr/include/c++/5/bits/c++0x_warning.h:32:2: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
Fixed by adding the following to CMakeLists.txt:
set (CMAKE_CXX_STANDARD 11)
target_link_libraries(hole_fixer pthread)
The text was updated successfully, but these errors were encountered:
I wasn't able to compile because of the below error:
/usr/include/c++/5/bits/c++0x_warning.h:32:2: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
Fixed by adding the following to CMakeLists.txt:
The text was updated successfully, but these errors were encountered: