Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
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:
armv7-win32-vs12
armv7s-darwin-gcc
mips32-linux-gcc
mips64-linux-gcc
ppc32-darwin8-gcc
ppc32-darwin9-gcc
ppc32-linux-gcc
...
...
build/make/rtcd.pl
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
;
}
}
...
...
configure
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
...
...
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