Skip to content

Commit 26cfbd8

Browse files
committed
Remove --timings from cargo build commands
Remove the --timings flag from cargo build invocations in the build-targets recipe of gemstone/justfile. The change updates both the x86_64 (x86_64-apple-ios) and aarch64 (aarch64-apple-ios-sim, aarch64-apple-ios, aarch64-apple-ios-macabi, aarch64-apple-darwin) branches so builds no longer pass the --timings option.
1 parent 14dabd6 commit 26cfbd8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

gemstone/justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ build-targets:
6969
#!/usr/bin/env bash
7070
echo "Host: ${HOST_ARCH}, iOS deployment target ${DEPLOYMENT_TARGET}, BUILD_MODE_TARGET: ${BUILD_MODE_TARGET}"
7171
if [ ${HOST_ARCH} == "x86_64" ]; then \
72-
IPHONEOS_DEPLOYMENT_TARGET=${DEPLOYMENT_TARGET} cargo build --timings --target x86_64-apple-ios ${BUILD_FLAG}; \
72+
IPHONEOS_DEPLOYMENT_TARGET=${DEPLOYMENT_TARGET} cargo build --target x86_64-apple-ios ${BUILD_FLAG}; \
7373
else \
74-
IPHONEOS_DEPLOYMENT_TARGET=${DEPLOYMENT_TARGET} cargo build --timings --target aarch64-apple-ios-sim --target aarch64-apple-ios --target aarch64-apple-ios-macabi --target aarch64-apple-darwin ${BUILD_FLAG}; \
74+
IPHONEOS_DEPLOYMENT_TARGET=${DEPLOYMENT_TARGET} cargo build --target aarch64-apple-ios-sim --target aarch64-apple-ios --target aarch64-apple-ios-macabi --target aarch64-apple-darwin ${BUILD_FLAG}; \
7575
fi
7676

7777
bindgen-swift:

0 commit comments

Comments
 (0)