1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-29 17:52:18 +01:00

build: Don't strip binaries with --dev-build

This commit is contained in:
Joshua Ashton 2021-05-19 15:59:55 +01:00
parent 0520ce9448
commit a3d1699823
No known key found for this signature in database
GPG Key ID: C85A08669126BE8D

View File

@ -52,10 +52,15 @@ function build_arch {
cd "$DXVK_SRC_DIR"
opt_strip=
if [ $opt_devbuild -eq 0 ]; then
opt_strip=--strip
fi
meson --cross-file "$DXVK_SRC_DIR/$crossfile$1.txt" \
--buildtype "release" \
--prefix "$DXVK_BUILD_DIR" \
--strip \
$opt_strip \
--bindir "x$1" \
--libdir "x$1" \
-Denable_tests=false \