Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
1c31e3ec
Commit
1c31e3ec
authored
Aug 07, 2014
by
Gordana Cmiljanovic
Committed by
James Zern
Aug 15, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for MIPS64.
Change-Id: I78e27bf942b4a825543e76be25546b6458bad8b6
parent
0b8b682b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
3 deletions
+7
-3
README
README
+1
-0
build/make/rtcd.pl
build/make/rtcd.pl
+3
-3
configure
configure
+3
-0
No files found.
README
View file @
1c31e3ec
...
@@ -65,6 +65,7 @@ COMPILING THE APPLICATIONS/LIBRARIES:
...
@@ -65,6 +65,7 @@ COMPILING THE APPLICATIONS/LIBRARIES:
armv7-win32-vs12
armv7-win32-vs12
armv7s-darwin-gcc
armv7s-darwin-gcc
mips32-linux-gcc
mips32-linux-gcc
mips64-linux-gcc
ppc32-darwin8-gcc
ppc32-darwin8-gcc
ppc32-darwin9-gcc
ppc32-darwin9-gcc
ppc32-linux-gcc
ppc32-linux-gcc
...
...
build/make/rtcd.pl
View file @
1c31e3ec
...
@@ -365,13 +365,13 @@ if ($opts{arch} eq 'x86') {
...
@@ -365,13 +365,13 @@ if ($opts{arch} eq 'x86') {
@REQUIRES
=
filter
(
keys
%required
?
keys
%required
:
qw/mmx sse sse2/
);
@REQUIRES
=
filter
(
keys
%required
?
keys
%required
:
qw/mmx sse sse2/
);
&require
(
@REQUIRES
);
&require
(
@REQUIRES
);
x86
;
x86
;
}
elsif
(
$opts
{
arch
}
eq
'
mips32
')
{
}
elsif
(
$opts
{
arch
}
eq
'
mips32
'
||
$opts
{
arch
}
eq
'
mips64
'
)
{
@ALL_ARCHS
=
filter
(
qw/mips32/
);
@ALL_ARCHS
=
filter
(
"
$opts
{arch}
"
);
open
CONFIG_FILE
,
$opts
{
config
}
or
open
CONFIG_FILE
,
$opts
{
config
}
or
die
"
Error opening config file '
$opts
{config}': $!
\n
";
die
"
Error opening config file '
$opts
{config}': $!
\n
";
while
(
<
CONFIG_FILE
>
)
{
while
(
<
CONFIG_FILE
>
)
{
if
(
/HAVE_DSPR2=yes/
)
{
if
(
/HAVE_DSPR2=yes/
)
{
@ALL_ARCHS
=
filter
(
qw/mips32
dspr2/
);
@ALL_ARCHS
=
filter
(
"
$opts
{arch}
",
qw/
dspr2/
);
last
;
last
;
}
}
}
}
...
...
configure
View file @
1c31e3ec
...
@@ -111,6 +111,7 @@ all_platforms="${all_platforms} armv7-win32-vs11"
...
@@ -111,6 +111,7 @@ all_platforms="${all_platforms} armv7-win32-vs11"
all_platforms
=
"
${
all_platforms
}
armv7-win32-vs12"
all_platforms
=
"
${
all_platforms
}
armv7-win32-vs12"
all_platforms
=
"
${
all_platforms
}
armv7s-darwin-gcc"
all_platforms
=
"
${
all_platforms
}
armv7s-darwin-gcc"
all_platforms
=
"
${
all_platforms
}
mips32-linux-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-darwin8-gcc"
all_platforms
=
"
${
all_platforms
}
ppc32-darwin9-gcc"
all_platforms
=
"
${
all_platforms
}
ppc32-darwin9-gcc"
all_platforms
=
"
${
all_platforms
}
ppc32-linux-gcc"
all_platforms
=
"
${
all_platforms
}
ppc32-linux-gcc"
...
@@ -254,6 +255,8 @@ ARCH_EXT_LIST="
...
@@ -254,6 +255,8 @@ ARCH_EXT_LIST="
mips32
mips32
dspr2
dspr2
mips64
mmx
mmx
sse
sse
sse2
sse2
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment