mirror of https://github.com/xemu-project/xemu.git
build: Don't strip Windows release binary
This commit is contained in:
parent
ae55a3eb4d
commit
9ce3cab385
7
build.sh
7
build.sh
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue