We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e97ffd commit b7bd335Copy full SHA for b7bd335
ci/all_tests.sh
@@ -86,6 +86,14 @@ export PATH="$(pwd)/$ROC_DIR:$PATH"
86
echo ""
87
echo "Using roc version: $(roc version)"
88
89
+if [ "$(uname -s)" = "Darwin" ] && [ -z "${SDKROOT:-}" ]; then
90
+ SDKROOT=$(xcrun --sdk macosx --show-sdk-path 2>/dev/null || true)
91
+ if [ -n "$SDKROOT" ]; then
92
+ export SDKROOT
93
+ echo "Using SDKROOT: $SDKROOT"
94
+ fi
95
+fi
96
+
97
# Build the platform
98
if [ "${NO_BUILD:-}" != "1" ]; then
99
0 commit comments