Hi Onur, Sure. I am using Ubuntu 12.10 with gcc version 4.7.2 I think it could be a change with gcc with regard to the order of the source/object file and the library link flags; basically now all library flags should be put after the source file, not before.
See this stackoverflow entry for more detail http://stackoverflow.com/questions/8640642/gcc-link-order-changed Tri ________________________________ From: Onur Koçberber [[email protected]] Sent: Thursday, June 20, 2013 6:57 AM To: Tri M. Nguyen Cc: [email protected] Subject: Re: [cloudsuite] "Correction to installation direction for media streaming" Hi Tri, Thanks a lot for the feedback! Please let us know your gcc version and OS distribution so that we can update the instructions accordingly. Best, Onur On Jun 20, 2013, at 5:48 AM, Tri M. Nguyen <[email protected]<mailto:[email protected]>> wrote: Hi guys, Just a quick correction. In step 7 for installing the client at http://parsa.epfl.ch/cloudsuite/streaming.html, the provided gcc command is gcc -I /path/to/curl/curlinst/include -L /path/to/curl/curlinst/lib/ -lcurl rtspclientfinal.c -o rtspclient.o But it gives me an error. Should instead be: gcc -I /path/to/curl/curlinst/include -L /path/to/curl/curlinst/lib/ rtspclientfinal.c -lcurl -o rtspclient.o Thanks, Tri
