[FFmpeg-user] build ffmpeg failed

Moritz Barsnick barsnick at gmx.net
Wed Dec 24 23:45:03 CET 2014


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


More information about the ffmpeg-user mailing list