2015-01-03 7 views
7

başarısız yüklemek Sanki aşağıda başarısız oldu: Benim neyimMacOSX demlemek MP4Box

MP4Box$ brew install --fresh mp4box 
==> Downloading https://downloads.sourceforge.net/gpac/gpac-0.5.0.tar.gz 
Already downloaded: /Library/Caches/Homebrew/gpac-0.5.0.tar.gz 
==> Patching 
patching file modules/ffmpeg_in/ffmpeg_decode.c 
patching file modules/ffmpeg_in/ffmpeg_demux.c 
patching file modules/ffmpeg_in/ffmpeg_in.h 
==> ./configure --disable-wx --prefix=/usr/local/Cellar/gpac/0.5.0 --mandir=/usr/local/Cellar/gpac/0.5.0/share/man --ext 
==> make 
ld: symbol(s) not found for architecture x86_64 
clang: error: linker command failed with exit code 1 (use -v to see invocation) 
make[2]: *** [gm_ffmpeg_in.dylib] Error 1 
make[1]: *** [plugs] Error 2 
make: *** [all] Error 2 

READ THIS: http://git.io/brew-troubleshooting 

These open issues may also help: 
gpac 0.5.0 doesn't build against ffmpeg 2.4.1 (https://github.com/Homebrew/homebrew/issues/32978) 

şey?

+0

O [konu] (https://github.com/Homebrew/homebrew/issues/32978) ilgili görünüyor. Bence, daha iyi bir şansa sahip olacaksınız (Homebrew'ın desteğiyle) (https://github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/Troubleshooting.md#troubleshooting) StackOverflow. –

cevap

-1

Gist'e aşağıdaki komut deneyin: Bana uyar https://gist.github.com/orcaman/369e8da048b5d7345f5a

. son satırında

curl -#LO http://www.ijg.org/files/jpegsrc.v8c.tar.gz 
curl -#LO http://download.sourceforge.net/libpng/libpng-1.6.8.tar.gz 
curl -#LO http://downloads.sourceforge.net/project/faac/faad2-src/faad2-2.7/faad2-2.7.tar.gz 
curl -#LO ftp://ftp.mars.org/pub/mpeg/libmad-0.15.1b.tar.gz 
curl -#LO http://liba52.sourceforge.net/files/a52dec-0.7.4.tar.gz 
curl -#LO https://www.libsdl.org/release/SDL2-2.0.3.tar.gz 
svn export --non-interactive --trust-server-cert https://gpac.svn.sourceforge.net/svnroot/gpac/trunk/gpac 

for file in `ls *.tar.*`; do 
    tar -xzf $file 
    rm $file 
done 

cd jpeg-*/ 
./configure && make -j 4 && sudo make install; cd .. 

cd libpng-*/ 
./configure && make -j 4 && sudo make install; cd .. 

cd faad2-*/ 
./configure --without-xmms --without-drm --without-mpeg4ip && make && sudo make install; cd .. 

cd libmad-*/ 
sed -i -e 's/-march=i486//g' configure.ac 
./configure && make -j 4 && sudo make install; cd .. 

cd a52dec-*/ 
./configure --enable-shared && make -j 4 && sudo make install; cd .. 

cd SDL2-*/ 
./configure --without-x && make -j 4 && sudo make install; cd .. 

cd gpac/ 
./configure && make lib && make apps && sudo make install lib && sudo make install 
+1

Bu, teorik olarak, bu sorunun cevabının temel kısımlarını içerecek şekilde [// meta.stackoverflow.com/q/8259] [tercih edilir] ve referans için bağlantı sağlayarak bu soruya cevap verebilir. –