Skip to content
Snippets Groups Projects
Commit 57e3e13d authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen
Browse files

win32: build.sh: Add breakpad support


(cherry picked from commit 7610a35a)
Signed-off-by: default avatarHugo Beauzée-Luyssen <hugo@beauzee.fr>
parent 5722b52d
No related branches found
No related tags found
No related merge requests found
......@@ -25,11 +25,12 @@ OPTIONS:
-c Create a Prebuilt contrib package (rarely used)
-l Enable translations (can be slow)
-i <n|r|u> Create an Installer (n: nightly, r: release, u: unsigned release archive)
-b <url> Enable breakpad support and send crash reports to this URL
EOF
}
ARCH="x86_64"
while getopts "hra:pcli:" OPTION
while getopts "hra:pcli:b:" OPTION
do
case $OPTION in
h)
......@@ -55,6 +56,9 @@ do
i)
INSTALLER=$OPTARG
;;
b)
BREAKPAD=$OPTARG
;;
esac
done
shift $(($OPTIND - 1))
......@@ -112,7 +116,10 @@ export PKG_CONFIG_LIBDIR=$PWD/contrib/$TRIPLET/lib/pkgconfig
export PATH=$PWD/contrib/$TRIPLET/bin:$PATH
echo $PATH
./bootstrap
if [ ! -z "$BREAKPAD" ]; then
CONFIGFLAGS="$CONFIGFLAGS --with-breakpad=$BREAKPAD"
fi
./bootstrap $CONTRIBFLAGS
info "Configuring VLC"
mkdir $SHORTARCH || true
......@@ -125,6 +132,10 @@ fi
if [ "$I18N" != "yes" ]; then
CONFIGFLAGS="$CONFIGFLAGS --disable-nls"
fi
if [ ! -z "$BREAKPAD" ]; then
CONFIGFLAGS="$CONFIGFLAGS --with-breakpad=$BREAKPAD"
fi
../extras/package/win32/configure.sh --host=$TRIPLET $CONFIGFLAGS
info "Compiling"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment