Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/doitsujin/dxvk.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Ashton <joshua@froggi.es>2021-05-19 17:59:55 +0300
committerJoshua Ashton <joshua@froggi.es>2021-05-19 17:59:55 +0300
commita3d169982395d9e5ff6f71d304651203adcfc86e (patch)
treeb7abaed15b9d1b4e890dc944069c4aa16bdc5120 /package-release.sh
parent0520ce944813d936e61a559b6bde62b19326599b (diff)
build: Don't strip binaries with --dev-build
Diffstat (limited to 'package-release.sh')
-rwxr-xr-xpackage-release.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/package-release.sh b/package-release.sh
index 935b2ae0..9318226c 100755
--- a/package-release.sh
+++ b/package-release.sh
@@ -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 \