See reply inline On Jul 23, 2009, at 10:49 PM, n179911 wrote:
Hi,
I have install boost library using this: $ sudo port install boost It seems download and compile fine on my local machine.
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. The error is about bad #include statementa. Maybe you should post the source you're trying to compile? - Rush
blocking_udp_echo_client.cpp:69:10: error: #include expects "FILENAME" or <FILENAME> blocking_udp_echo_client.cpp:70:10: error: #include expects "FILENAME" or <FILENAME> blocking_udp_echo_client.cpp:71:10: error: #include expects "FILENAME" or <FILENAME> blocking_udp_echo_client.cpp:83: error: stray ‘\’ in program blocking_udp_echo_client.cpp:108: error: stray ‘\’ in program blocking_udp_echo_client.cpp:112: error: stray ‘\’ in program
Thank you for any help. _______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users