I've compiled this websocket++ print server example, executed it, and confirmed it worked by testing on my server and a browser.
Now, I've compiled this websocket++ broadcast server example with the command g++ -O3 -o bServer broadcast_server.cpp -I ~/websocketpp-experimental/ -std=c++0x -D_WEBSOCKETPP_CPP11_STL_ -D_WEBSOCKETPP_NO_CPP11_REGEX_ -lboost_regex -lboost_system
according to the author's recommendations.
./bServer
gives Operation not permitted
.
ls -l bServer
gives -rwxr-xr-x 1 root root 574151 Jun 29 22:31 bServer
which as far as I know indicates that it's permitted to be executed.
How can I execute this program?