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
d76479c5
Commit
d76479c5
authored
Jun 12, 2017
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ppc: Drop support for Apple GCC
Apple GCC has not been a thing anymore on PowerPC since many years.
parent
97cfe1d8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
11 deletions
+4
-11
configure
configure
+3
-7
util_altivec.h
libavutil/ppc/util_altivec.h
+1
-4
No files found.
configure
View file @
d76479c5
...
...
@@ -1547,7 +1547,6 @@ HAVE_LIST_PUB="
HEADERS_LIST
=
"
AVFoundation_AVFoundation_h
alsa_asoundlib_h
altivec_h
arpa_inet_h
cdio_paranoia_h
cdio_paranoia_paranoia_h
...
...
@@ -4442,15 +4441,12 @@ elif enabled ppc; then
check_inline_asm ppc4xx
'"maclhw r10, r11, r12"'
check_inline_asm xform_asm
'"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
# AltiVec flags: The FSF version of GCC differs from the Apple version
if
enabled altivec
;
then
check_cflags
-maltivec
-mabi
=
altivec
&&
{
check_header altivec.h
&&
inc_altivec_h
=
"#include <altivec.h>"
;
}
||
check_cflags
-faltivec
check_cflags
-maltivec
-mabi
=
altivec
# check if our compiler supports Motorola AltiVec C API
check_cc
<<
EOF
|| disable altivec
$inc_altivec_h
#include <altivec.h>
int main(void) {
vector signed int v1 = (vector signed int) { 0 };
vector signed int v2 = (vector signed int) { 1 };
...
...
@@ -4465,7 +4461,7 @@ EOF
if
enabled vsx
;
then
check_cflags
-mvsx
&&
check_cc
<<
EOF
|| disable vsx
$inc_altivec_h
#include <altivec.h>
int main(void) {
int v[4] = { 0 };
vector signed int v1 = vec_vsx_ld(0, v);
...
...
libavutil/ppc/util_altivec.h
View file @
d76479c5
...
...
@@ -28,10 +28,6 @@
#include "config.h"
#if HAVE_ALTIVEC_H
#include <altivec.h>
#endif
/***********************************************************************
* Vector types
**********************************************************************/
...
...
@@ -56,6 +52,7 @@
#define zero_s32v (vec_s32) zerov
#if HAVE_ALTIVEC
#include <altivec.h>
// used to build registers permutation vectors (vcprm)
// the 's' are for words in the _s_econd vector
...
...
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