Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(201)

Side by Side Diff: source/libvpx/README

Issue 1026393002: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « source/libvpx/CHANGELOG ('k') | source/libvpx/build/make/Makefile » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 README - 30 May 2014 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
11 11
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 sparc-solaris-gcc 71 sparc-solaris-gcc
72 x86-android-gcc 72 x86-android-gcc
73 x86-darwin8-gcc 73 x86-darwin8-gcc
74 x86-darwin8-icc 74 x86-darwin8-icc
75 x86-darwin9-gcc 75 x86-darwin9-gcc
76 x86-darwin9-icc 76 x86-darwin9-icc
77 x86-darwin10-gcc 77 x86-darwin10-gcc
78 x86-darwin11-gcc 78 x86-darwin11-gcc
79 x86-darwin12-gcc 79 x86-darwin12-gcc
80 x86-darwin13-gcc 80 x86-darwin13-gcc
81 x86-darwin14-gcc
81 x86-iphonesimulator-gcc 82 x86-iphonesimulator-gcc
82 x86-linux-gcc 83 x86-linux-gcc
83 x86-linux-icc 84 x86-linux-icc
84 x86-os2-gcc 85 x86-os2-gcc
85 x86-solaris-gcc 86 x86-solaris-gcc
86 x86-win32-gcc 87 x86-win32-gcc
87 x86-win32-vs7 88 x86-win32-vs7
88 x86-win32-vs8 89 x86-win32-vs8
89 x86-win32-vs9 90 x86-win32-vs9
90 x86-win32-vs10 91 x86-win32-vs10
91 x86-win32-vs11 92 x86-win32-vs11
92 x86-win32-vs12 93 x86-win32-vs12
93 x86_64-darwin9-gcc 94 x86_64-darwin9-gcc
94 x86_64-darwin10-gcc 95 x86_64-darwin10-gcc
95 x86_64-darwin11-gcc 96 x86_64-darwin11-gcc
96 x86_64-darwin12-gcc 97 x86_64-darwin12-gcc
97 x86_64-darwin13-gcc 98 x86_64-darwin13-gcc
99 x86_64-darwin14-gcc
98 x86_64-iphonesimulator-gcc 100 x86_64-iphonesimulator-gcc
99 x86_64-linux-gcc 101 x86_64-linux-gcc
100 x86_64-linux-icc 102 x86_64-linux-icc
101 x86_64-solaris-gcc 103 x86_64-solaris-gcc
102 x86_64-win64-gcc 104 x86_64-win64-gcc
103 x86_64-win64-vs8 105 x86_64-win64-vs8
104 x86_64-win64-vs9 106 x86_64-win64-vs9
105 x86_64-win64-vs10 107 x86_64-win64-vs10
106 x86_64-win64-vs11 108 x86_64-win64-vs11
107 x86_64-win64-vs12 109 x86_64-win64-vs12
108 universal-darwin8-gcc 110 universal-darwin8-gcc
109 universal-darwin9-gcc 111 universal-darwin9-gcc
110 universal-darwin10-gcc 112 universal-darwin10-gcc
111 universal-darwin11-gcc 113 universal-darwin11-gcc
112 universal-darwin12-gcc 114 universal-darwin12-gcc
113 universal-darwin13-gcc 115 universal-darwin13-gcc
116 universal-darwin14-gcc
114 generic-gnu 117 generic-gnu
115 118
116 The generic-gnu target, in conjunction with the CROSS environment variable, 119 The generic-gnu target, in conjunction with the CROSS environment variable,
117 can be used to cross compile architectures that aren't explicitly listed, if 120 can be used to cross compile architectures that aren't explicitly listed, if
118 the toolchain is a cross GNU (gcc/binutils) toolchain. Other POSIX toolchains 121 the toolchain is a cross GNU (gcc/binutils) toolchain. Other POSIX toolchains
119 will likely work as well. For instance, to build using the mipsel-linux-uclibc 122 will likely work as well. For instance, to build using the mipsel-linux-uclibc
120 toolchain, the following command could be used (note, POSIX SH syntax, adapt 123 toolchain, the following command could be used (note, POSIX SH syntax, adapt
121 to your shell as necessary): 124 to your shell as necessary):
122 125
123 $ CROSS=mipsel-linux-uclibc- ../libvpx/configure 126 $ CROSS=mipsel-linux-uclibc- ../libvpx/configure
(...skipping 12 matching lines...) Expand all
136 running configure. To specify an alternate directory the 139 running configure. To specify an alternate directory the
137 LIBVPX_TEST_DATA_PATH environment variable can be used. 140 LIBVPX_TEST_DATA_PATH environment variable can be used.
138 141
139 $ ./configure --enable-unit-tests 142 $ ./configure --enable-unit-tests
140 $ LIBVPX_TEST_DATA_PATH=../libvpx-test-data make testdata 143 $ LIBVPX_TEST_DATA_PATH=../libvpx-test-data make testdata
141 144
142 SUPPORT 145 SUPPORT
143 This library is an open source project supported by its community. Please 146 This library is an open source project supported by its community. Please
144 please email webm-discuss@webmproject.org for help. 147 please email webm-discuss@webmproject.org for help.
145 148
OLDNEW
« no previous file with comments | « source/libvpx/CHANGELOG ('k') | source/libvpx/build/make/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698