OLD | NEW |
1 README - 30 May 2014 | 1 README - 30 May 2014 |
2 | 2 |
3 Welcome to the WebM VP8/VP9 Codec SDK! | 3 Welcome to the WebM VP8/VP9 Codec SDK! |
4 | 4 |
5 COMPILING THE APPLICATIONS/LIBRARIES: | 5 COMPILING THE APPLICATIONS/LIBRARIES: |
6 The build system used is similar to autotools. Building generally consists of | 6 The build system used is similar to autotools. Building generally consists of |
7 "configuring" with your desired build options, then using GNU make to build | 7 "configuring" with your desired build options, then using GNU make to build |
8 the application. | 8 the application. |
9 | 9 |
10 1. Prerequisites | 10 1. Prerequisites |
(...skipping 29 matching lines...) Expand all Loading... |
40 The 'configure' script supports a number of options. The --help option can be | 40 The 'configure' script supports a number of options. The --help option can be |
41 used to get a list of supported options: | 41 used to get a list of supported options: |
42 $ ../libvpx/configure --help | 42 $ ../libvpx/configure --help |
43 | 43 |
44 4. Cross development | 44 4. Cross development |
45 For cross development, the most notable option is the --target option. The | 45 For cross development, the most notable option is the --target option. The |
46 most up-to-date list of supported targets can be found at the bottom of the | 46 most up-to-date list of supported targets can be found at the bottom of the |
47 --help output of the configure script. As of this writing, the list of | 47 --help output of the configure script. As of this writing, the list of |
48 available targets is: | 48 available targets is: |
49 | 49 |
50 armv5te-android-gcc | |
51 armv5te-linux-rvct | |
52 armv5te-linux-gcc | |
53 armv5te-none-rvct | |
54 armv6-darwin-gcc | 50 armv6-darwin-gcc |
55 armv6-linux-rvct | 51 armv6-linux-rvct |
56 armv6-linux-gcc | 52 armv6-linux-gcc |
57 armv6-none-rvct | 53 armv6-none-rvct |
58 arm64-darwin-gcc | 54 arm64-darwin-gcc |
59 armv7-android-gcc | 55 armv7-android-gcc |
60 armv7-darwin-gcc | 56 armv7-darwin-gcc |
61 armv7-linux-rvct | 57 armv7-linux-rvct |
62 armv7-linux-gcc | 58 armv7-linux-gcc |
63 armv7-none-rvct | 59 armv7-none-rvct |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 running configure. To specify an alternate directory the | 136 running configure. To specify an alternate directory the |
141 LIBVPX_TEST_DATA_PATH environment variable can be used. | 137 LIBVPX_TEST_DATA_PATH environment variable can be used. |
142 | 138 |
143 $ ./configure --enable-unit-tests | 139 $ ./configure --enable-unit-tests |
144 $ LIBVPX_TEST_DATA_PATH=../libvpx-test-data make testdata | 140 $ LIBVPX_TEST_DATA_PATH=../libvpx-test-data make testdata |
145 | 141 |
146 SUPPORT | 142 SUPPORT |
147 This library is an open source project supported by its community. Please | 143 This library is an open source project supported by its community. Please |
148 please email webm-discuss@webmproject.org for help. | 144 please email webm-discuss@webmproject.org for help. |
149 | 145 |
OLD | NEW |