rgaufman / live555

A mirror of the live555 source code.
GNU Lesser General Public License v3.0
759 stars 368 forks source link

Build issue on ProxyServer #15

Open sleebapaul opened 6 years ago

sleebapaul commented 6 years ago

./genMakefiles linux

After generating Makefiles for all project,

cd proxyServer make

Which shows

c++ -c -I../UsageEnvironment/include -I../groupsock/include -I../liveMedia/include -I../BasicUsageEnvironment/include -I. -O2 -DSOCKLEN_T=socklen_t -D_LARGEFILE_SOURCE=1 -D_FILE_OFFSET_BITS=64 -Wall -DBSD=1   live555ProxyServer.cpp
make: *** No rule to make target '../liveMedia/libliveMedia.a', needed by 'live555ProxyServer'.  Stop.

Though a live555ProxyServer.o is generated in proxyServer folder.

telmomarques commented 4 years ago

You need to run make in "UsageEnvironment, "groupsock", "liveMedia" and "BasicUsageEnvironment" before you can build the proxyServer.

Just run make in the root dir to build everything in the correct order.

I know I'm late 2 years, but maybe it'll be helpful for someone else.

xbb1973 commented 4 years ago

🐶