OLD | NEW |
1 README - 23 March 2015 | 1 README - 23 March 2015 |
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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 x86_64-iphonesimulator-gcc | 94 x86_64-iphonesimulator-gcc |
95 x86_64-linux-gcc | 95 x86_64-linux-gcc |
96 x86_64-linux-icc | 96 x86_64-linux-icc |
97 x86_64-solaris-gcc | 97 x86_64-solaris-gcc |
98 x86_64-win64-gcc | 98 x86_64-win64-gcc |
99 x86_64-win64-vs8 | 99 x86_64-win64-vs8 |
100 x86_64-win64-vs9 | 100 x86_64-win64-vs9 |
101 x86_64-win64-vs10 | 101 x86_64-win64-vs10 |
102 x86_64-win64-vs11 | 102 x86_64-win64-vs11 |
103 x86_64-win64-vs12 | 103 x86_64-win64-vs12 |
104 universal-darwin8-gcc | |
105 universal-darwin9-gcc | |
106 universal-darwin10-gcc | |
107 universal-darwin11-gcc | |
108 universal-darwin12-gcc | |
109 universal-darwin13-gcc | |
110 universal-darwin14-gcc | |
111 generic-gnu | 104 generic-gnu |
112 | 105 |
113 The generic-gnu target, in conjunction with the CROSS environment variable, | 106 The generic-gnu target, in conjunction with the CROSS environment variable, |
114 can be used to cross compile architectures that aren't explicitly listed, if | 107 can be used to cross compile architectures that aren't explicitly listed, if |
115 the toolchain is a cross GNU (gcc/binutils) toolchain. Other POSIX toolchains | 108 the toolchain is a cross GNU (gcc/binutils) toolchain. Other POSIX toolchains |
116 will likely work as well. For instance, to build using the mipsel-linux-uclibc | 109 will likely work as well. For instance, to build using the mipsel-linux-uclibc |
117 toolchain, the following command could be used (note, POSIX SH syntax, adapt | 110 toolchain, the following command could be used (note, POSIX SH syntax, adapt |
118 to your shell as necessary): | 111 to your shell as necessary): |
119 | 112 |
120 $ CROSS=mipsel-linux-uclibc- ../libvpx/configure | 113 $ CROSS=mipsel-linux-uclibc- ../libvpx/configure |
(...skipping 12 matching lines...) Expand all Loading... |
133 running configure. To specify an alternate directory the | 126 running configure. To specify an alternate directory the |
134 LIBVPX_TEST_DATA_PATH environment variable can be used. | 127 LIBVPX_TEST_DATA_PATH environment variable can be used. |
135 | 128 |
136 $ ./configure --enable-unit-tests | 129 $ ./configure --enable-unit-tests |
137 $ LIBVPX_TEST_DATA_PATH=../libvpx-test-data make testdata | 130 $ LIBVPX_TEST_DATA_PATH=../libvpx-test-data make testdata |
138 | 131 |
139 SUPPORT | 132 SUPPORT |
140 This library is an open source project supported by its community. Please | 133 This library is an open source project supported by its community. Please |
141 please email webm-discuss@webmproject.org for help. | 134 please email webm-discuss@webmproject.org for help. |
142 | 135 |
OLD | NEW |