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