提交 e0d50867 编写于 作者: S Simon Fels

scripts: set explicit search path for libboost_log

上级 a0299a5e
......@@ -15,6 +15,14 @@ if [ ! -e $ANDROID_IMG ]; then
exit 1
fi
if [ "$SNAP_ARCH" == "amd64" ]; then
ARCH="x86_64-linux-gnu"
elif [ "$SNAP_ARCH" == "armhf" ]; then
ARCH="arm-linux-gnueabihf"
else
ARCH="$SNAP_ARCH-linux-gnu"
fi
start() {
# Make sure our setup path for the container rootfs
# is present as lxc is statically configured for
......@@ -36,7 +44,12 @@ start() {
fi
# liblxc.so.1 is in $SNAP/lib
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$SNAP/lib
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$SNAP/liblxc
# For unknown reason we got bug reports that the container manager failed to start
# because it cannot find libboost_log.so.1.58.0 To mitigate this we're adding the
# lib directory as explicit search target here.
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$SNAP/usr/lib/$ARCH
if [ -d /sys/kernel/security/apparmor ] ; then
# Load the profile for our Android container
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册