mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-02-06 22:54:16 +01:00
build: Don't strip binaries with --dev-build
This commit is contained in:
parent
0520ce9448
commit
a3d1699823
@ -52,10 +52,15 @@ function build_arch {
|
|||||||
|
|
||||||
cd "$DXVK_SRC_DIR"
|
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" \
|
meson --cross-file "$DXVK_SRC_DIR/$crossfile$1.txt" \
|
||||||
--buildtype "release" \
|
--buildtype "release" \
|
||||||
--prefix "$DXVK_BUILD_DIR" \
|
--prefix "$DXVK_BUILD_DIR" \
|
||||||
--strip \
|
$opt_strip \
|
||||||
--bindir "x$1" \
|
--bindir "x$1" \
|
||||||
--libdir "x$1" \
|
--libdir "x$1" \
|
||||||
-Denable_tests=false \
|
-Denable_tests=false \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user