Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
bc8ec47b
Commit
bc8ec47b
authored
Feb 10, 2007
by
Måns Rullgård
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simplify altivec warning
Originally committed as revision 7916 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
412c1562
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
12 deletions
+9
-12
configure
configure
+9
-12
No files found.
configure
View file @
bc8ec47b
...
...
@@ -1289,40 +1289,37 @@ fi
# Add processor-specific flags
POWERPCMODE
=
"32bits"
if
test
$cpu
!=
"generic"
;
then
warn_altivec_enabled
(){
enabled altivec
&&
echo
"WARNING: Tuning for
$1
but AltiVec enabled."
;
}
warn_altivec_disabled
(){
disabled altivec
&&
echo
"WARNING: Tuning for
$1
but AltiVec disabled."
;
warn_altivec
(){
$1
altivec
&&
echo
"WARNING: Tuning for
$2
but AltiVec
$1
."
;
}
case
$cpu
in
601|ppc601|PowerPC601
)
add_cflags
"-mcpu=601"
warn_altivec
_
enabled PPC601
warn_altivec
enabled PPC601
;;
603
*
|
ppc603
*
|
PowerPC603
*
)
add_cflags
"-mcpu=603"
warn_altivec
_
enabled PPC603
warn_altivec
enabled PPC603
;;
604
*
|
ppc604
*
|
PowerPC604
*
)
add_cflags
"-mcpu=604"
warn_altivec
_
enabled PPC604
warn_altivec
enabled PPC604
;;
G3|g3|75
*
|
ppc75
*
|
PowerPC75
*
)
add_cflags
"-mcpu=750 -mpowerpc-gfxopt"
warn_altivec
_
enabled PPC75x
warn_altivec
enabled PPC75x
;;
G4|g4|745
*
|
ppc745
*
|
PowerPC745
*
)
add_cflags
"-mcpu=7450 -mpowerpc-gfxopt"
warn_altivec
_
disabled PPC745x
warn_altivec
disabled PPC745x
;;
74
*
|
ppc74
*
|
PowerPC74
*
)
add_cflags
"-mcpu=7400 -mpowerpc-gfxopt"
warn_altivec
_
disabled PPC74xx
warn_altivec
disabled PPC74xx
;;
G5|g5|970|ppc970|PowerPC970|power4
*
|
Power4
*
)
add_cflags
"-mcpu=970 -mpowerpc-gfxopt -mpowerpc64"
warn_altivec
_
disabled PPC970
warn_altivec
disabled PPC970
POWERPCMODE
=
"64bits"
;;
# targets that do NOT support conditional mov (cmov)
...
...
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