On Jul 24, 2009, at 8:30 AM, Steven Watanabe wrote:
AMDG
Rush Manbert wrote:
On Jul 23, 2009, at 10:49 PM, n179911 wrote:
But then i tried to compile a simple echo client example from http://www.boost.org/doc/libs/1_35_0/doc/html/boost_asio/examples.html
I get a bunch of compiler errors. I am using "g++ -o block_client blocking_udp_echo_client.cpp "
Here are some of the errors: $ g++ -o block_client blocking_udp_echo_client.cpp blocking_udp_echo_client.cpp:68:10: error: #include expects "FILENAME" or <FILENAME>
If I'm reading this correctly, the error is on line 68 of blocking_udp_echo_client.cpp, but when I follow your link, then the link to that file, copy the example and paste it into vi, I see that the file is only 60 lines long.
I would guess that the file you're compiling doesn't contain what you think it does, or you added stuff to the end of the file that isn't legal C.
Perhaps you're trying to compile html?
Good catch! That would make a lot of sense. Best regards, Rush