Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
libvlcjni
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Steve Lhomme
libvlcjni
Merge requests
!1
DO NOT MERGE: test building libvlc.so with outside script
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
DO NOT MERGE: test building libvlc.so with outside script
vlc-libvlc
into
master
Overview
0
Commits
7
Pipelines
14
Changes
7
Open
Steve Lhomme
requested to merge
vlc-libvlc
into
master
4 months ago
Overview
0
Commits
7
Pipelines
14
Changes
1
Expand
To allow standalone libvlcjni gradle build.
0
0
Merge request reports
Viewing commit
5dffe91a
Prev
Next
Show latest version
1 file
+
1
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
5dffe91a
WIP debug called commands
· 5dffe91a
Steve Lhomme
authored
4 months ago
buildsystem/build-libvlcjni.sh
+
0
−
11
Options
@@ -37,16 +37,12 @@ fi
# Set up ABI variables
if
[
"
${
ANDROID_ABI
}
"
=
"x86"
]
;
then
TARGET_TUPLE
=
"i686-linux-android"
CLANG_PREFIX
=
${
TARGET_TUPLE
}
elif
[
"
${
ANDROID_ABI
}
"
=
"x86_64"
]
;
then
TARGET_TUPLE
=
"x86_64-linux-android"
CLANG_PREFIX
=
${
TARGET_TUPLE
}
elif
[
"
${
ANDROID_ABI
}
"
=
"arm64-v8a"
]
;
then
TARGET_TUPLE
=
"aarch64-linux-android"
CLANG_PREFIX
=
${
TARGET_TUPLE
}
elif
[
"
${
ANDROID_ABI
}
"
=
"armeabi-v7a"
]
;
then
TARGET_TUPLE
=
"arm-linux-androideabi"
CLANG_PREFIX
=
"armv7a-linux-androideabi"
else
echo
"Please pass the ANDROID ABI to the correct architecture, using
compile-libvlc.sh -a ARCH
@@ -88,13 +84,6 @@ fi
VLC_BUILD_DIR
=
"
$(
cd
$VLC_SRC_DIR
/
;
pwd
)
/build-android-
${
TARGET_TUPLE
}
"
if
[
-z
$VLC_TARBALLS
]
;
then
VLC_TARBALLS
=
"
$(
cd
$VLC_SRC_DIR
/
;
pwd
)
/contrib/tarballs"
fi
if
[
!
-d
$VLC_TARBALLS
]
;
then
mkdir
-p
$VLC_TARBALLS
fi
VLC_OUT_PATH
=
"
$VLC_BUILD_DIR
/ndk"
mkdir
-p
$VLC_OUT_PATH
Loading