Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Ewout ter Hoeven
VLC-Android
Commits
f5f266ed
Commit
f5f266ed
authored
Feb 18, 2015
by
Thomas Guillem
Browse files
Fix chromeOS build
Add hack to deactivate eventfd, and build chrome in a separate folder.
parent
b22311ca
Changes
2
Hide whitespace changes
Inline
Side-by-side
compile-libvlc.sh
View file @
f5f266ed
...
...
@@ -28,6 +28,9 @@ while [ $# -gt 0 ]; do
ANDROID_ABI
=
$2
shift
;;
-c
)
CHROME_OS
=
1
;;
release|--release
)
RELEASE
=
1
;;
...
...
@@ -471,7 +474,13 @@ cd ../../
# BUILD DIRECTORY #
###################
VLC_BUILD_DIR
=
build-android-
${
TARGET_TUPLE
}
if
[
"
${
CHROME_OS
}
"
=
"1"
]
;
then
VLC_BUILD_DIR
=
build-chrome-
${
TARGET_TUPLE
}
export
ac_cv_func_eventfd
=
no
export
ac_cv_header_sys_eventfd_h
=
no
else
VLC_BUILD_DIR
=
build-android-
${
TARGET_TUPLE
}
fi
mkdir
-p
$VLC_BUILD_DIR
&&
cd
$VLC_BUILD_DIR
#############
...
...
compile.sh
View file @
f5f266ed
...
...
@@ -158,6 +158,9 @@ OPTS="-a ${ANDROID_ABI}"
if
[
"
$RELEASE
"
=
1
]
;
then
OPTS
=
"
$OPTS
release"
fi
if
[
"
$CHROME_OS
"
=
1
]
;
then
OPTS
=
"
$OPTS
-c"
fi
./compile-libvlc.sh
$OPTS
...
...
Write
Preview
Supports
Markdown
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