Changes between Version 5 and Version 6 of CompilationGuide/RaspberryPi
- Timestamp:
- Nov 7, 2012, 12:12:53 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CompilationGuide/RaspberryPi
v5 v6 113 113 }}} 114 114 115 After you do make install, all the libraries and binaries will biinstalled in "/my/path/were/i/keep/built/arm/stuff", so if you are compiling some libraries as dependencies for other things, you will most probably reference this directory later using:115 After you finish, all the libraries and binaries will be installed in "/my/path/were/i/keep/built/arm/stuff", so if you are compiling some libraries as dependencies for other things, you will most probably reference this directory later using: 116 116 {{{ 117 117 cd /my/path/where/i/keep/my/source/code … … 155 155 === Basic FFmpeg, without additional libraries === 156 156 {{{ 157 ./configure --enable-cross-compile --cross-prefix=${CCPREFIX} --arch=armel --target-os=linux --prefix=/ root/my/build157 ./configure --enable-cross-compile --cross-prefix=${CCPREFIX} --arch=armel --target-os=linux --prefix=/my/path/were/i/keep/built/arm/stuff 158 158 make 159 159 make install … … 162 162 === FFmpeg with libaacplus, libx264 and alsa-lib === 163 163 {{{ 164 ./configure --enable-cross-compile --cross-prefix=${CCPREFIX} --arch=armel --target-os=linux -- enable-gpl --enable-libx264 --enable-nonfree --enable-libaacplus --extra-cflags="-I/my/path/were/i/keep/built/arm/stuff/include" --extra-ldflags="-L/my/path/were/i/keep/built/arm/stuff/lib" --prefix=/my/path/were/i/keep/built/arm/stuff164 ./configure --enable-cross-compile --cross-prefix=${CCPREFIX} --arch=armel --target-os=linux --prefix=/my/path/were/i/keep/built/arm/stuff --enable-gpl --enable-libx264 --enable-nonfree --enable-libaacplus --extra-cflags="-I/my/path/were/i/keep/built/arm/stuff/include" --extra-ldflags="-L/my/path/were/i/keep/built/arm/stuff/lib" 165 165 make 166 166 make install