-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
crossfiles: Add android x86 and x86_64 crossfiles
When compiling dav1d for an android app, these architectures are required by default (along with arm and arm64 for which crossfiles already exist).
- Loading branch information
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[binaries] | ||
c = 'i686-linux-android19-clang' | ||
cpp = 'i686-linux-android19-clang++' | ||
ar = 'llvm-ar' | ||
strip = 'llvm-strip' | ||
pkgconfig = 'pkg-config' | ||
|
||
[properties] | ||
needs_exe_wrapper = true | ||
|
||
[host_machine] | ||
system = 'android' | ||
cpu_family = 'x86' | ||
cpu = 'i686' | ||
endian = 'little' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[binaries] | ||
c = 'x86_64-linux-android21-clang' | ||
cpp = 'x86_64-linux-android21-clang++' | ||
ar = 'llvm-ar' | ||
strip = 'llvm-strip' | ||
pkgconfig = 'pkg-config' | ||
|
||
[properties] | ||
needs_exe_wrapper = true | ||
|
||
[host_machine] | ||
system = 'android' | ||
cpu_family = 'x86_64' | ||
cpu = 'x86_64' | ||
endian = 'little' |