Skip to content

Instantly share code, notes, and snippets.

@azarovalex
azarovalex / gist:6006f5905f737945fa0f1ed256b17220
Created March 13, 2021 20:16
Swift toolchain build error
[utils/build-script] NOTE: Using toolchain default
+ /usr/libexec/PlistBuddy -c 'Print :SupportedTargets:macosx:Archs' /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk/SDKSettings.plist
+ mkdir -p /Users/alexander/Developer/swift-project/build/Xcode-RelWithDebInfoAssert
+ /usr/local/bin/cmake --build /Users/alexander/Developer/swift-project/build/Xcode-RelWithDebInfoAssert/cmark-macosx-x86_64 --target ZERO_CHECK --config RelWithDebInfo
Command line invocation:
/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -project cmark.xcodeproj build -target ZERO_CHECK -parallelizeTargets -configuration RelWithDebInfo -hideShellScriptEnvironment
User defaults from command line:
HideShellScriptEnvironment = YES
#include <stdio.h>
#define N 5
#define M 3
int main() {
int arrayOfGuys[N] = { 0 };
int firstFiveGuys[5] = { 0 };
int pointerInArrayOfFirstFive = 0;
int counter = 0;