[FFMPEG extension third-party library compilation series] About libvpx mingw32 Compilation

Source: Internet
Author: User

Many problems occurred during libvpx compilation. 1. [strip] libvpx. A <libvpx_g.a Strip: Bad file number is also difficult to handle. At first, I thought it was caused by the fact that strip was not found, but later I tried to modify the Strip path and it could not be solved. modify the makefile code for this error,
%.a: %_g.a$(if $(quiet),@echo "    [STRIP] [email protected] < $<")#$(qexec)$(STRIP) --strip-unneeded #         `$(NM) $< | grep ' [A-TV-Z] ' | awk '{print "-K"$$3'}`#          -o [email protected] $<else%.a: %_g.a$(if $(quiet),@echo "    [CP] [email protected] < $<")$(qexec)cp $< [email protected]endif

The above is the original code and needs to be modified

%.a: %_g.a$(if $(quiet),@echo "    [STRIP] [email protected] < $<")$(qexec)cp $< [email protected]$(qexec)$(STRIP) --strip-unneeded [email protected]else%.a: %_g.a$(if $(quiet),@echo "    [CP] [email protected] < $<")$(qexec)cp $< [email protected]endif
 

Solve this strip Error

2. If similar errors occur in various test errors, you can try to disable docs, examples, and so on.

Contact information: [email protected]

QQ: 514540005

All rights reserved. Reprinting is prohibited.

From: http://blog.csdn.net/tigerleap/article/details/40516099


[FFMPEG extension third-party library compilation series] About libvpx mingw32 Compilation

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.