build: Don't strip Windows release binary

This commit is contained in:
Matt Borgerson 2023-07-20 17:39:12 -07:00 committed by mborgerson
parent ae55a3eb4d
commit 9ce3cab385

View file

@ -13,19 +13,12 @@ package_windows() {
mkdir -p dist
cp build/qemu-system-i386w.exe dist/xemu.exe
python3 "${project_source_dir}/get_deps.py" dist/xemu.exe dist
if [ "$debug" != "y" ]; then
strip dist/xemu.exe
fi
}
package_wincross() {
STRIP=${CROSSPREFIX}strip
rm -rf dist
mkdir -p dist
cp build/qemu-system-i386w.exe dist/xemu.exe
if [ "$debug" != "y" ]; then
$STRIP dist/xemu.exe
fi
python3 ./scripts/gen-license.py --platform windows > dist/LICENSE.txt
}