Building FFmpeg on RHEL4

…衆ロ難τιáo~ 提交于 2019-12-06 00:56:35

Your question specified that doing a proper upgrade (i.e., upgrading the system's GNU Make package) is out of the question. However, since you have privileges to the system C compiler, I recommend building GNU Make 3.82 (latest and greatest) and installing it in your home directory for personal use.

Software is at: http://mirrors.kernel.org/gnu/make/

Unpack it, configure, build, and install:

./configure --prefix=$HOME
make
make install

Note that the last step is not prefixed by 'sudo'. This will install 'make' as ~/bin/make. After configuring FFmpeg, call '~/bin/make` and everything should build fine.

I just tested this myself.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!