Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
videolan
vlc
Commits
e3aa96b9
Commit
e3aa96b9
authored
Oct 09, 2014
by
Thomas Guillem
Committed by
Rémi Denis-Courmont
Oct 09, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
contrib: fix cross-compile for aarch64
Signed-off-by:
Rémi Denis-Courmont
<
remi@remlab.net
>
parent
e8ba5754
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
contrib/src/ffmpeg/rules.mak
contrib/src/ffmpeg/rules.mak
+7
-0
contrib/src/postproc/rules.mak
contrib/src/postproc/rules.mak
+5
-0
No files found.
contrib/src/ffmpeg/rules.mak
View file @
e3aa96b9
...
@@ -81,6 +81,13 @@ FFMPEGCONF += --cpu=armv6 --disable-neon
...
@@ -81,6 +81,13 @@ FFMPEGCONF += --cpu=armv6 --disable-neon
endif
endif
endif
endif
# ARM64 stuff
ifeq
($(ARCH),aarch64)
ifndef
HAVE_DARWIN_OS
FFMPEGCONF
+=
--arch
=
aarch64
endif
endif
# MIPS stuff
# MIPS stuff
ifeq
($(ARCH),mipsel)
ifeq
($(ARCH),mipsel)
FFMPEGCONF
+=
--arch
=
mips
FFMPEGCONF
+=
--arch
=
mips
...
...
contrib/src/postproc/rules.mak
View file @
e3aa96b9
...
@@ -35,6 +35,11 @@ POSTPROCCONF += --enable-neon
...
@@ -35,6 +35,11 @@ POSTPROCCONF += --enable-neon
endif
endif
endif
endif
# ARM64 stuff
ifeq
($(ARCH),aarch64)
POSTPROCCONF
+=
--arch
=
aarch64
endif
# MIPS stuff
# MIPS stuff
ifeq
($(ARCH),mipsel)
ifeq
($(ARCH),mipsel)
POSTPROCCONF
+=
--arch
=
mips
POSTPROCCONF
+=
--arch
=
mips
...
...
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