Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
external
libvpx
Commits
1c31e3ec
Commit
1c31e3ec
authored
10 years ago
by
Gordana Cmiljanovic
Committed by
James Zern
10 years ago
Browse files
Options
Download
Patches
Plain Diff
Add support for MIPS64.
Change-Id: I78e27bf942b4a825543e76be25546b6458bad8b6
parent
0b8b682b
v1.14.0-linphone
1.4.X
feature/update_to_v1.9.0-linphone
feature/uwp_nuget
highbitdepth
indianrunnerduck
javanwhistlingduck
khakicampbell
linphone
linphone-android
linphone-old
longtailedduck
m49-2623
m52-2743
m54-2840
m56-2924
m66-3359
m68-3440
mandarinduck
nextgen
nextgenv2
sandbox/Jingning/experimental
sandbox/Jingning/vpx
sandbox/aconverse@google.com/ansbench
sandbox/hkuang@google.com/decode
sandbox/jimbankoski@google.com/proposed-aom
sandbox/jingning@google.com/decoder_test_suite
sandbox/jingning@google.com/experimental
sandbox/jzern@google.com/test
sandbox/wangch@google.com/vp9
sandbox/yaowu@google.com/mergeaom
v1.12.0-linphone
v1.6.1_linphone
v1.7.0-linphone
v1.9.0-linphone
v1.9.0
v1.9.0-rc1
v1.8.2
v1.8.1
v1.8.0
v1.7.0
v1.6.1
v1.6.0
v1.5.0
v1.4.0
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README
+1
-0
README
build/make/rtcd.pl
+3
-3
build/make/rtcd.pl
configure
+3
-0
configure
with
7 additions
and
3 deletions
README
+
1
−
0
View file @
1c31e3ec
...
...
@@ -65,6 +65,7 @@ COMPILING THE APPLICATIONS/LIBRARIES:
armv7-win32-vs12
armv7s-darwin-gcc
mips32-linux-gcc
mips64-linux-gcc
ppc32-darwin8-gcc
ppc32-darwin9-gcc
ppc32-linux-gcc
...
...
This diff is collapsed.
Click to expand it.
build/make/rtcd.pl
+
3
−
3
View file @
1c31e3ec
...
...
@@ -365,13 +365,13 @@ if ($opts{arch} eq 'x86') {
@REQUIRES
=
filter
(
keys
%required
?
keys
%required
:
qw/mmx sse sse2/
);
&require
(
@REQUIRES
);
x86
;
}
elsif
(
$opts
{
arch
}
eq
'
mips32
')
{
@ALL_ARCHS
=
filter
(
qw/mips32/
);
}
elsif
(
$opts
{
arch
}
eq
'
mips32
'
||
$opts
{
arch
}
eq
'
mips64
'
)
{
@ALL_ARCHS
=
filter
(
"
$opts
{arch}
"
);
open
CONFIG_FILE
,
$opts
{
config
}
or
die
"
Error opening config file '
$opts
{config}': $!
\n
";
while
(
<
CONFIG_FILE
>
)
{
if
(
/HAVE_DSPR2=yes/
)
{
@ALL_ARCHS
=
filter
(
qw/mips32
dspr2/
);
@ALL_ARCHS
=
filter
(
"
$opts
{arch}
",
qw/
dspr2/
);
last
;
}
}
...
...
This diff is collapsed.
Click to expand it.
configure
+
3
−
0
View file @
1c31e3ec
...
...
@@ -111,6 +111,7 @@ all_platforms="${all_platforms} armv7-win32-vs11"
all_platforms
=
"
${
all_platforms
}
armv7-win32-vs12"
all_platforms
=
"
${
all_platforms
}
armv7s-darwin-gcc"
all_platforms
=
"
${
all_platforms
}
mips32-linux-gcc"
all_platforms
=
"
${
all_platforms
}
mips64-linux-gcc"
all_platforms
=
"
${
all_platforms
}
ppc32-darwin8-gcc"
all_platforms
=
"
${
all_platforms
}
ppc32-darwin9-gcc"
all_platforms
=
"
${
all_platforms
}
ppc32-linux-gcc"
...
...
@@ -254,6 +255,8 @@ ARCH_EXT_LIST="
mips32
dspr2
mips64
mmx
sse
sse2
...
...
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets