this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use macOS 26

+52 -473
+38 -38
.github/workflows/build-and-release.yml
··· 19 19 20 20 jobs: 21 21 build-and-release: 22 - runs-on: macos-15 23 - 22 + runs-on: macos-26 23 + 24 24 outputs: 25 25 archive_name: ${{ steps.create_archive.outputs.archive_name }} 26 26 archive_sha256: ${{ steps.create_archive.outputs.sha256 }} ··· 34 34 with: 35 35 fetch-depth: 0 36 36 token: ${{ secrets.GITHUB_TOKEN }} 37 - 37 + 38 38 - name: Setup Xcode 39 39 uses: maxim-lobanov/setup-xcode@v1 40 40 with: 41 - xcode-version: '16.3' 42 - 41 + xcode-version: latest-stable 42 + 43 43 - name: Install dependencies 44 44 run: | 45 45 brew install jq 46 - 46 + 47 47 - name: Extract version from tag 48 48 id: version 49 49 run: | ··· 61 61 TAG=${GITHUB_REF#refs/tags/} 62 62 echo "Using tag from release event: $TAG" 63 63 fi 64 - 64 + 65 65 VERSION=${TAG#v} 66 66 echo "version=$VERSION" >> $GITHUB_OUTPUT 67 67 echo "tag=$TAG" >> $GITHUB_OUTPUT ··· 79 79 id: idb_check 80 80 run: | 81 81 set -e 82 - 82 + 83 83 # Get latest remote commit 84 84 REMOTE_COMMIT=$(git ls-remote https://github.com/facebook/idb.git HEAD | cut -f1) 85 85 echo "Latest IDB commit on remote: $REMOTE_COMMIT" 86 - 86 + 87 87 if [ -d "idb_checkout" ] && [ -d "idb_checkout/.git" ]; then 88 88 # We have a cached repo, check if it's up to date 89 89 LOCAL_COMMIT=$(git -C idb_checkout rev-parse HEAD) 90 90 echo "Cached IDB commit: $LOCAL_COMMIT" 91 - 91 + 92 92 if [ "$LOCAL_COMMIT" = "$REMOTE_COMMIT" ]; then 93 93 echo "✅ Cached IDB repository is up to date" 94 94 echo "needs_setup=false" >> $GITHUB_OUTPUT ··· 101 101 echo "📥 No cached IDB repository found, needs setup" 102 102 echo "needs_setup=true" >> $GITHUB_OUTPUT 103 103 fi 104 - 104 + 105 105 # Always output the remote commit for cache keys 106 106 echo "idb_commit=$REMOTE_COMMIT" >> $GITHUB_OUTPUT 107 107 ··· 138 138 DEVELOPER_ID_APPLICATION_PASSWORD: ${{ secrets.DEVELOPER_ID_APPLICATION_PASSWORD }} 139 139 run: | 140 140 set -e 141 - if [ -z "$DEVELOPER_ID_APPLICATION_P12" ]; then 141 + if [ -z "$DEVELOPER_ID_APPLICATION_P12" ]; then 142 142 echo "⚠️ No certificate provided - builds will be unsigned" 143 143 exit 0 144 144 fi 145 - 145 + 146 146 echo "🔐 Setting up code signing certificate..." 147 147 KEYCHAIN_PATH="$RUNNER_TEMP/build.keychain" 148 148 KEYCHAIN_PASSWORD=$(openssl rand -base64 32) 149 - 149 + 150 150 # Create and configure keychain 151 151 security create-keychain -p "$KEYCHAIN_PASSWORD" "$KEYCHAIN_PATH" 152 152 security set-keychain-settings -lut 21600 "$KEYCHAIN_PATH" 153 153 security unlock-keychain -p "$KEYCHAIN_PASSWORD" "$KEYCHAIN_PATH" 154 - 154 + 155 155 # Import certificate 156 156 echo "$DEVELOPER_ID_APPLICATION_P12" | base64 --decode > "$RUNNER_TEMP/certificate.p12" 157 - if [ -z "$DEVELOPER_ID_APPLICATION_PASSWORD" ]; then 157 + if [ -z "$DEVELOPER_ID_APPLICATION_PASSWORD" ]; then 158 158 security import "$RUNNER_TEMP/certificate.p12" -A -t cert -f pkcs12 -k "$KEYCHAIN_PATH" 159 159 else 160 160 security import "$RUNNER_TEMP/certificate.p12" -P "$DEVELOPER_ID_APPLICATION_PASSWORD" -A -t cert -f pkcs12 -k "$KEYCHAIN_PATH" 161 161 fi 162 - 162 + 163 163 # Configure keychain 164 164 security list-keychains -d user -s "$KEYCHAIN_PATH" $(security list-keychains -d user | sed s/\"//g) 165 165 security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k "$KEYCHAIN_PASSWORD" "$KEYCHAIN_PATH" 166 - 166 + 167 167 echo "✅ Code signing certificate imported successfully" 168 168 169 169 - name: Setup - Prepare notarization API key ··· 171 171 NOTARIZE_APP_STORE_CONNECT_API_KEY: ${{ secrets.NOTARIZE_APP_STORE_CONNECT_API_KEY }} 172 172 run: | 173 173 set -e 174 - if [ -z "$NOTARIZE_APP_STORE_CONNECT_API_KEY" ]; then 174 + if [ -z "$NOTARIZE_APP_STORE_CONNECT_API_KEY" ]; then 175 175 echo "❌ ERROR: Notarization API key is required but not provided" 176 176 echo "Please set NOTARIZE_APP_STORE_CONNECT_API_KEY secret in repository settings" 177 177 exit 1 178 178 fi 179 - 179 + 180 180 echo "🔑 Setting up notarization API key..." 181 181 mkdir -p keys 182 182 echo "$NOTARIZE_APP_STORE_CONNECT_API_KEY" | base64 --decode > keys/AuthKey_${{ secrets.NOTARIZE_APP_STORE_CONNECT_API_KEY_ID }}.p8 ··· 190 190 if: steps.idb_check.outputs.needs_setup == 'true' 191 191 run: scripts/build.sh xcframeworks 192 192 193 - - name: Sign - XCFramework bundles 193 + - name: Sign - XCFramework bundles 194 194 if: steps.idb_check.outputs.needs_setup == 'true' 195 195 run: scripts/build.sh sign-xcframeworks 196 196 ··· 198 198 if: steps.idb_check.outputs.needs_setup == 'true' 199 199 run: | 200 200 set -e 201 - 201 + 202 202 echo "🔄 Committing updated XCFrameworks to repository..." 203 - 203 + 204 204 # Configure git 205 205 git config --local user.email "action@github.com" 206 206 git config --local user.name "GitHub Action" 207 - 207 + 208 208 # Add the XCFrameworks directory 209 209 git add build_products/XCFrameworks/ 210 - 210 + 211 211 # Check if there are changes to commit 212 212 if git diff --staged --quiet; then 213 213 echo "ℹ️ No changes to XCFrameworks detected, skipping commit" 214 214 else 215 215 git commit -m "Update XCFrameworks to IDB commit ${{ steps.idb_check.outputs.idb_commit }}" 216 - 217 - # Push to the main branch 216 + 217 + # Push to the main branch 218 218 git push origin HEAD:main 219 219 echo "✅ XCFrameworks committed and pushed successfully" 220 220 fi ··· 276 276 run: | 277 277 ARCHIVE_NAME="${{ env.ARCHIVE_NAME }}-${{ steps.version.outputs.tag }}.tar.gz" 278 278 echo "archive_name=$ARCHIVE_NAME" >> $GITHUB_OUTPUT 279 - 279 + 280 280 PACKAGE_PATH="${{ steps.notarize.outputs.package_path }}" 281 281 if [ -f "$PACKAGE_PATH" ]; then 282 282 echo "📦 Creating release archive from: $PACKAGE_PATH" 283 - 283 + 284 284 # Extract the package to create the tar.gz 285 285 TEMP_EXTRACT="$RUNNER_TEMP/extract" 286 286 mkdir -p "$TEMP_EXTRACT" 287 287 unzip -q "$PACKAGE_PATH" -d "$TEMP_EXTRACT" 288 - 288 + 289 289 # Create tar.gz from extracted contents 290 290 tar -czf "$ARCHIVE_NAME" -C "$TEMP_EXTRACT" . 291 - 291 + 292 292 # Calculate SHA256 293 293 SHA256=$(shasum -a 256 "$ARCHIVE_NAME" | awk '{print $1}') 294 294 echo "sha256=$SHA256" >> $GITHUB_OUTPUT ··· 304 304 run: | 305 305 ASSET_NAME="${{ steps.create_archive.outputs.archive_name }}" 306 306 echo "🗑️ Checking for existing asset: $ASSET_NAME" 307 - 307 + 308 308 # Get the release ID 309 309 RELEASE_ID=$(gh api repos/${{ github.repository }}/releases/tags/${{ steps.version.outputs.tag }} --jq '.id') 310 - 310 + 311 311 # Try to delete existing asset with same name 312 312 gh api repos/${{ github.repository }}/releases/$RELEASE_ID/assets --jq '.[] | select(.name == "'"$ASSET_NAME"'") | .id' | while read asset_id; do 313 313 if [ -n "$asset_id" ]; then ··· 340 340 341 341 - name: Update Homebrew tap 342 342 if: | 343 - (github.event_name == 'release' && !github.event.release.prerelease) || 343 + (github.event_name == 'release' && !github.event.release.prerelease) || 344 344 (github.event_name == 'workflow_dispatch') 345 345 env: 346 346 HOMEBREW_TAP_TOKEN: ${{ secrets.HOMEBREW_TAP_TOKEN }} ··· 350 350 echo "⚠️ Homebrew tap update skipped - no token provided" 351 351 exit 0 352 352 fi 353 - 353 + 354 354 if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then 355 355 echo "🍺 Updating Homebrew tap (manual trigger)..." 356 356 else 357 357 echo "🍺 Updating Homebrew tap (release event)..." 358 358 fi 359 - 359 + 360 360 git clone https://x-access-token:${HOMEBREW_TAP_TOKEN}@github.com/cameroncooke/homebrew-axe.git tap-repo 361 361 cd tap-repo 362 - 362 + 363 363 FORMULA_FILE="Formula/axe.rb" 364 364 URL="https://github.com/${{ github.repository }}/releases/download/${{ steps.version.outputs.tag }}/${{ steps.create_archive.outputs.archive_name }}" 365 365 SHA256="${{ steps.create_archive.outputs.sha256 }}" ··· 390 390 echo "🧹 Cleaning up sensitive files..." 391 391 rm -rf keys/ 392 392 rm -f "$RUNNER_TEMP"/*.p12 393 - echo "✅ Cleanup completed" 393 + echo "✅ Cleanup completed"
-421
AxePlaygroundApp/Makefile
··· 1 - # 2 - # Generated Sat May 31 22:01:28 2025 from 3 - # /usr/bin/xcodebuild ARCHS=arm64 -project AxePlayground.xcodeproj -scheme AxePlayground -configuration Debug -skipMacroValidation -destination platform=iOS Simulator,name=iPhone 16,OS=latest build -config Debug 4 - # 5 - 6 - default: main 7 - 8 - # Command line invocation: 9 - # /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -project AxePlayground.xcodeproj -scheme AxePlayground -configuration Debug -skipMacroValidation -destination "platform=iOS Simulator,name=iPhone 16,OS=latest" build 10 - # 11 - # ComputePackagePrebuildTargetDependencyGraph 12 - # 13 - # Prepare packages 14 - # 15 - # CreateBuildRequest 16 - # 17 - # SendProjectDescription 18 - # 19 - # CreateBuildOperation 20 - # 21 - # ComputeTargetDependencyGraph 22 - # note: Building targets in dependency order 23 - # note: Target dependency graph (1 target) 24 - # Target 'AxePlayground' in project 'AxePlayground' (no dependencies) 25 - # 26 - # GatherProvisioningInputs 27 - # 28 - # CreateBuildDescription 29 - # 30 - # ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator18.4.sdk -x c -c /dev/null 31 - # 32 - # ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/actool --print-asset-tag-combinations --output-format xml1 /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Assets.xcassets 33 - # 34 - # ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/actool --version --output-format xml1 35 - # 36 - # ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version 37 - # 38 - # ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details 39 - # 40 - # Build description signature: 64e9e353692fecaa65e74eeeb603548b 41 - # Build description path: /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/XCBuildData/64e9e353692fecaa65e74eeeb603548b.xcbuilddata 42 - # ClangStatCache /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator18.4.sdk /Users/cameroncooke/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator18.4-22E235-43e5fd89280df366c77438703b8fa853.sdkstatcache 43 - # cd /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground.xcodeproj 44 - # /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator18.4.sdk -o /Users/cameroncooke/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator18.4-22E235-43e5fd89280df366c77438703b8fa853.sdkstatcache 45 - # 46 - # CreateBuildDirectory /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products 47 - # cd /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground.xcodeproj 48 - # builtin-create-build-directory /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products 49 - # 50 - # CreateBuildDirectory /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex 51 - # cd /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground.xcodeproj 52 - # builtin-create-build-directory /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex 53 - # 54 - # CreateBuildDirectory /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator 55 - # cd /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground.xcodeproj 56 - # builtin-create-build-directory /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator 57 - # 58 - # CreateBuildDirectory /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphonesimulator 59 - # cd /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground.xcodeproj 60 - # builtin-create-build-directory /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphonesimulator 61 - # 62 - # WriteAuxiliaryFile /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground-d34930091e7884584534bf5d67465cd6-VFS-iphonesimulator/all-product-headers.yaml 63 - # cd /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground.xcodeproj 64 - # write-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground-d34930091e7884584534bf5d67465cd6-VFS-iphonesimulator/all-product-headers.yaml 65 - # 66 - # WriteAuxiliaryFile /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/empty-AxePlayground.plist (in target 'AxePlayground' from project 'AxePlayground') 67 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 68 - # write-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/empty-AxePlayground.plist 69 - # 70 - # WriteAuxiliaryFile /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground.hmap (in target 'AxePlayground' from project 'AxePlayground') 71 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 72 - # write-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground.hmap 73 - # 74 - # WriteAuxiliaryFile /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-project-headers.hmap (in target 'AxePlayground' from project 'AxePlayground') 75 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 76 - # write-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-project-headers.hmap 77 - # 78 - # WriteAuxiliaryFile /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground_const_extract_protocols.json (in target 'AxePlayground' from project 'AxePlayground') 79 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 80 - # write-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground_const_extract_protocols.json 81 - # 82 - # WriteAuxiliaryFile /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/Entitlements-Simulated.plist (in target 'AxePlayground' from project 'AxePlayground') 83 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 84 - # write-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/Entitlements-Simulated.plist 85 - # 86 - # WriteAuxiliaryFile /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-generated-files.hmap (in target 'AxePlayground' from project 'AxePlayground') 87 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 88 - # write-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-generated-files.hmap 89 - # 90 - # WriteAuxiliaryFile /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-OutputFileMap.json (in target 'AxePlayground' from project 'AxePlayground') 91 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 92 - # write-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-OutputFileMap.json 93 - # 94 - # WriteAuxiliaryFile /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-own-target-headers.hmap (in target 'AxePlayground' from project 'AxePlayground') 95 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 96 - # write-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-own-target-headers.hmap 97 - # 98 - # WriteAuxiliaryFile /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-all-target-headers.hmap (in target 'AxePlayground' from project 'AxePlayground') 99 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 100 - # write-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-all-target-headers.hmap 101 - # 102 - # WriteAuxiliaryFile /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-all-non-framework-target-headers.hmap (in target 'AxePlayground' from project 'AxePlayground') 103 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 104 - # write-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-all-non-framework-target-headers.hmap 105 - # 106 - # WriteAuxiliaryFile /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-DebugDylibPath-normal-arm64.txt (in target 'AxePlayground' from project 'AxePlayground') 107 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 108 - # write-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-DebugDylibPath-normal-arm64.txt 109 - # 110 - # WriteAuxiliaryFile /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.SwiftFileList (in target 'AxePlayground' from project 'AxePlayground') 111 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 112 - # write-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.SwiftFileList 113 - # 114 - # WriteAuxiliaryFile /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.SwiftConstValuesFileList (in target 'AxePlayground' from project 'AxePlayground') 115 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 116 - # write-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.SwiftConstValuesFileList 117 - # 118 - # WriteAuxiliaryFile /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.LinkFileList (in target 'AxePlayground' from project 'AxePlayground') 119 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 120 - # write-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.LinkFileList 121 - # 122 - # WriteAuxiliaryFile /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground.DependencyStaticMetadataFileList (in target 'AxePlayground' from project 'AxePlayground') 123 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 124 - # write-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground.DependencyStaticMetadataFileList 125 - # 126 - # WriteAuxiliaryFile /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground.DependencyMetadataFileList (in target 'AxePlayground' from project 'AxePlayground') 127 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 128 - # write-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground.DependencyMetadataFileList 129 - # 130 - # WriteAuxiliaryFile /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-DebugDylibInstallName-normal-arm64.txt (in target 'AxePlayground' from project 'AxePlayground') 131 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 132 - # write-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-DebugDylibInstallName-normal-arm64.txt 133 - # 134 - # MkDir /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app (in target 'AxePlayground' from project 'AxePlayground') 135 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 136 - # /bin/mkdir -p /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app 137 - # 138 - # ProcessProductPackaging "" /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground.app-Simulated.xcent (in target 'AxePlayground' from project 'AxePlayground') 139 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 140 - # 141 - # Entitlements: 142 - # 143 - # { 144 - # "application-identifier" = "BR6WD3M6ZD.com.cameroncooke.AxePlayground"; 145 - # } 146 - # 147 - # builtin-productPackagingUtility -entitlements -format xml -o /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground.app-Simulated.xcent 148 - # 149 - # ProcessProductPackagingDER /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground.app-Simulated.xcent /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground.app-Simulated.xcent.der (in target 'AxePlayground' from project 'AxePlayground') 150 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 151 - # /usr/bin/derq query -f xml -i /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground.app-Simulated.xcent -o /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground.app-Simulated.xcent.der --raw 152 - # 153 - # Ld /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/__preview.dylib normal (in target 'AxePlayground' from project 'AxePlayground') 154 - 155 - /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/__preview.dylib: 156 - cd /Volumes/Developer/AXe/AxePlaygroundApp 157 - /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios18.4-simulator -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator18.4.sdk -O0 -L/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -F/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -install_name @rpath/AxePlayground.debug.dylib -dead_strip -rdynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -Xlinker -dependency_info -Xlinker /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground_dependency_info.dat -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground.app-Simulated.xcent -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __ents_der -Xlinker /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground.app-Simulated.xcent.der -Xlinker -no_adhoc_codesign -o /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/__preview.dylib 158 - 159 - # 160 - # GenerateAssetSymbols /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Assets.xcassets (in target 'AxePlayground' from project 'AxePlayground') 161 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 162 - # /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/actool /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Assets.xcassets --compile /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app --output-format human-readable-text --notices --warnings --export-dependency-info /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/assetcatalog_dependencies --output-partial-info-plist /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/assetcatalog_generated_info.plist --app-icon AppIcon --accent-color AccentColor --compress-pngs --enable-on-demand-resources YES --development-region en --target-device iphone --target-device ipad --minimum-deployment-target 18.4 --platform iphonesimulator --bundle-identifier com.cameroncooke.AxePlayground --generate-swift-asset-symbols /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/GeneratedAssetSymbols.swift --generate-objc-asset-symbols /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/GeneratedAssetSymbols.h --generate-asset-symbol-index /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/GeneratedAssetSymbols-Index.plist 163 - # /* com.apple.actool.compilation-results */ 164 - # /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/GeneratedAssetSymbols-Index.plist 165 - # /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/GeneratedAssetSymbols.h 166 - # /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/GeneratedAssetSymbols.swift 167 - # 168 - # 169 - # MkDir /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/assetcatalog_output/thinned (in target 'AxePlayground' from project 'AxePlayground') 170 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 171 - # /bin/mkdir -p /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/assetcatalog_output/thinned 172 - # 173 - # MkDir /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/assetcatalog_output/unthinned (in target 'AxePlayground' from project 'AxePlayground') 174 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 175 - # /bin/mkdir -p /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/assetcatalog_output/unthinned 176 - # 177 - # CompileAssetCatalogVariant thinned /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Assets.xcassets (in target 'AxePlayground' from project 'AxePlayground') 178 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 179 - # /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/actool /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Assets.xcassets --compile /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/assetcatalog_output/thinned --output-format human-readable-text --notices --warnings --export-dependency-info /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/assetcatalog_dependencies_thinned --output-partial-info-plist /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/assetcatalog_generated_info.plist_thinned --app-icon AppIcon --accent-color AccentColor --compress-pngs --enable-on-demand-resources YES --filter-for-thinning-device-configuration iPhone17,3 --filter-for-device-os-version 18.4 --development-region en --target-device iphone --target-device ipad --minimum-deployment-target 18.4 --platform iphonesimulator 180 - # /* com.apple.actool.compilation-results */ 181 - # /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/assetcatalog_generated_info.plist_thinned 182 - # 183 - # 184 - # LinkAssetCatalog /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Assets.xcassets (in target 'AxePlayground' from project 'AxePlayground') 185 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 186 - # builtin-linkAssetCatalog --thinned /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/assetcatalog_output/thinned --thinned-dependencies /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/assetcatalog_dependencies_thinned --thinned-info-plist-content /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/assetcatalog_generated_info.plist_thinned --unthinned /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/assetcatalog_output/unthinned --unthinned-dependencies /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/assetcatalog_dependencies_unthinned --unthinned-info-plist-content /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/assetcatalog_generated_info.plist_unthinned --output /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app --plist-output /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/assetcatalog_generated_info.plist 187 - # 188 - # ProcessInfoPlistFile /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/Info.plist /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/empty-AxePlayground.plist (in target 'AxePlayground' from project 'AxePlayground') 189 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 190 - # builtin-infoPlistUtility /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/empty-AxePlayground.plist -producttype com.apple.product-type.application -genpkginfo /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/PkgInfo -expandbuildsettings -format binary -platform iphonesimulator -additionalcontentfile /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/assetcatalog_generated_info.plist -o /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/Info.plist 191 - # 192 - # SwiftDriver AxePlayground normal arm64 com.apple.xcode.tools.swift.compiler (in target 'AxePlayground' from project 'AxePlayground') 193 - 194 - /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/TapTestView.o: /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/TapTestView.swift 195 - cd /Volumes/Developer/AXe/AxePlaygroundApp 196 - /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name AxePlayground -Onone -enforce-exclusivity\=checked @/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.SwiftFileList -DDEBUG -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator18.4.sdk -target arm64-apple-ios18.4-simulator -g -module-cache-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Index.noindex/DataStore -swift-version 5 -I /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -F /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -emit-localized-strings -emit-localized-strings-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64 -c -j12 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator18.4-22E235-43e5fd89280df366c77438703b8fa853.sdkstatcache -output-file-map /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-OutputFileMap.json -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground_const_extract_protocols.json -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-generated-files.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-own-target-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-all-target-headers.hmap -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-project-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/include -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources-normal/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-Swift.h -working-directory /Volumes/Developer/AXe/AxePlaygroundApp -experimental-emit-module-separately -disable-cmo && touch /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/TapTestView.o 197 - 198 - 199 - /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/GesturePresetsView.o: /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/GesturePresetsView.swift 200 - cd /Volumes/Developer/AXe/AxePlaygroundApp 201 - /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name AxePlayground -Onone -enforce-exclusivity\=checked @/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.SwiftFileList -DDEBUG -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator18.4.sdk -target arm64-apple-ios18.4-simulator -g -module-cache-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Index.noindex/DataStore -swift-version 5 -I /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -F /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -emit-localized-strings -emit-localized-strings-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64 -c -j12 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator18.4-22E235-43e5fd89280df366c77438703b8fa853.sdkstatcache -output-file-map /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-OutputFileMap.json -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground_const_extract_protocols.json -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-generated-files.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-own-target-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-all-target-headers.hmap -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-project-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/include -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources-normal/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-Swift.h -working-directory /Volumes/Developer/AXe/AxePlaygroundApp -experimental-emit-module-separately -disable-cmo && touch /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/GesturePresetsView.o 202 - 203 - 204 - /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/GeneratedAssetSymbols.o: /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/GeneratedAssetSymbols.swift 205 - cd /Volumes/Developer/AXe/AxePlaygroundApp 206 - /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name AxePlayground -Onone -enforce-exclusivity\=checked @/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.SwiftFileList -DDEBUG -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator18.4.sdk -target arm64-apple-ios18.4-simulator -g -module-cache-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Index.noindex/DataStore -swift-version 5 -I /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -F /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -emit-localized-strings -emit-localized-strings-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64 -c -j12 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator18.4-22E235-43e5fd89280df366c77438703b8fa853.sdkstatcache -output-file-map /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-OutputFileMap.json -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground_const_extract_protocols.json -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-generated-files.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-own-target-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-all-target-headers.hmap -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-project-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/include -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources-normal/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-Swift.h -working-directory /Volumes/Developer/AXe/AxePlaygroundApp -experimental-emit-module-separately -disable-cmo && touch /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/GeneratedAssetSymbols.o 207 - 208 - 209 - /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/ContentView.o: /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/ContentView.swift 210 - cd /Volumes/Developer/AXe/AxePlaygroundApp 211 - /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name AxePlayground -Onone -enforce-exclusivity\=checked @/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.SwiftFileList -DDEBUG -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator18.4.sdk -target arm64-apple-ios18.4-simulator -g -module-cache-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Index.noindex/DataStore -swift-version 5 -I /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -F /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -emit-localized-strings -emit-localized-strings-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64 -c -j12 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator18.4-22E235-43e5fd89280df366c77438703b8fa853.sdkstatcache -output-file-map /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-OutputFileMap.json -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground_const_extract_protocols.json -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-generated-files.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-own-target-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-all-target-headers.hmap -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-project-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/include -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources-normal/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-Swift.h -working-directory /Volumes/Developer/AXe/AxePlaygroundApp -experimental-emit-module-separately -disable-cmo && touch /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/ContentView.o 212 - 213 - 214 - /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/TextInputView.o: /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/TextInputView.swift 215 - cd /Volumes/Developer/AXe/AxePlaygroundApp 216 - /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name AxePlayground -Onone -enforce-exclusivity\=checked @/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.SwiftFileList -DDEBUG -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator18.4.sdk -target arm64-apple-ios18.4-simulator -g -module-cache-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Index.noindex/DataStore -swift-version 5 -I /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -F /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -emit-localized-strings -emit-localized-strings-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64 -c -j12 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator18.4-22E235-43e5fd89280df366c77438703b8fa853.sdkstatcache -output-file-map /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-OutputFileMap.json -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground_const_extract_protocols.json -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-generated-files.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-own-target-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-all-target-headers.hmap -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-project-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/include -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources-normal/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-Swift.h -working-directory /Volumes/Developer/AXe/AxePlaygroundApp -experimental-emit-module-separately -disable-cmo && touch /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/TextInputView.o 217 - 218 - 219 - /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/KeySequenceView.o: /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/KeySequenceView.swift 220 - cd /Volumes/Developer/AXe/AxePlaygroundApp 221 - /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name AxePlayground -Onone -enforce-exclusivity\=checked @/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.SwiftFileList -DDEBUG -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator18.4.sdk -target arm64-apple-ios18.4-simulator -g -module-cache-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Index.noindex/DataStore -swift-version 5 -I /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -F /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -emit-localized-strings -emit-localized-strings-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64 -c -j12 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator18.4-22E235-43e5fd89280df366c77438703b8fa853.sdkstatcache -output-file-map /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-OutputFileMap.json -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground_const_extract_protocols.json -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-generated-files.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-own-target-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-all-target-headers.hmap -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-project-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/include -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources-normal/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-Swift.h -working-directory /Volumes/Developer/AXe/AxePlaygroundApp -experimental-emit-module-separately -disable-cmo && touch /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/KeySequenceView.o 222 - 223 - 224 - /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/SwipeTestView.o: /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/SwipeTestView.swift 225 - cd /Volumes/Developer/AXe/AxePlaygroundApp 226 - /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name AxePlayground -Onone -enforce-exclusivity\=checked @/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.SwiftFileList -DDEBUG -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator18.4.sdk -target arm64-apple-ios18.4-simulator -g -module-cache-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Index.noindex/DataStore -swift-version 5 -I /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -F /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -emit-localized-strings -emit-localized-strings-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64 -c -j12 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator18.4-22E235-43e5fd89280df366c77438703b8fa853.sdkstatcache -output-file-map /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-OutputFileMap.json -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground_const_extract_protocols.json -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-generated-files.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-own-target-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-all-target-headers.hmap -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-project-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/include -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources-normal/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-Swift.h -working-directory /Volumes/Developer/AXe/AxePlaygroundApp -experimental-emit-module-separately -disable-cmo && touch /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/SwipeTestView.o 227 - 228 - 229 - /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlaygroundApp.o: /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/AxePlaygroundApp.swift 230 - cd /Volumes/Developer/AXe/AxePlaygroundApp 231 - /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name AxePlayground -Onone -enforce-exclusivity\=checked @/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.SwiftFileList -DDEBUG -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator18.4.sdk -target arm64-apple-ios18.4-simulator -g -module-cache-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Index.noindex/DataStore -swift-version 5 -I /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -F /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -emit-localized-strings -emit-localized-strings-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64 -c -j12 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator18.4-22E235-43e5fd89280df366c77438703b8fa853.sdkstatcache -output-file-map /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-OutputFileMap.json -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground_const_extract_protocols.json -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-generated-files.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-own-target-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-all-target-headers.hmap -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-project-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/include -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources-normal/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-Swift.h -working-directory /Volumes/Developer/AXe/AxePlaygroundApp -experimental-emit-module-separately -disable-cmo && touch /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlaygroundApp.o 232 - 233 - 234 - /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/TouchControlView.o: /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/TouchControlView.swift 235 - cd /Volumes/Developer/AXe/AxePlaygroundApp 236 - /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name AxePlayground -Onone -enforce-exclusivity\=checked @/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.SwiftFileList -DDEBUG -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator18.4.sdk -target arm64-apple-ios18.4-simulator -g -module-cache-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Index.noindex/DataStore -swift-version 5 -I /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -F /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -emit-localized-strings -emit-localized-strings-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64 -c -j12 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator18.4-22E235-43e5fd89280df366c77438703b8fa853.sdkstatcache -output-file-map /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-OutputFileMap.json -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground_const_extract_protocols.json -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-generated-files.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-own-target-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-all-target-headers.hmap -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-project-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/include -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources-normal/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-Swift.h -working-directory /Volumes/Developer/AXe/AxePlaygroundApp -experimental-emit-module-separately -disable-cmo && touch /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/TouchControlView.o 237 - 238 - 239 - /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/KeyPressView.o: /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/KeyPressView.swift 240 - cd /Volumes/Developer/AXe/AxePlaygroundApp 241 - /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name AxePlayground -Onone -enforce-exclusivity\=checked @/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.SwiftFileList -DDEBUG -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator18.4.sdk -target arm64-apple-ios18.4-simulator -g -module-cache-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Index.noindex/DataStore -swift-version 5 -I /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -F /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -emit-localized-strings -emit-localized-strings-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64 -c -j12 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator18.4-22E235-43e5fd89280df366c77438703b8fa853.sdkstatcache -output-file-map /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-OutputFileMap.json -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground_const_extract_protocols.json -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-generated-files.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-own-target-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-all-target-headers.hmap -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-project-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/include -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources-normal/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-Swift.h -working-directory /Volumes/Developer/AXe/AxePlaygroundApp -experimental-emit-module-separately -disable-cmo && touch /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/KeyPressView.o 242 - 243 - 244 - /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/ButtonTestView.o: /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/ButtonTestView.swift 245 - cd /Volumes/Developer/AXe/AxePlaygroundApp 246 - /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name AxePlayground -Onone -enforce-exclusivity\=checked @/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.SwiftFileList -DDEBUG -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator18.4.sdk -target arm64-apple-ios18.4-simulator -g -module-cache-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Index.noindex/DataStore -swift-version 5 -I /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -F /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -emit-localized-strings -emit-localized-strings-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64 -c -j12 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator18.4-22E235-43e5fd89280df366c77438703b8fa853.sdkstatcache -output-file-map /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-OutputFileMap.json -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground_const_extract_protocols.json -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-generated-files.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-own-target-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-all-target-headers.hmap -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-project-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/include -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources-normal/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-Swift.h -working-directory /Volumes/Developer/AXe/AxePlaygroundApp -experimental-emit-module-separately -disable-cmo && touch /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/ButtonTestView.o 247 - 248 - # 249 - # SwiftCompile normal arm64 Compiling\ ButtonTestView.swift /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/ButtonTestView.swift (in target 'AxePlayground' from project 'AxePlayground') 250 - # SwiftCompile normal arm64 /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/ButtonTestView.swift (in target 'AxePlayground' from project 'AxePlayground') 251 - # 252 - # SwiftCompile normal arm64 Compiling\ AxePlaygroundApp.swift /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/AxePlaygroundApp.swift (in target 'AxePlayground' from project 'AxePlayground') 253 - # SwiftCompile normal arm64 /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/AxePlaygroundApp.swift (in target 'AxePlayground' from project 'AxePlayground') 254 - # 255 - # SwiftCompile normal arm64 Compiling\ TextInputView.swift /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/TextInputView.swift (in target 'AxePlayground' from project 'AxePlayground') 256 - # SwiftCompile normal arm64 /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/TextInputView.swift (in target 'AxePlayground' from project 'AxePlayground') 257 - # 258 - # SwiftCompile normal arm64 Compiling\ ContentView.swift /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/ContentView.swift (in target 'AxePlayground' from project 'AxePlayground') 259 - # SwiftCompile normal arm64 /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/ContentView.swift (in target 'AxePlayground' from project 'AxePlayground') 260 - # 261 - # SwiftCompile normal arm64 Compiling\ TouchControlView.swift /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/TouchControlView.swift (in target 'AxePlayground' from project 'AxePlayground') 262 - # SwiftCompile normal arm64 /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/TouchControlView.swift (in target 'AxePlayground' from project 'AxePlayground') 263 - # 264 - # SwiftCompile normal arm64 Compiling\ KeyPressView.swift /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/KeyPressView.swift (in target 'AxePlayground' from project 'AxePlayground') 265 - # SwiftCompile normal arm64 /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/KeyPressView.swift (in target 'AxePlayground' from project 'AxePlayground') 266 - # 267 - # SwiftCompile normal arm64 Compiling\ SwipeTestView.swift /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/SwipeTestView.swift (in target 'AxePlayground' from project 'AxePlayground') 268 - # SwiftCompile normal arm64 /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/SwipeTestView.swift (in target 'AxePlayground' from project 'AxePlayground') 269 - # 270 - # SwiftCompile normal arm64 Compiling\ KeySequenceView.swift /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/KeySequenceView.swift (in target 'AxePlayground' from project 'AxePlayground') 271 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 272 - # 273 - # 274 - # SwiftEmitModule normal arm64 Emitting\ module\ for\ AxePlayground (in target 'AxePlayground' from project 'AxePlayground') 275 - # 276 - # EmitSwiftModule normal arm64 (in target 'AxePlayground' from project 'AxePlayground') 277 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 278 - # 279 - # 280 - # SwiftCompile normal arm64 Compiling\ GeneratedAssetSymbols.swift /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'AxePlayground' from project 'AxePlayground') 281 - # SwiftCompile normal arm64 /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'AxePlayground' from project 'AxePlayground') 282 - # 283 - # SwiftCompile normal arm64 Compiling\ TapTestView.swift /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/TapTestView.swift (in target 'AxePlayground' from project 'AxePlayground') 284 - # SwiftCompile normal arm64 /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/TapTestView.swift (in target 'AxePlayground' from project 'AxePlayground') 285 - # 286 - # SwiftCompile normal arm64 Compiling\ GesturePresetsView.swift /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/GesturePresetsView.swift (in target 'AxePlayground' from project 'AxePlayground') 287 - # SwiftCompile normal arm64 /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/GesturePresetsView.swift (in target 'AxePlayground' from project 'AxePlayground') 288 - # /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/GesturePresetsView.swift:187:41: warning: variable 'detected' was written to, but never read 289 - # var detected = false 290 - # ^ 291 - # /Volumes/Developer/AXe/AxePlaygroundApp/AxePlayground/Views/GesturePresetsView.swift:213:41: warning: variable 'detected' was written to, but never read 292 - # var detected = false 293 - # ^ 294 - # 295 - # SwiftDriverJobDiscovery normal arm64 Compiling GeneratedAssetSymbols.swift (in target 'AxePlayground' from project 'AxePlayground') 296 - # 297 - # SwiftDriverJobDiscovery normal arm64 Compiling AxePlaygroundApp.swift (in target 'AxePlayground' from project 'AxePlayground') 298 - # 299 - # SwiftDriverJobDiscovery normal arm64 Emitting module for AxePlayground (in target 'AxePlayground' from project 'AxePlayground') 300 - # 301 - # SwiftDriver\ Compilation\ Requirements AxePlayground normal arm64 com.apple.xcode.tools.swift.compiler (in target 'AxePlayground' from project 'AxePlayground') 302 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 303 - # builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name AxePlayground -Onone -enforce-exclusivity\=checked @/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.SwiftFileList -DDEBUG -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator18.4.sdk -target arm64-apple-ios18.4-simulator -g -module-cache-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Index.noindex/DataStore -swift-version 5 -I /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -F /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -emit-localized-strings -emit-localized-strings-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64 -c -j12 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator18.4-22E235-43e5fd89280df366c77438703b8fa853.sdkstatcache -output-file-map /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground_const_extract_protocols.json -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-generated-files.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-own-target-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-all-target-headers.hmap -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-project-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/include -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources-normal/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-Swift.h -working-directory /Volumes/Developer/AXe/AxePlaygroundApp -experimental-emit-module-separately -disable-cmo 304 - # 305 - # SwiftMergeGeneratedHeaders /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/AxePlayground-Swift.h /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-Swift.h (in target 'AxePlayground' from project 'AxePlayground') 306 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 307 - # builtin-swiftHeaderTool -arch arm64 /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-Swift.h -o /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/AxePlayground-Swift.h 308 - # 309 - # Copy /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.swiftmodule/arm64-apple-ios-simulator.swiftdoc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.swiftdoc (in target 'AxePlayground' from project 'AxePlayground') 310 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 311 - # builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.swiftdoc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.swiftmodule/arm64-apple-ios-simulator.swiftdoc 312 - # 313 - # Copy /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.swiftmodule/arm64-apple-ios-simulator.swiftmodule /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.swiftmodule (in target 'AxePlayground' from project 'AxePlayground') 314 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 315 - # builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.swiftmodule /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.swiftmodule/arm64-apple-ios-simulator.swiftmodule 316 - # 317 - # Copy /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.swiftmodule/arm64-apple-ios-simulator.abi.json /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.abi.json (in target 'AxePlayground' from project 'AxePlayground') 318 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 319 - # builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.abi.json /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.swiftmodule/arm64-apple-ios-simulator.abi.json 320 - # 321 - # Copy /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.swiftsourceinfo (in target 'AxePlayground' from project 'AxePlayground') 322 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 323 - # builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.swiftsourceinfo /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo 324 - # 325 - # SwiftDriverJobDiscovery normal arm64 Compiling TextInputView.swift (in target 'AxePlayground' from project 'AxePlayground') 326 - # 327 - # SwiftDriverJobDiscovery normal arm64 Compiling ContentView.swift (in target 'AxePlayground' from project 'AxePlayground') 328 - # 329 - # SwiftDriverJobDiscovery normal arm64 Compiling GesturePresetsView.swift (in target 'AxePlayground' from project 'AxePlayground') 330 - # 331 - # SwiftDriverJobDiscovery normal arm64 Compiling SwipeTestView.swift (in target 'AxePlayground' from project 'AxePlayground') 332 - # 333 - # SwiftDriverJobDiscovery normal arm64 Compiling TouchControlView.swift (in target 'AxePlayground' from project 'AxePlayground') 334 - # 335 - # SwiftDriverJobDiscovery normal arm64 Compiling KeyPressView.swift (in target 'AxePlayground' from project 'AxePlayground') 336 - # 337 - # SwiftDriverJobDiscovery normal arm64 Compiling TapTestView.swift (in target 'AxePlayground' from project 'AxePlayground') 338 - # 339 - # SwiftDriverJobDiscovery normal arm64 Compiling ButtonTestView.swift (in target 'AxePlayground' from project 'AxePlayground') 340 - # 341 - # SwiftDriverJobDiscovery normal arm64 Compiling KeySequenceView.swift (in target 'AxePlayground' from project 'AxePlayground') 342 - # 343 - # SwiftDriver\ Compilation AxePlayground normal arm64 com.apple.xcode.tools.swift.compiler (in target 'AxePlayground' from project 'AxePlayground') 344 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 345 - # builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name AxePlayground -Onone -enforce-exclusivity\=checked @/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.SwiftFileList -DDEBUG -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator18.4.sdk -target arm64-apple-ios18.4-simulator -g -module-cache-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Index.noindex/DataStore -swift-version 5 -I /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -F /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -emit-localized-strings -emit-localized-strings-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64 -c -j12 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator18.4-22E235-43e5fd89280df366c77438703b8fa853.sdkstatcache -output-file-map /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground_const_extract_protocols.json -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-generated-files.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-own-target-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-all-target-headers.hmap -Xcc -iquote -Xcc /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-project-headers.hmap -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/include -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources-normal/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources/arm64 -Xcc -I/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground-Swift.h -working-directory /Volumes/Developer/AXe/AxePlaygroundApp -experimental-emit-module-separately -disable-cmo 346 - # 347 - # Ld /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/AxePlayground.debug.dylib normal (in target 'AxePlayground' from project 'AxePlayground') 348 - 349 - /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/AxePlayground.debug.dylib: /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/TextInputView.o /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/GesturePresetsView.o /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/KeyPressView.o /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/SwipeTestView.o /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlaygroundApp.o /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/ContentView.o /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/KeySequenceView.o /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/ButtonTestView.o /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/TouchControlView.o /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/TapTestView.o /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/GeneratedAssetSymbols.o 350 - cd /Volumes/Developer/AXe/AxePlaygroundApp 351 - /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios18.4-simulator -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator18.4.sdk -O0 -L/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphonesimulator -L/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -F/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphonesimulator -F/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -filelist /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.LinkFileList -install_name @rpath/AxePlayground.debug.dylib -Xlinker -rpath -Xlinker @executable_path/Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -Xlinker -dependency_info -Xlinker /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.swiftmodule -Xlinker -alias -Xlinker _main -Xlinker ___debug_main_executable_dylib_entry_point -Xlinker -no_adhoc_codesign -o /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/AxePlayground.debug.dylib 352 - 353 - # 354 - # ConstructStubExecutorLinkFileList /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-ExecutorLinkFileList-normal-arm64.txt (in target 'AxePlayground' from project 'AxePlayground') 355 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 356 - # construct-stub-executor-link-file-list /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/AxePlayground.debug.dylib /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/lib/libPreviewsJITStubExecutor_no_swift_entry_point.a /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/lib/libPreviewsJITStubExecutor.a --output /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-ExecutorLinkFileList-normal-arm64.txt 357 - # note: Using stub executor library with Swift entry point. (in target 'AxePlayground' from project 'AxePlayground') 358 - # 359 - # Ld /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/AxePlayground normal (in target 'AxePlayground' from project 'AxePlayground') 360 - 361 - /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/AxePlayground: 362 - cd /Volumes/Developer/AXe/AxePlaygroundApp 363 - /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios18.4-simulator -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator18.4.sdk -O0 -L/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -F/Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator -Xlinker -rpath -Xlinker @executable_path -Xlinker -rpath -Xlinker @executable_path/Frameworks -rdynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -e ___debug_blank_executor_main -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __debug_dylib -Xlinker /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-DebugDylibPath-normal-arm64.txt -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __debug_instlnm -Xlinker /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-DebugDylibInstallName-normal-arm64.txt -Xlinker -filelist -Xlinker /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground-ExecutorLinkFileList-normal-arm64.txt -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground.app-Simulated.xcent -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __ents_der -Xlinker /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground.app-Simulated.xcent.der /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/AxePlayground.debug.dylib -Xlinker -no_adhoc_codesign -o /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/AxePlayground 364 - 365 - # 366 - # CopySwiftLibs /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app (in target 'AxePlayground' from project 'AxePlayground') 367 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 368 - # builtin-swiftStdLibTool --copy --verbose --sign - --scan-executable /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/AxePlayground.debug.dylib --scan-folder /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/Frameworks --scan-folder /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/PlugIns --scan-folder /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/SystemExtensions --scan-folder /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/Extensions --platform iphonesimulator --toolchain /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/Frameworks --strip-bitcode --strip-bitcode-tool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/SwiftStdLibToolInputDependencies.dep --filter-for-swift-os 369 - # 370 - # ExtractAppIntentsMetadata (in target 'AxePlayground' from project 'AxePlayground') 371 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 372 - # /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name AxePlayground --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 18.4 --bundle-identifier com.cameroncooke.AxePlayground --output /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app --target-triple arm64-apple-ios18.4-simulator --binary-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/AxePlayground --dependency-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground_dependency_info.dat --stringsdata-file /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.SwiftFileList --metadata-file-list /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground.DependencyMetadataFileList --static-metadata-file-list /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground.DependencyStaticMetadataFileList --swift-const-vals-list /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/Objects-normal/arm64/AxePlayground.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization 373 - # 2025-05-31 22:01:28.175 appintentsmetadataprocessor[54009:11152697] Starting appintentsmetadataprocessor export 374 - # 2025-05-31 22:01:28.176 appintentsmetadataprocessor[54009:11152697] warning: Metadata extraction skipped. No AppIntents.framework dependency found. 375 - # 376 - # AppIntentsSSUTraining (in target 'AxePlayground' from project 'AxePlayground') 377 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 378 - # /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsnltrainingprocessor --infoplist-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/Info.plist --temp-dir-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/ssu --bundle-id com.cameroncooke.AxePlayground --product-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app --extracted-metadata-path /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/Metadata.appintents --metadata-file-list /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Intermediates.noindex/AxePlayground.build/Debug-iphonesimulator/AxePlayground.build/AxePlayground.DependencyMetadataFileList --archive-ssu-assets 379 - # 2025-05-31 22:01:28.190 appintentsnltrainingprocessor[54010:11152699] Parsing options for appintentsnltrainingprocessor 380 - # 2025-05-31 22:01:28.190 appintentsnltrainingprocessor[54010:11152699] No AppShortcuts found - Skipping. 381 - # 382 - # CodeSign /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/AxePlayground.debug.dylib (in target 'AxePlayground' from project 'AxePlayground') 383 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 384 - # 385 - # Signing Identity: "Sign to Run Locally" 386 - # 387 - # /usr/bin/codesign --force --sign - --timestamp\=none --generate-entitlement-der /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/AxePlayground.debug.dylib 388 - # 389 - # CodeSign /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/__preview.dylib (in target 'AxePlayground' from project 'AxePlayground') 390 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 391 - # 392 - # Signing Identity: "Sign to Run Locally" 393 - # 394 - # /usr/bin/codesign --force --sign - --timestamp\=none --generate-entitlement-der /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/__preview.dylib 395 - # 396 - # CodeSign /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app (in target 'AxePlayground' from project 'AxePlayground') 397 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 398 - # 399 - # Signing Identity: "Sign to Run Locally" 400 - # 401 - # /usr/bin/codesign --force --sign - --timestamp\=none --generate-entitlement-der /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app 402 - # 403 - # RegisterExecutionPolicyException /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app (in target 'AxePlayground' from project 'AxePlayground') 404 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 405 - # builtin-RegisterExecutionPolicyException /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app 406 - # 407 - # Validate /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app (in target 'AxePlayground' from project 'AxePlayground') 408 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 409 - # builtin-validationUtility /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app -infoplist-subpath Info.plist 410 - # 411 - # Touch /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app (in target 'AxePlayground' from project 'AxePlayground') 412 - # cd /Volumes/Developer/AXe/AxePlaygroundApp 413 - # /usr/bin/touch -c /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app 414 - # 415 - # ** BUILD SUCCEEDED ** 416 - # 417 - main: /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/__preview.dylib /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/AxePlayground.debug.dylib /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/AxePlayground 418 - /usr/bin/codesign --force --sign - --timestamp\=none --generate-entitlement-der /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/AxePlayground.debug.dylib 419 - /usr/bin/codesign --force --sign - --timestamp\=none --generate-entitlement-der /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app/__preview.dylib 420 - /usr/bin/codesign --force --sign - --timestamp\=none --generate-entitlement-der /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app 421 - /usr/bin/touch -c /Users/cameroncooke/Library/Developer/Xcode/DerivedData/AxePlayground-buxscyjuyhcgihdsfhclqorvkxla/Build/Products/Debug-iphonesimulator/AxePlayground.app
+14 -14
Plugins/VersionPlugin/plugin.swift
··· 1 - import PackagePlugin 2 1 import Foundation 2 + import PackagePlugin 3 3 4 4 @main 5 5 struct VersionPlugin: BuildToolPlugin { 6 - func createBuildCommands(context: PluginContext, target: Target) async throws -> [Command] { 6 + func createBuildCommands(context: PluginContext, target _: Target) async throws -> [Command] { 7 7 let outputPath = context.pluginWorkDirectory.appending("Version.swift") 8 - 8 + 9 9 return [ 10 10 .buildCommand( 11 11 displayName: "Generate Version.swift", ··· 14 14 "swift", "-e", 15 15 """ 16 16 import Foundation 17 - 17 + 18 18 func getVersion() -> String { 19 19 // Priority 1: Environment variable (CI) 20 20 if let envVersion = ProcessInfo.processInfo.environment["AXE_VERSION"] { 21 21 return envVersion 22 22 } 23 - 23 + 24 24 // Priority 2: Git describe (local development) 25 25 let gitProcess = Process() 26 26 gitProcess.executableURL = URL(fileURLWithPath: "/usr/bin/git") 27 27 gitProcess.arguments = ["describe", "--tags", "--always", "--dirty"] 28 - 28 + 29 29 let pipe = Pipe() 30 30 gitProcess.standardOutput = pipe 31 31 gitProcess.standardError = Pipe() 32 - 32 + 33 33 do { 34 34 try gitProcess.run() 35 35 gitProcess.waitUntilExit() 36 - 36 + 37 37 if gitProcess.terminationStatus == 0 { 38 38 let data = pipe.fileHandleForReading.readDataToEndOfFile() 39 39 if let version = String(data: data, encoding: .utf8)?.trimmingCharacters(in: .whitespacesAndNewlines) { ··· 43 43 } catch { 44 44 // Git command failed 45 45 } 46 - 46 + 47 47 // Priority 3: Fallback 48 48 return "dev" 49 49 } 50 - 50 + 51 51 let version = getVersion() 52 52 let content = "// Auto-generated by VersionPlugin\\nlet VERSION = \\"\\(version)\\"" 53 - 53 + 54 54 try content.write(toFile: "\\(CommandLine.arguments[1])", atomically: true, encoding: .utf8) 55 55 """, 56 - outputPath.string 56 + outputPath.string, 57 57 ], 58 58 environment: [:], 59 59 inputFiles: [], 60 60 outputFiles: [outputPath] 61 - ) 61 + ), 62 62 ] 63 63 } 64 - } 64 + }