From e31a7b9dc5d321f20da5bb13b70635bbffee8882 Mon Sep 17 00:00:00 2001 From: Naruto TAKAHASHI Date: Tue, 2 Sep 2025 20:23:29 +0900 Subject: [PATCH] compiledb=no --- scripts/release-gdextension-android.sh | 6 +++--- scripts/release-gdextension-ios.sh | 4 ++-- scripts/release-gdextension-linux.sh | 2 +- scripts/release-gdextension-macos.sh | 2 +- scripts/release-gdextension-web.sh | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/scripts/release-gdextension-android.sh b/scripts/release-gdextension-android.sh index 8f934fe..737e2d6 100755 --- a/scripts/release-gdextension-android.sh +++ b/scripts/release-gdextension-android.sh @@ -11,9 +11,9 @@ BINDIR=$(pwd)/bin/android /bin/rm -rf ${BINDIR} targets=("template_release" "template_debug") for target in ${targets[@]}; do - scripts/build-extension.sh platform=android arch=arm32 strip=yes target=${target} - scripts/build-extension.sh platform=android arch=arm64 strip=yes target=${target} - scripts/build-extension.sh platform=android arch=x86_64 strip=yes target=${target} + scripts/build-extension.sh platform=android arch=arm32 compiledb=no strip=yes target=${target} + scripts/build-extension.sh platform=android arch=arm64 compiledb=no strip=yes target=${target} + scripts/build-extension.sh platform=android arch=x86_64 compiledb=no strip=yes target=${target} done popd > /dev/null # ${ROOTDIR} diff --git a/scripts/release-gdextension-ios.sh b/scripts/release-gdextension-ios.sh index 82a110c..dd0a5ed 100755 --- a/scripts/release-gdextension-ios.sh +++ b/scripts/release-gdextension-ios.sh @@ -12,8 +12,8 @@ BINDIR=$(pwd)/bin/ios /bin/rm -rf ${BINDIR} targets=("template_release" "template_debug") for target in ${targets[@]}; do -# scripts/build-extension.sh platform=ios arch=universal strip=yes target=${target} ios_simulator=yes - scripts/build-extension.sh platform=ios arch=universal strip=yes target=${target} ios_simulator=no +# scripts/build-extension.sh platform=ios arch=universal compiledb=no strip=yes target=${target} ios_simulator=yes + scripts/build-extension.sh platform=ios arch=universal compiledb=no strip=yes target=${target} ios_simulator=no done pushd ${BINDIR} diff --git a/scripts/release-gdextension-linux.sh b/scripts/release-gdextension-linux.sh index 6b63659..61a6467 100755 --- a/scripts/release-gdextension-linux.sh +++ b/scripts/release-gdextension-linux.sh @@ -10,7 +10,7 @@ pushd ${ROOTDIR} > /dev/null targets=("editor" "template_release" "template_debug") for target in ${targets[@]}; do - scripts/build-extension.sh platform=linux strip=yes target=${target} + scripts/build-extension.sh platform=linux compiledb=no strip=yes target=${target} done popd > /dev/null # ${ROOTDIR} diff --git a/scripts/release-gdextension-macos.sh b/scripts/release-gdextension-macos.sh index 456dac1..188f7fc 100755 --- a/scripts/release-gdextension-macos.sh +++ b/scripts/release-gdextension-macos.sh @@ -11,7 +11,7 @@ BINDIR=$(pwd)/bin/macos /bin/rm -rf ${BINDIR} targets=("editor" "template_release" "template_debug") for target in ${targets[@]}; do - scripts/build-extension.sh platform=macos arch=universal strip=yes target=${target} + scripts/build-extension.sh platform=macos arch=universal compiledb=no strip=yes target=${target} done /bin/rm -rf bin/macos/macos.framework diff --git a/scripts/release-gdextension-web.sh b/scripts/release-gdextension-web.sh index ae5aacb..879e85a 100755 --- a/scripts/release-gdextension-web.sh +++ b/scripts/release-gdextension-web.sh @@ -11,8 +11,8 @@ BINDIR=$(pwd)/bin/web /bin/rm -rf ${BINDIR} targets=("template_release" "template_debug") for target in ${targets[@]}; do - scripts/build-extension.sh platform=web arch=wasm32 strip=yes target=${target} - scripts/build-extension.sh platform=web arch=wasm32 strip=yes target=${target} threads=no + scripts/build-extension.sh platform=web arch=wasm32 compiledb=no strip=yes target=${target} + scripts/build-extension.sh platform=web arch=wasm32 compiledb=no strip=yes target=${target} threads=no done popd > /dev/null # ${ROOTDIR}