I\'m trying to compile Live555 for iOS.
I have done the following:
./genMakefiles iphoneos
make
I get the following build errors:
I just change the compile.iphoneos :
IOS_VERSION = 5.1
LINK_OPTS = -L. .....
To
IOS_VERSION = 6.0
LINK_OPTS = -L. -arch armv7 --sysroot=$(SDK) -L$(SDK)/usr/lib/system
And it successfully compiles.
Change LINK_OPTS of config.iphoneos before running "genMakefiles iphoneos". It works for me on iOS 5.1 SDK and iOS 6 SDK beta.
LINK_OPTS = -L. -arch armv7 --sysroot=$(SDK) -L$(SDK)/usr/lib/system
I think you must modify --isysroot
to -isysroot