On Wed, Dec 24, 2014 at 16:05:35 +0800, 朱昌 wrote: > ./configure [...] > -miphoneos-version-min=“8.1” [...] [...] > clang: error: invalid version number in '-miphoneos-version-min=“8.1”'
Those are not proper quotation marks. It seems they are interpreted as part of the string. You should use '"' instead of '“' in the shell. (Also note their use in at least one other argument of your command line.) So this argument would be: -miphoneos-version-min="8.1" or even -miphoneos-version-min=8.1 Moritz _______________________________________________ ffmpeg-user mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-user
