flutter / flutter

Flutter makes it easy and fast to build beautiful apps for mobile and beyond
https://flutter.dev
BSD 3-Clause "New" or "Revised" License
163.57k stars 26.9k forks source link

Text wrapping on top of itself on iOS/macOS on `stable`, blank on other channels and web `html` #82023

Open JacomusP opened 3 years ago

JacomusP commented 3 years ago

The problem I'm having is when using the font: Antique Olive Nord when the text wraps on iOS it wraps on the same line and the text is printed on top of each other, which makes the text unreadable. On Android the text wraps onto a new line as expected

Steps to Reproduce

  1. Run flutter create bug.
  2. Update the files as follows: Replace main.dart with
code sample ```dart import "package:flutter/material.dart"; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: "Flutter Demo", theme: ThemeData( primarySwatch: Colors.blue, ), home: MyHomePage(), ); } } class MyHomePage extends StatelessWidget { @override Widget build(BuildContext context) { MediaQueryData mediaQueryData = MediaQuery.of(context); return Scaffold( appBar: AppBar( title: Text("Flutter Demo Home Page"), ), body: Container( height: mediaQueryData.size.height, width: mediaQueryData.size.width, padding: const EdgeInsets.only(top: 10.0), child: Column( children: [ Expanded( child: Text( "This is a really long string to test wrapping. Hopefully this is readable!", style: TextStyle( fontFamily: "Antique Olive Nord", ), softWrap: true, ), ), ], ), ), ); } } ```
  1. That should reproduce the problem and produce a result similar to the screenshot below
  2. Note that the Antique Olive Nord font needs to be added to the project to reproduce the issue. It can be found here: Antique Olive Nord

Expected results: I expected to see the text wrapped onto a new line

Actual results: I see the text wrapped on the same line and printed on top of each other

iOS screenshot

android screenshot

Logs Flutter run --verbose output ``` [ +7 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ +15 ms] Downloading Web SDK... [ +395 ms] Content https://storage.googleapis.com/flutter_infra/flutter/05e680e202af9a92461070cb2d9982acad46c83c/flutter-web-sdk-darwin-x64.zip md5 hash: rEwmtfxaq+7aCnkQBoCCEg== [+3568 ms] Downloading Web SDK... (completed in 4.0s) [ +2 ms] executing: unzip -o -q /Users/jacomus/flutter2/flutter/bin/cache/downloads/storage.googleapis.com/flutter_infra/flutter/05e680e202af9a92461070cb2d9982acad46c83c/flutter-web-sdk-darwin-x64.zip -d /Users/jacomus/flutter2/flutter/bin/cache/flutter_web_sdk [ +915 ms] Exit code 0 from: unzip -o -q /Users/jacomus/flutter2/flutter/bin/cache/downloads/storage.googleapis.com/flutter_infra/flutter/05e680e202af9a92461070cb2d9982acad46c83c/flutter-web-sdk-darwin-x64.zip -d /Users/jacomus/flutter2/flutter/bin/cache/flutter_web_sdk [ +267 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ +78 ms] Skipping pub get: version match. [ +125 ms] Generating /Users/jacomus/Code/flutter/text_wrapping_small_example/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java [ +82 ms] Initializing file store [ +10 ms] Skipping target: gen_localizations [ +7 ms] complete [ +3 ms] Launching lib/main.dart on iPhone 12 Pro Max in debug mode... [ +4 ms] /Users/jacomus/flutter2/flutter/bin/cache/dart-sdk/bin/dart --disable-dart-dev /Users/jacomus/flutter2/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/jacomus/flutter2/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --target=flutter --debugger-module-names --experimental-emit-debug-metadata --output-dill /var/folders/hk/3pn44rvd6cxdk_8b3whtpbj80000gn/T/flutter_tools.BcSDGS/flutter_tool.Rw8Ll7/app.dill --packages /Users/jacomus/Code/flutter/text_wrapping_small_example/.dart_tool/package_config.json -Ddart.vm.profile=false -Ddart.vm.product=false --enable-asserts --track-widget-creation --filesystem-scheme org-dartlang-root --initialize-from-dill build/cache.dill.track.dill [ +9 ms] executing: /usr/bin/plutil -convert json -o - /Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner/Info.plist [ +10 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner/Info.plist [ ] {"CFBundleShortVersionString":"$(FLUTTER_BUILD_NAME)","CFBundleIdentifier":"$(PRODUCT_BUNDLE_IDENTIFIER)","CFBundleInfoDictionaryVersion":"6.0","UIMainStoryboardFile":"Main","CFBundleVersion":"$(FLUTTER_BUILD_N UMBER)","UILaunchStoryboardName":"LaunchScreen","CFBundleExecutable":"$(EXECUTABLE_NAME)","LSRequiresIPhoneOS":true,"UISupportedInterfaceOrientations":["UIInterfaceOrientationPortrait","UIInterfaceOrientationLa ndscapeLeft","UIInterfaceOrientationLandscapeRight"],"UIViewControllerBasedStatusBarAppearance":false,"CFBundleSignature":"????","CFBundlePackageType":"APPL","CFBundleDevelopmentRegion":"$(DEVELOPMENT_LANGUAGE) ","UISupportedInterfaceOrientations~ipad":["UIInterfaceOrientationPortrait","UIInterfaceOrientationPortraitUpsideDown","UIInterfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRight"],"CFBundleName ":"text_wrapping_small_example"} [ +4 ms] executing: [/Users/jacomus/Code/flutter/text_wrapping_small_example/ios/] xcrun xcodebuild -list [ +11 ms] <- compile package:text_wrapping_small_example/main.dart [ +988 ms] Command line invocation: /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -list Information about project "Runner": Targets: Runner Build Configurations: Debug Release Profile If no build configuration is specified and -scheme is not passed then "Release" is used. Schemes: Runner ⣽[ +6 ms] executing: [/Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner.xcodeproj/] xcrun xcodebuild -project /Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner.xcodeproj -scheme Runner -showBuildSettings [ ] executing: [/Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner.xcodeproj/] xcrun xcodebuild -project /Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner.xcodeproj -scheme Runner -showBuildSettings ⡿[+1176 ms] Command line invocation: /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -project /Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner.xcodeproj -scheme Runner -showBuildSettings Build settings for action build and target Runner: ACTION = build AD_HOC_CODE_SIGNING_ALLOWED = NO ALTERNATE_GROUP = staff ALTERNATE_MODE = u+w,go-w,a+rX ALTERNATE_OWNER = jacomus ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO ALWAYS_SEARCH_USER_PATHS = NO ALWAYS_USE_SEPARATE_HEADERMAPS = NO APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer APPLE_INTERNAL_DIR = /AppleInternal APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools APPLICATION_EXTENSION_API_ONLY = NO APPLY_RULES_IN_COPY_FILES = NO APPLY_RULES_IN_COPY_HEADERS = NO ARCHS = arm64 armv7 ARCHS_STANDARD = arm64 armv7 ARCHS_STANDARD_32_64_BIT = armv7 arm64 ARCHS_STANDARD_32_BIT = armv7 ARCHS_STANDARD_64_BIT = arm64 ARCHS_STANDARD_INCLUDING_64_BIT = arm64 armv7 ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator BITCODE_GENERATION_MODE = marker BUILD_ACTIVE_RESOURCES_ONLY = NO BUILD_COMPONENTS = headers build BUILD_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios BUILD_LIBRARY_FOR_DISTRIBUTION = NO BUILD_ROOT = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios BUILD_STYLE = BUILD_VARIANTS = normal BUILT_PRODUCTS_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Release-iphoneos BUNDLE_CONTENTS_FOLDER_PATH_deep = Contents/ BUNDLE_EXECUTABLE_FOLDER_NAME_deep = MacOS BUNDLE_FORMAT = shallow BUNDLE_FRAMEWORKS_FOLDER_PATH = Frameworks BUNDLE_PLUGINS_FOLDER_PATH = PlugIns BUNDLE_PRIVATE_HEADERS_FOLDER_PATH = PrivateHeaders BUNDLE_PUBLIC_HEADERS_FOLDER_PATH = Headers CACHE_ROOT = /var/folders/hk/3pn44rvd6cxdk_8b3whtpbj80000gn/C/com.apple.DeveloperTools/12.4-12D4e/Xcode CCHROOT = /var/folders/hk/3pn44rvd6cxdk_8b3whtpbj80000gn/C/com.apple.DeveloperTools/12.4-12D4e/Xcode CHMOD = /bin/chmod CHOWN = /usr/sbin/chown CLANG_ANALYZER_NONNULL = YES CLANG_CXX_LANGUAGE_STANDARD = gnu++0x CLANG_CXX_LIBRARY = libc++ CLANG_ENABLE_MODULES = YES CLANG_ENABLE_OBJC_ARC = YES CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES CLANG_WARN_BOOL_CONVERSION = YES CLANG_WARN_COMMA = YES CLANG_WARN_CONSTANT_CONVERSION = YES CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR CLANG_WARN_EMPTY_BODY = YES CLANG_WARN_ENUM_CONVERSION = YES CLANG_WARN_INFINITE_RECURSION = YES CLANG_WARN_INT_CONVERSION = YES CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES CLANG_WARN_OBJC_LITERAL_CONVERSION = YES CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR CLANG_WARN_RANGE_LOOP_ANALYSIS = YES CLANG_WARN_STRICT_PROTOTYPES = YES CLANG_WARN_SUSPICIOUS_MOVE = YES CLANG_WARN_UNREACHABLE_CODE = YES CLANG_WARN__DUPLICATE_METHOD_MATCH = YES CLASS_FILE_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses CLEAN_PRECOMPS = YES CLONE_HEADERS = NO CODESIGNING_FOLDER_PATH = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Release-iphoneos/Runner.app CODE_SIGNING_ALLOWED = YES CODE_SIGNING_REQUIRED = YES CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext CODE_SIGN_IDENTITY = iPhone Developer CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES COLOR_DIAGNOSTICS = NO COMBINE_HIDPI_IMAGES = NO COMPILER_INDEX_STORE_ENABLE = Default COMPOSITE_SDK_DIRS = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/CompositeSDKs COMPRESS_PNG_FILES = YES CONFIGURATION = Release CONFIGURATION_BUILD_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Release-iphoneos CONFIGURATION_TEMP_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Runner.build/Release-iphoneos CONTENTS_FOLDER_PATH = Runner.app COPYING_PRESERVES_HFS_DATA = NO COPY_HEADERS_RUN_UNIFDEF = NO COPY_PHASE_STRIP = NO COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator14.4 CP = /bin/cp CREATE_INFOPLIST_SECTION_IN_BINARY = NO CURRENT_ARCH = armv7 CURRENT_PROJECT_VERSION = 1 CURRENT_VARIANT = normal DART_OBFUSCATION = false DEAD_CODE_STRIPPING = YES DEBUGGING_SYMBOLS = YES DEBUG_INFORMATION_FORMAT = dwarf-with-dsym DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0 DEFAULT_DEXT_INSTALL_PATH = /System/Library/DriverExtensions DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions DEFINES_MODULE = NO DEPLOYMENT_LOCATION = NO DEPLOYMENT_POSTPROCESSING = NO DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min= DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_version_min DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_SUGGESTED_VALUES = 9.0 9.2 10.0 10.2 11.0 11.2 11.4 12.1 12.3 13.0 13.2 13.4 13.6 14.1 14.3 14.4 DERIVED_FILES_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources DERIVED_FILE_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources DERIVED_SOURCES_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr DEVELOPMENT_LANGUAGE = en DOCUMENTATION_FOLDER_PATH = Runner.app/en.lproj/Documentation DONT_GENERATE_INFOPLIST_FILE = NO DO_HEADER_SCANNING_IN_JAM = NO DSTROOT = /tmp/Runner.dst DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain DWARF_DSYM_FILE_NAME = Runner.app.dSYM DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO DWARF_DSYM_FOLDER_PATH = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Release-iphoneos EFFECTIVE_PLATFORM_NAME = -iphoneos EMBEDDED_CONTENT_CONTAINS_SWIFT = NO EMBEDDED_PROFILE_NAME = embedded.mobileprovision EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO ENABLE_BITCODE = NO ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES ENABLE_HARDENED_RUNTIME = NO ENABLE_HEADER_DEPENDENCIES = YES ENABLE_NS_ASSERTIONS = NO ENABLE_ON_DEMAND_RESOURCES = YES ENABLE_STRICT_OBJC_MSGSEND = YES ENABLE_TESTABILITY = NO ENABLE_TESTING_SEARCH_PATHS = NO ENTITLEMENTS_ALLOWED = YES ENTITLEMENTS_DESTINATION = Signature ENTITLEMENTS_REQUIRED = YES EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj EXECUTABLES_FOLDER_PATH = Runner.app/Executables EXECUTABLE_FOLDER_PATH = Runner.app EXECUTABLE_NAME = Runner EXECUTABLE_PATH = Runner.app/Runner EXPANDED_CODE_SIGN_IDENTITY = EXPANDED_CODE_SIGN_IDENTITY_NAME = EXPANDED_PROVISIONING_PROFILE = FILE_LIST = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList FIXED_FILES_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles FLUTTER_APPLICATION_PATH = /Users/jacomus/Code/flutter/text_wrapping_small_example FLUTTER_BUILD_DIR = build FLUTTER_BUILD_NAME = 1.0.0 FLUTTER_BUILD_NUMBER = 1 FLUTTER_FRAMEWORK_DIR = /Users/jacomus/flutter/bin/cache/artifacts/engine/ios FLUTTER_ROOT = /Users/jacomus/flutter FLUTTER_TARGET = /Users/jacomus/Code/flutter/text_wrapping_small_example/lib/main.dart FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks FRAMEWORK_FLAG_PREFIX = -framework FRAMEWORK_VERSION = A FULL_PRODUCT_NAME = Runner.app GCC3_VERSION = 3.3 GCC_C_LANGUAGE_STANDARD = gnu99 GCC_INLINES_ARE_PRIVATE_EXTERN = YES GCC_NO_COMMON_BLOCKS = YES GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++ GCC_SYMBOLS_PRIVATE_EXTERN = YES GCC_THUMB_SUPPORT = YES GCC_TREAT_WARNINGS_AS_ERRORS = NO GCC_VERSION = com.apple.compilers.llvm.clang.1_0 GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0 GCC_WARN_64_TO_32_BIT_CONVERSION = YES GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR GCC_WARN_UNDECLARED_SELECTOR = YES GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE GCC_WARN_UNUSED_FUNCTION = YES GCC_WARN_UNUSED_VARIABLE = YES GENERATED_MODULEMAP_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/GeneratedModuleMaps-iphoneos GENERATE_MASTER_OBJECT_FILE = NO GENERATE_PKGINFO_FILE = YES GENERATE_PROFILING_CODE = NO GENERATE_TEXT_BASED_STUBS = NO GID = 20 GROUP = staff HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES HEADERMAP_INCLUDES_PROJECT_HEADERS = YES HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES HEADERMAP_USES_VFS = NO HIDE_BITCODE_SYMBOLS = YES HOME = /Users/jacomus ICONV = /usr/bin/iconv INFOPLIST_EXPAND_BUILD_SETTINGS = YES INFOPLIST_FILE = Runner/Info.plist INFOPLIST_OUTPUT_FORMAT = binary INFOPLIST_PATH = Runner.app/Info.plist INFOPLIST_PREPROCESS = NO INFOSTRINGS_PATH = Runner.app/en.lproj/InfoPlist.strings INLINE_PRIVATE_FRAMEWORKS = NO INSTALLHDRS_COPY_PHASE = NO INSTALLHDRS_SCRIPT_PHASE = NO INSTALL_DIR = /tmp/Runner.dst/Applications INSTALL_GROUP = staff INSTALL_MODE_FLAG = u+w,go-w,a+rX INSTALL_OWNER = jacomus INSTALL_PATH = /Applications INSTALL_ROOT = /tmp/Runner.dst IPHONEOS_DEPLOYMENT_TARGET = 9.0 JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8 JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub JAVA_ARCHIVE_CLASSES = YES JAVA_ARCHIVE_TYPE = JAR JAVA_COMPILER = /usr/bin/javac JAVA_FOLDER_PATH = Runner.app/Java JAVA_FRAMEWORK_RESOURCES_DIRS = Resources JAVA_JAR_FLAGS = cv JAVA_SOURCE_SUBDIR = . JAVA_USE_DEPENDENCIES = YES JAVA_ZIP_FLAGS = -urg JIKES_DEFAULT_FLAGS = +E +OLDCSO KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow KEEP_PRIVATE_EXTERNS = NO LD_DEPENDENCY_INFO_FILE = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal/armv7/Runner_dependency_info.dat LD_GENERATE_MAP_FILE = NO LD_MAP_FILE_PATH = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-armv7.txt LD_NO_PIE = NO LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer LEX = lex LIBRARY_DEXT_INSTALL_PATH = /Library/DriverExtensions LIBRARY_FLAG_NOSPACE = YES LIBRARY_FLAG_PREFIX = -l LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions LINKER_DISPLAYS_MANGLED_NAMES = NO LINK_FILE_LIST_normal_arm64 = LINK_FILE_LIST_normal_armv7 = LINK_WITH_STANDARD_LIBRARIES = YES LLVM_TARGET_TRIPLE_OS_VERSION = ios9.0 LLVM_TARGET_TRIPLE_VENDOR = apple LOCALIZABLE_CONTENT_DIR = LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/en.lproj LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFCopyLocalizedString LOCALIZED_STRING_SWIFTUI_SUPPORT = YES LOCAL_ADMIN_APPS_DIR = /Applications/Utilities LOCAL_APPS_DIR = /Applications LOCAL_DEVELOPER_DIR = /Library/Developer LOCAL_LIBRARY_DIR = /Library LOCROOT = LOCSYMROOT = MACH_O_TYPE = mh_execute MAC_OS_X_PRODUCT_BUILD_VERSION = 20B50 MAC_OS_X_VERSION_ACTUAL = 110001 MAC_OS_X_VERSION_MAJOR = 110000 MAC_OS_X_VERSION_MINOR = 110000 METAL_LIBRARY_FILE_BASE = default METAL_LIBRARY_OUTPUT_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Release-iphoneos/Runner.app MODULES_FOLDER_PATH = Runner.app/Modules MODULE_CACHE_DIR = /Users/jacomus/Library/Developer/Xcode/DerivedData/ModuleCache.noindex MTL_ENABLE_DEBUG_INFO = NO NATIVE_ARCH = armv7 NATIVE_ARCH_32_BIT = i386 NATIVE_ARCH_64_BIT = x86_64 NATIVE_ARCH_ACTUAL = x86_64 NO_COMMON = YES OBJECT_FILE_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects OBJECT_FILE_DIR_normal = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal OBJROOT = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios ONLY_ACTIVE_ARCH = NO OS = MACOS OSAC = /usr/bin/osacompile OTHER_LDFLAGS = -framework Flutter PACKAGE_CONFIG = .packages PACKAGE_TYPE = com.apple.package-type.wrapper.application PASCAL_STRINGS = YES PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/go/bin:/Library/Apple/usr/bin:/Users/jacomus/flutter/bin:/Users/jacomus/flutter /bin:/Users/jacomus/flutter/bin PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist PFE_FILE_C_DIALECTS = objective-c PKGINFO_FILE_PATH = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo PKGINFO_PATH = Runner.app/PkgInfo PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform PLATFORM_DISPLAY_NAME = iOS PLATFORM_NAME = iphoneos PLATFORM_PREFERRED_ARCH = arm64 PLATFORM_PRODUCT_BUILD_VERSION = 18D46 PLIST_FILE_OUTPUT_FORMAT = binary PLUGINS_FOLDER_PATH = Runner.app/PlugIns PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES PRECOMP_DESTINATION_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders PRODUCT_BUNDLE_IDENTIFIER = com.example.textWrappingSmallExample PRODUCT_BUNDLE_PACKAGE_TYPE = APPL PRODUCT_MODULE_NAME = Runner PRODUCT_NAME = Runner PRODUCT_SETTINGS_PATH = /Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner/Info.plist PRODUCT_TYPE = com.apple.product-type.application PROFILING_CODE = NO PROJECT = Runner PROJECT_DERIVED_FILE_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Runner.build/DerivedSources PROJECT_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/ios PROJECT_FILE_PATH = /Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner.xcodeproj PROJECT_NAME = Runner PROJECT_TEMP_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Runner.build PROJECT_TEMP_ROOT = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios PROVISIONING_PROFILE_REQUIRED = YES PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES REMOVE_CVS_FROM_RESOURCES = YES REMOVE_GIT_FROM_RESOURCES = YES REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES REMOVE_HG_FROM_RESOURCES = YES REMOVE_SVN_FROM_RESOURCES = YES RESOURCE_RULES_REQUIRED = YES REZ_COLLECTOR_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources REZ_OBJECTS_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO SCRIPTS_FOLDER_PATH = Runner.app/Scripts SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk SDK_DIR_iphoneos14_4 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk SDK_NAME = iphoneos14.4 SDK_NAMES = iphoneos14.4 SDK_PRODUCT_BUILD_VERSION = 18D46 SDK_VERSION = 14.4 SDK_VERSION_ACTUAL = 140400 SDK_VERSION_MAJOR = 140000 SDK_VERSION_MINOR = 140400 SED = /usr/bin/sed SEPARATE_STRIP = NO SEPARATE_SYMBOL_EDIT = NO SET_DIR_MODE_OWNER_GROUP = YES SET_FILE_MODE_OWNER_GROUP = NO SHALLOW_BUNDLE = YES SHARED_DERIVED_FILE_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Release-iphoneos/DerivedSources SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks SHARED_PRECOMPS_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/SharedPrecompiledHeaders SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport SKIP_INSTALL = NO SOURCE_ROOT = /Users/jacomus/Code/flutter/text_wrapping_small_example/ios SRCROOT = /Users/jacomus/Code/flutter/text_wrapping_small_example/ios STRINGS_FILE_OUTPUT_ENCODING = binary STRIP_BITCODE_FROM_COPIED_FILES = YES STRIP_INSTALLED_PRODUCT = YES STRIP_STYLE = all STRIP_SWIFT_SYMBOLS = YES SUPPORTED_DEVICE_FAMILIES = 1,2 SUPPORTED_PLATFORMS = iphoneos SUPPORTS_MACCATALYST = NO SUPPORTS_TEXT_BASED_API = NO SWIFT_COMPILATION_MODE = wholemodule SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h SWIFT_OPTIMIZATION_LEVEL = -O SWIFT_PLATFORM_TARGET_PREFIX = ios SWIFT_VERSION = 5.0 SYMROOT = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities SYSTEM_APPS_DIR = /Applications SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices SYSTEM_DEMOS_DIR = /Applications/Extras SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities SYSTEM_DEXT_INSTALL_PATH = /System/Library/DriverExtensions SYSTEM_DOCUMENTATION_DIR = /Library/Documentation SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions SYSTEM_LIBRARY_DIR = /System/Library TAPI_VERIFY_MODE = ErrorsOnly TARGETED_DEVICE_FAMILY = 1,2 TARGETNAME = Runner TARGET_BUILD_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Release-iphoneos TARGET_NAME = Runner TARGET_TEMP_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_FILES_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_FILE_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_ROOT = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios TEST_FRAMEWORK_SEARCH_PATHS = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/Developer/Library/Frameworks TEST_LIBRARY_SEARCH_PATHS = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain TRACK_WIDGET_CREATION = true TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO TREE_SHAKE_ICONS = false UID = 501 UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app UNSTRIPPED_PRODUCT = NO USER = jacomus USER_APPS_DIR = /Users/jacomus/Applications USER_LIBRARY_DIR = /Users/jacomus/Library USE_DYNAMIC_NO_PIC = YES USE_HEADERMAP = YES USE_HEADER_SYMLINKS = NO USE_LLVM_TARGET_TRIPLES = YES USE_LLVM_TARGET_TRIPLES_FOR_CLANG = YES USE_LLVM_TARGET_TRIPLES_FOR_LD = YES USE_LLVM_TARGET_TRIPLES_FOR_TAPI = YES VALIDATE_PRODUCT = YES VALIDATE_WORKSPACE = NO VALID_ARCHS = arm64 arm64e armv7 armv7s VERBOSE_PBXCP = NO VERSIONING_SYSTEM = apple-generic VERSIONPLIST_PATH = Runner.app/version.plist VERSION_INFO_BUILDER = jacomus VERSION_INFO_FILE = Runner_vers.c VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-1" WRAPPER_EXTENSION = app WRAPPER_NAME = Runner.app WRAPPER_SUFFIX = .app WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode XCODE_PRODUCT_BUILD_VERSION = 12D4e XCODE_VERSION_ACTUAL = 1240 XCODE_VERSION_MAJOR = 1200 XCODE_VERSION_MINOR = 1240 XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices YACC = yacc arch = armv7 variant = normal [ +21 ms] Building Runner.app for 6A0FB282-AB75-4A26-A75A-33F7C2342D5B. [ +22 ms] executing: xattr -r -d com.apple.FinderInfo /Users/jacomus/Code/flutter/text_wrapping_small_example/ios [ +2 ms] executing: xcrun simctl spawn 6A0FB282-AB75-4A26-A75A-33F7C2342D5B log stream --style json --predicate eventType = logEvent AND processImagePath ENDSWITH "Runner" AND (senderImagePath ENDSWITH "/Flutter" OR senderImagePath ENDSWITH "/libswiftCore.dylib" OR processImageUUID == senderImageUUID) AND NOT(eventMessage CONTAINS ": could not find icon for representation -> com.apple.") AND NOT(eventMessage BEGINSWITH "assertion failed: ") AND NOT(eventMessage CONTAINS " libxpc.dylib ") [ +543 ms] executing: /usr/bin/plutil -convert json -o - /Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner/Info.plist [ +16 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner/Info.plist [ ] {"CFBundleShortVersionString":"$(FLUTTER_BUILD_NAME)","CFBundleIdentifier":"$(PRODUCT_BUNDLE_IDENTIFIER)","CFBundleInfoDictionaryVersion":"6.0","UIMainStoryboardFile":"Main","CFBundleVersion":"$(FLUTTER_BUILD_N UMBER)","UILaunchStoryboardName":"LaunchScreen","CFBundleExecutable":"$(EXECUTABLE_NAME)","LSRequiresIPhoneOS":true,"UISupportedInterfaceOrientations":["UIInterfaceOrientationPortrait","UIInterfaceOrientationLa ndscapeLeft","UIInterfaceOrientationLandscapeRight"],"UIViewControllerBasedStatusBarAppearance":false,"CFBundleSignature":"????","CFBundlePackageType":"APPL","CFBundleDevelopmentRegion":"$(DEVELOPMENT_LANGUAGE) ","UISupportedInterfaceOrientations~ipad":["UIInterfaceOrientationPortrait","UIInterfaceOrientationPortraitUpsideDown","UIInterfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRight"],"CFBundleName ":"text_wrapping_small_example"} [ +4 ms] executing: mkfifo /var/folders/hk/3pn44rvd6cxdk_8b3whtpbj80000gn/T/flutter_tools.BcSDGS/flutter_build_log_pipe.C3NYqN/pipe_to_stdout [ +9 ms] Exit code 0 from: mkfifo /var/folders/hk/3pn44rvd6cxdk_8b3whtpbj80000gn/T/flutter_tools.BcSDGS/flutter_build_log_pipe.C3NYqN/pipe_to_stdout [ +2 ms] Running Xcode build... [ +1 ms] executing: [/Users/jacomus/Code/flutter/text_wrapping_small_example/ios/] xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/hk/3pn44rvd6cxdk_8b3whtpbj80000gn/T/flutter_tools.BcSDGS/flutter_build_log_pipe.C3NYqN/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO [+11992 ms] Running Xcode build... (completed in 12.0s) [ ] └─Compiling, linking and signing... [+4494 ms] Command line invocation: /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/hk/3pn44rvd6cxdk_8b3whtpbj80000gn/T/flutter_tools.BcSDGS/flutter_build_log_pipe.C3NYqN/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO Build settings from command line: ARCHS = x86_64 BUILD_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios COMPILER_INDEX_STORE_ENABLE = NO FLUTTER_SUPPRESS_ANALYTICS = true SCRIPT_OUTPUT_STREAM_FILE = /var/folders/hk/3pn44rvd6cxdk_8b3whtpbj80000gn/T/flutter_tools.BcSDGS/flutter_build_log_pipe.C3NYqN/pipe_to_stdout SDKROOT = iphonesimulator14.4 VERBOSE_SCRIPT_LOGGING = YES note: Using new build system note: Building targets in parallel note: Planning build note: Constructing build description ProcessProductPackaging "" /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent (in target 'Runner' from project 'Runner') cd /Users/jacomus/Code/flutter/text_wrapping_small_example/ios Entitlements: { "application-identifier" = "5KJ86SQJAU.com.example.textWrappingSmallExample"; "keychain-access-groups" = ( "5KJ86SQJAU.com.example.textWrappingSmallExample" ); } builtin-productPackagingUtility -entitlements -format xml -o /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xc ent ProcessProductPackaging "" /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent (in target 'Runner' from project 'Runner') cd /Users/jacomus/Code/flutter/text_wrapping_small_example/ios Entitlements: { "com.apple.security.get-task-allow" = 1; } builtin-productPackagingUtility -entitlements -format xml -o /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent PhaseScriptExecution Run\ Script /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F60043 84FC.sh (in target 'Runner' from project 'Runner') cd /Users/jacomus/Code/flutter/text_wrapping_small_example/ios export ACTION\=build export AD_HOC_CODE_SIGNING_ALLOWED\=YES export ALTERNATE_GROUP\=staff export ALTERNATE_MODE\=u+w,go-w,a+rX export ALTERNATE_OWNER\=jacomus export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES\=NO export ALWAYS_SEARCH_USER_PATHS\=NO export ALWAYS_USE_SEPARATE_HEADERMAPS\=NO export APPLE_INTERNAL_DEVELOPER_DIR\=/AppleInternal/Developer export APPLE_INTERNAL_DIR\=/AppleInternal export APPLE_INTERNAL_DOCUMENTATION_DIR\=/AppleInternal/Documentation export APPLE_INTERNAL_LIBRARY_DIR\=/AppleInternal/Library export APPLE_INTERNAL_TOOLS\=/AppleInternal/Developer/Tools export APPLICATION_EXTENSION_API_ONLY\=NO export APPLY_RULES_IN_COPY_FILES\=NO export APPLY_RULES_IN_COPY_HEADERS\=NO export ARCHS\=x86_64 export ARCHS_STANDARD\=arm64\ x86_64\ i386 export ARCHS_STANDARD_32_64_BIT\=arm64\ i386\ x86_64 export ARCHS_STANDARD_32_BIT\=i386 export ARCHS_STANDARD_64_BIT\=arm64\ x86_64 export ARCHS_STANDARD_INCLUDING_64_BIT\=arm64\ x86_64\ i386 export ARCHS_UNIVERSAL_IPHONE_OS\=arm64\ i386\ x86_64 export ASSETCATALOG_COMPILER_APPICON_NAME\=AppIcon export AVAILABLE_PLATFORMS\=appletvos\ appletvsimulator\ iphoneos\ iphonesimulator\ macosx\ watchos\ watchsimulator export AppIdentifierPrefix\=5KJ86SQJAU. export BITCODE_GENERATION_MODE\=marker export BUILD_ACTIVE_RESOURCES_ONLY\=YES export BUILD_COMPONENTS\=headers\ build export BUILD_DIR\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios export BUILD_LIBRARY_FOR_DISTRIBUTION\=NO export BUILD_ROOT\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Products export BUILD_STYLE\= export BUILD_VARIANTS\=normal export BUILT_PRODUCTS_DIR\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator export BUNDLE_CONTENTS_FOLDER_PATH_deep\=Contents/ export BUNDLE_EXECUTABLE_FOLDER_NAME_deep\=MacOS export BUNDLE_FORMAT\=shallow export BUNDLE_FRAMEWORKS_FOLDER_PATH\=Frameworks export BUNDLE_PLUGINS_FOLDER_PATH\=PlugIns export BUNDLE_PRIVATE_HEADERS_FOLDER_PATH\=PrivateHeaders export BUNDLE_PUBLIC_HEADERS_FOLDER_PATH\=Headers export CACHE_ROOT\=/var/folders/hk/3pn44rvd6cxdk_8b3whtpbj80000gn/C/com.apple.DeveloperTools/12.4-12D4e/Xcode export CCHROOT\=/var/folders/hk/3pn44rvd6cxdk_8b3whtpbj80000gn/C/com.apple.DeveloperTools/12.4-12D4e/Xcode export CHMOD\=/bin/chmod export CHOWN\=/usr/sbin/chown export CLANG_ANALYZER_NONNULL\=YES export CLANG_CXX_LANGUAGE_STANDARD\=gnu++0x export CLANG_CXX_LIBRARY\=libc++ export CLANG_ENABLE_MODULES\=YES export CLANG_ENABLE_OBJC_ARC\=YES export CLANG_MODULES_BUILD_SESSION_FILE\=/Users/jacomus/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING\=YES export CLANG_WARN_BOOL_CONVERSION\=YES export CLANG_WARN_COMMA\=YES export CLANG_WARN_CONSTANT_CONVERSION\=YES export CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS\=YES export CLANG_WARN_DIRECT_OBJC_ISA_USAGE\=YES_ERROR export CLANG_WARN_EMPTY_BODY\=YES export CLANG_WARN_ENUM_CONVERSION\=YES export CLANG_WARN_INFINITE_RECURSION\=YES export CLANG_WARN_INT_CONVERSION\=YES export CLANG_WARN_NON_LITERAL_NULL_CONVERSION\=YES export CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF\=YES export CLANG_WARN_OBJC_LITERAL_CONVERSION\=YES export CLANG_WARN_OBJC_ROOT_CLASS\=YES_ERROR export CLANG_WARN_RANGE_LOOP_ANALYSIS\=YES export CLANG_WARN_STRICT_PROTOTYPES\=YES export CLANG_WARN_SUSPICIOUS_MOVE\=YES export CLANG_WARN_UNREACHABLE_CODE\=YES export CLANG_WARN__DUPLICATE_METHOD_MATCH\=YES export CLASS_FILE_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaCla sses export CLEAN_PRECOMPS\=YES export CLONE_HEADERS\=NO export CODESIGNING_FOLDER_PATH\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app export CODE_SIGNING_ALLOWED\=YES export CODE_SIGNING_REQUIRED\=YES export CODE_SIGN_CONTEXT_CLASS\=XCiPhoneSimulatorCodeSignContext export CODE_SIGN_IDENTITY\=- export CODE_SIGN_INJECT_BASE_ENTITLEMENTS\=YES export COLOR_DIAGNOSTICS\=NO export COMBINE_HIDPI_IMAGES\=NO export COMPILER_INDEX_STORE_ENABLE\=NO export COMPOSITE_SDK_DIRS\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/CompositeSDKs export COMPRESS_PNG_FILES\=YES export CONFIGURATION\=Debug export CONFIGURATION_BUILD_DIR\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator export CONFIGURATION_TEMP_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator export CONTENTS_FOLDER_PATH\=Runner.app export COPYING_PRESERVES_HFS_DATA\=NO export COPY_HEADERS_RUN_UNIFDEF\=NO export COPY_PHASE_STRIP\=NO export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS\=YES export CORRESPONDING_DEVICE_PLATFORM_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform export CORRESPONDING_DEVICE_PLATFORM_NAME\=iphoneos export CORRESPONDING_DEVICE_SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk export CORRESPONDING_DEVICE_SDK_NAME\=iphoneos14.4 export CP\=/bin/cp export CREATE_INFOPLIST_SECTION_IN_BINARY\=NO export CURRENT_ARCH\=undefined_arch export CURRENT_PROJECT_VERSION\=1 export CURRENT_VARIANT\=normal export DART_OBFUSCATION\=false export DEAD_CODE_STRIPPING\=YES export DEBUGGING_SYMBOLS\=YES export DEBUG_INFORMATION_FORMAT\=dwarf export DEFAULT_COMPILER\=com.apple.compilers.llvm.clang.1_0 export DEFAULT_DEXT_INSTALL_PATH\=/System/Library/DriverExtensions export DEFAULT_KEXT_INSTALL_PATH\=/System/Library/Extensions export DEFINES_MODULE\=NO export DEPLOYMENT_LOCATION\=NO export DEPLOYMENT_POSTPROCESSING\=NO export DEPLOYMENT_TARGET_CLANG_ENV_NAME\=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_CLANG_FLAG_NAME\=mios-simulator-version-min export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX\=-mios-simulator-version-min\= export DEPLOYMENT_TARGET_LD_ENV_NAME\=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_LD_FLAG_NAME\=ios_simulator_version_min export DEPLOYMENT_TARGET_SETTING_NAME\=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_SUGGESTED_VALUES\=9.0\ 9.2\ 10.0\ 10.2\ 11.0\ 11.2\ 11.4\ 12.1\ 12.3\ 13.0\ 13.2\ 13.4\ 13.6\ 14.1\ 14.3\ 14.4 export DERIVED_FILES_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Deri vedSources export DERIVED_FILE_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Deriv edSources export DERIVED_SOURCES_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/De rivedSources export DEVELOPER_APPLICATIONS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications export DEVELOPER_BIN_DIR\=/Applications/Xcode.app/Contents/Developer/usr/bin export DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer export DEVELOPER_FRAMEWORKS_DIR\=/Applications/Xcode.app/Contents/Developer/Library/Frameworks export DEVELOPER_FRAMEWORKS_DIR_QUOTED\=/Applications/Xcode.app/Contents/Developer/Library/Frameworks export DEVELOPER_LIBRARY_DIR\=/Applications/Xcode.app/Contents/Developer/Library export DEVELOPER_SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs export DEVELOPER_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Tools export DEVELOPER_USR_DIR\=/Applications/Xcode.app/Contents/Developer/usr export DEVELOPMENT_LANGUAGE\=en export DOCUMENTATION_FOLDER_PATH\=Runner.app/en.lproj/Documentation export DONT_GENERATE_INFOPLIST_FILE\=NO export DO_HEADER_SCANNING_IN_JAM\=NO export DSTROOT\=/tmp/Runner.dst export DT_TOOLCHAIN_DIR\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export DWARF_DSYM_FILE_NAME\=Runner.app.dSYM export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT\=NO export DWARF_DSYM_FOLDER_PATH\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator export EFFECTIVE_PLATFORM_NAME\=-iphonesimulator export EMBEDDED_CONTENT_CONTAINS_SWIFT\=NO export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE\=NO export ENABLE_BITCODE\=NO export ENABLE_DEFAULT_HEADER_SEARCH_PATHS\=YES export ENABLE_HARDENED_RUNTIME\=NO export ENABLE_HEADER_DEPENDENCIES\=YES export ENABLE_ON_DEMAND_RESOURCES\=YES export ENABLE_PREVIEWS\=NO export ENABLE_STRICT_OBJC_MSGSEND\=YES export ENABLE_TESTABILITY\=YES export ENABLE_TESTING_SEARCH_PATHS\=NO export ENTITLEMENTS_DESTINATION\=__entitlements export ENTITLEMENTS_REQUIRED\=YES export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS\=.DS_Store\ .svn\ .git\ .hg\ CVS export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES\=\*.nib\ \*.lproj\ \*.framework\ \*.gch\ \*.xcode\*\ \*.xcassets\ \(\*\)\ .DS_Store\ CVS\ .svn\ .git\ .hg\ \*.pbproj\ \*.pbxproj export EXECUTABLES_FOLDER_PATH\=Runner.app/Executables export EXECUTABLE_FOLDER_PATH\=Runner.app export EXECUTABLE_NAME\=Runner export EXECUTABLE_PATH\=Runner.app/Runner export EXPANDED_CODE_SIGN_IDENTITY\=- export EXPANDED_CODE_SIGN_IDENTITY_NAME\=- export FILE_LIST\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/Link FileList export FIXED_FILES_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedF iles export FLUTTER_APPLICATION_PATH\=/Users/jacomus/Code/flutter/text_wrapping_small_example export FLUTTER_BUILD_DIR\=build export FLUTTER_BUILD_NAME\=1.0.0 export FLUTTER_BUILD_NUMBER\=1 export FLUTTER_ROOT\=/Users/jacomus/flutter2/flutter export FLUTTER_SUPPRESS_ANALYTICS\=true export FLUTTER_TARGET\=/Users/jacomus/Code/flutter/text_wrapping_small_example/lib/main.dart export FRAMEWORKS_FOLDER_PATH\=Runner.app/Frameworks export FRAMEWORK_FLAG_PREFIX\=-framework export FRAMEWORK_SEARCH_PATHS\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator\ export FRAMEWORK_VERSION\=A export FULL_PRODUCT_NAME\=Runner.app export GCC3_VERSION\=3.3 export GCC_C_LANGUAGE_STANDARD\=gnu99 export GCC_DYNAMIC_NO_PIC\=NO export GCC_INLINES_ARE_PRIVATE_EXTERN\=YES export GCC_NO_COMMON_BLOCKS\=YES export GCC_OBJC_LEGACY_DISPATCH\=YES export GCC_OPTIMIZATION_LEVEL\=0 export GCC_PFE_FILE_C_DIALECTS\=c\ objective-c\ c++\ objective-c++ export GCC_PREPROCESSOR_DEFINITIONS\=DEBUG\=1\ export GCC_SYMBOLS_PRIVATE_EXTERN\=NO export GCC_TREAT_WARNINGS_AS_ERRORS\=NO export GCC_VERSION\=com.apple.compilers.llvm.clang.1_0 export GCC_VERSION_IDENTIFIER\=com_apple_compilers_llvm_clang_1_0 export GCC_WARN_64_TO_32_BIT_CONVERSION\=YES export GCC_WARN_ABOUT_RETURN_TYPE\=YES_ERROR export GCC_WARN_UNDECLARED_SELECTOR\=YES export GCC_WARN_UNINITIALIZED_AUTOS\=YES_AGGRESSIVE export GCC_WARN_UNUSED_FUNCTION\=YES export GCC_WARN_UNUSED_VARIABLE\=YES export GENERATED_MODULEMAP_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/GeneratedModuleMaps-iphonesimulator export GENERATE_MASTER_OBJECT_FILE\=NO export GENERATE_PKGINFO_FILE\=YES export GENERATE_PROFILING_CODE\=NO export GENERATE_TEXT_BASED_STUBS\=NO export GID\=20 export GROUP\=staff export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT\=YES export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES\=YES export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS\=YES export HEADERMAP_INCLUDES_PROJECT_HEADERS\=YES export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES\=YES export HEADERMAP_USES_VFS\=NO export HEADER_SEARCH_PATHS\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/include\ export HIDE_BITCODE_SYMBOLS\=YES export HOME\=/Users/jacomus export ICONV\=/usr/bin/iconv export INFOPLIST_EXPAND_BUILD_SETTINGS\=YES export INFOPLIST_FILE\=Runner/Info.plist export INFOPLIST_OUTPUT_FORMAT\=binary export INFOPLIST_PATH\=Runner.app/Info.plist export INFOPLIST_PREPROCESS\=NO export INFOSTRINGS_PATH\=Runner.app/en.lproj/InfoPlist.strings export INLINE_PRIVATE_FRAMEWORKS\=NO export INSTALLHDRS_COPY_PHASE\=NO export INSTALLHDRS_SCRIPT_PHASE\=NO export INSTALL_DIR\=/tmp/Runner.dst/Applications export INSTALL_GROUP\=staff export INSTALL_MODE_FLAG\=u+w,go-w,a+rX export INSTALL_OWNER\=jacomus export INSTALL_PATH\=/Applications export INSTALL_ROOT\=/tmp/Runner.dst export IPHONEOS_DEPLOYMENT_TARGET\=9.0 export JAVAC_DEFAULT_FLAGS\=-J-Xms64m\ -J-XX:NewSize\=4M\ -J-Dfile.encoding\=UTF8 export JAVA_APP_STUB\=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub export JAVA_ARCHIVE_CLASSES\=YES export JAVA_ARCHIVE_TYPE\=JAR export JAVA_COMPILER\=/usr/bin/javac export JAVA_FOLDER_PATH\=Runner.app/Java export JAVA_FRAMEWORK_RESOURCES_DIRS\=Resources export JAVA_JAR_FLAGS\=cv export JAVA_SOURCE_SUBDIR\=. export JAVA_USE_DEPENDENCIES\=YES export JAVA_ZIP_FLAGS\=-urg export JIKES_DEFAULT_FLAGS\=+E\ +OLDCSO export KEEP_PRIVATE_EXTERNS\=NO export LD_DEPENDENCY_INFO_FILE\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.buil d/Objects-normal/undefined_arch/Runner_dependency_info.dat export LD_ENTITLEMENTS_SECTION\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.buil d/Runner.app-Simulated.xcent export LD_GENERATE_MAP_FILE\=NO export LD_MAP_FILE_PATH\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runne r-LinkMap-normal-undefined_arch.txt export LD_NO_PIE\=NO export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER\=YES export LD_RUNPATH_SEARCH_PATHS\=\ @executable_path/Frameworks export LEGACY_DEVELOPER_DIR\=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer export LEX\=lex export LIBRARY_DEXT_INSTALL_PATH\=/Library/DriverExtensions export LIBRARY_FLAG_NOSPACE\=YES export LIBRARY_FLAG_PREFIX\=-l export LIBRARY_KEXT_INSTALL_PATH\=/Library/Extensions export LIBRARY_SEARCH_PATHS\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator\ export LINKER_DISPLAYS_MANGLED_NAMES\=NO export LINK_FILE_LIST_normal_x86_64\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner .build/Objects-normal/x86_64/Runner.LinkFileList export LINK_WITH_STANDARD_LIBRARIES\=YES export LLVM_TARGET_TRIPLE_OS_VERSION\=ios9.0 export LLVM_TARGET_TRIPLE_SUFFIX\=-simulator export LLVM_TARGET_TRIPLE_VENDOR\=apple export LOCALIZED_RESOURCES_FOLDER_PATH\=Runner.app/en.lproj export LOCALIZED_STRING_MACRO_NAMES\=NSLocalizedString\ CFCopyLocalizedString export LOCALIZED_STRING_SWIFTUI_SUPPORT\=YES export LOCAL_ADMIN_APPS_DIR\=/Applications/Utilities export LOCAL_APPS_DIR\=/Applications export LOCAL_DEVELOPER_DIR\=/Library/Developer export LOCAL_LIBRARY_DIR\=/Library export LOCROOT\=/Users/jacomus/Code/flutter/text_wrapping_small_example/ios export LOCSYMROOT\=/Users/jacomus/Code/flutter/text_wrapping_small_example/ios export MACH_O_TYPE\=mh_execute export MAC_OS_X_PRODUCT_BUILD_VERSION\=20B50 export MAC_OS_X_VERSION_ACTUAL\=110001 export MAC_OS_X_VERSION_MAJOR\=110000 export MAC_OS_X_VERSION_MINOR\=110000 export METAL_LIBRARY_FILE_BASE\=default export METAL_LIBRARY_OUTPUT_DIR\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app export MODULES_FOLDER_PATH\=Runner.app/Modules export MODULE_CACHE_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/ModuleCache.noindex export MTL_ENABLE_DEBUG_INFO\=YES export NATIVE_ARCH\=x86_64 export NATIVE_ARCH_32_BIT\=i386 export NATIVE_ARCH_64_BIT\=x86_64 export NATIVE_ARCH_ACTUAL\=x86_64 export NO_COMMON\=YES export OBJC_ABI_VERSION\=2 export OBJECT_FILE_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Object s export OBJECT_FILE_DIR_normal\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build /Objects-normal export OBJROOT\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex export ONLY_ACTIVE_ARCH\=NO export OS\=MACOS export OSAC\=/usr/bin/osacompile export PACKAGE_CONFIG\=/Users/jacomus/Code/flutter/text_wrapping_small_example/.dart_tool/package_config.json export PACKAGE_TYPE\=com.apple.package-type.wrapper.application export PASCAL_STRINGS\=YES export PATH\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applicat ions/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applic ations/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Develop er/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/go/bin:/Library/Apple/usr/bin:/Users/jacomus/flutter/bin export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES\=/usr/include\ /usr/local/include\ /System/Library/Frameworks\ /System/Library/PrivateFrameworks\ /Applications/Xcode.app/Contents/Developer/Headers\ /Applications/Xcode.app/Contents/Developer/SDKs\ /Applications/Xcode.app/Contents/Developer/Platforms export PBDEVELOPMENTPLIST_PATH\=Runner.app/pbdevelopment.plist export PER_ARCH_OBJECT_FILE_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.bui ld/Objects-normal/undefined_arch export PER_VARIANT_OBJECT_FILE_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner. build/Objects-normal export PKGINFO_FILE_PATH\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgI nfo export PKGINFO_PATH\=Runner.app/PkgInfo export PLATFORM_DEVELOPER_APPLICATIONS_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications export PLATFORM_DEVELOPER_BIN_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin export PLATFORM_DEVELOPER_LIBRARY_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library export PLATFORM_DEVELOPER_SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs export PLATFORM_DEVELOPER_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools export PLATFORM_DEVELOPER_USR_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr export PLATFORM_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform export PLATFORM_DISPLAY_NAME\=iOS\ Simulator export PLATFORM_FAMILY_NAME\=iOS export PLATFORM_NAME\=iphonesimulator export PLATFORM_PREFERRED_ARCH\=x86_64 export PLATFORM_PRODUCT_BUILD_VERSION\=18D46 export PLIST_FILE_OUTPUT_FORMAT\=binary export PLUGINS_FOLDER_PATH\=Runner.app/PlugIns export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR\=YES export PRECOMP_DESTINATION_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.buil d/PrefixHeaders export PRESERVE_DEAD_CODE_INITS_AND_TERMS\=NO export PRIVATE_HEADERS_FOLDER_PATH\=Runner.app/PrivateHeaders export PRODUCT_BUNDLE_IDENTIFIER\=com.example.textWrappingSmallExample export PRODUCT_BUNDLE_PACKAGE_TYPE\=APPL export PRODUCT_MODULE_NAME\=Runner export PRODUCT_NAME\=Runner export PRODUCT_SETTINGS_PATH\=/Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner/Info.plist export PRODUCT_TYPE\=com.apple.product-type.application export PROFILING_CODE\=NO export PROJECT\=Runner export PROJECT_DERIVED_FILE_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/DerivedSources export PROJECT_DIR\=/Users/jacomus/Code/flutter/text_wrapping_small_example/ios export PROJECT_FILE_PATH\=/Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner.xcodeproj export PROJECT_NAME\=Runner export PROJECT_TEMP_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build export PROJECT_TEMP_ROOT\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex export PUBLIC_HEADERS_FOLDER_PATH\=Runner.app/Headers export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS\=YES export REMOVE_CVS_FROM_RESOURCES\=YES export REMOVE_GIT_FROM_RESOURCES\=YES export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES\=YES export REMOVE_HG_FROM_RESOURCES\=YES export REMOVE_SVN_FROM_RESOURCES\=YES export REZ_COLLECTOR_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Reso urceManagerResources export REZ_OBJECTS_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Resour ceManagerResources/Objects export REZ_SEARCH_PATHS\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator\ export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES\=NO export SCRIPTS_FOLDER_PATH\=Runner.app/Scripts export SCRIPT_INPUT_FILE_COUNT\=0 export SCRIPT_INPUT_FILE_LIST_COUNT\=0 export SCRIPT_OUTPUT_FILE_COUNT\=0 export SCRIPT_OUTPUT_FILE_LIST_COUNT\=0 export SCRIPT_OUTPUT_STREAM_FILE\=/var/folders/hk/3pn44rvd6cxdk_8b3whtpbj80000gn/T/flutter_tools.BcSDGS/flutter_build_log_pipe.C3NYqN/pipe_to_stdout export SDKROOT\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk export SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk export SDK_DIR_iphonesimulator14_4\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk export SDK_NAME\=iphonesimulator14.4 export SDK_NAMES\=iphonesimulator14.4 export SDK_PRODUCT_BUILD_VERSION\=18D46 export SDK_VERSION\=14.4 export SDK_VERSION_ACTUAL\=140400 export SDK_VERSION_MAJOR\=140000 export SDK_VERSION_MINOR\=140400 export SED\=/usr/bin/sed export SEPARATE_STRIP\=NO export SEPARATE_SYMBOL_EDIT\=NO export SET_DIR_MODE_OWNER_GROUP\=YES export SET_FILE_MODE_OWNER_GROUP\=NO export SHALLOW_BUNDLE\=YES export SHARED_DERIVED_FILE_DIR\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/DerivedSources export SHARED_FRAMEWORKS_FOLDER_PATH\=Runner.app/SharedFrameworks export SHARED_PRECOMPS_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/PrecompiledHeaders export SHARED_SUPPORT_FOLDER_PATH\=Runner.app/SharedSupport export SKIP_INSTALL\=NO export SOURCE_ROOT\=/Users/jacomus/Code/flutter/text_wrapping_small_example/ios export SRCROOT\=/Users/jacomus/Code/flutter/text_wrapping_small_example/ios export STRINGS_FILE_OUTPUT_ENCODING\=binary export STRIP_BITCODE_FROM_COPIED_FILES\=NO export STRIP_INSTALLED_PRODUCT\=YES export STRIP_STYLE\=all export STRIP_SWIFT_SYMBOLS\=YES export SUPPORTED_DEVICE_FAMILIES\=1,2 export SUPPORTED_PLATFORMS\=iphoneos\ iphonesimulator export SUPPORTS_TEXT_BASED_API\=NO export SWIFT_OBJC_BRIDGING_HEADER\=Runner/Runner-Bridging-Header.h export SWIFT_OPTIMIZATION_LEVEL\=-Onone export SWIFT_PLATFORM_TARGET_PREFIX\=ios export SWIFT_RESPONSE_FILE_PATH_normal_x86_64\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimula tor/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList export SWIFT_VERSION\=5.0 export SYMROOT\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Products export SYSTEM_ADMIN_APPS_DIR\=/Applications/Utilities export SYSTEM_APPS_DIR\=/Applications export SYSTEM_CORE_SERVICES_DIR\=/System/Library/CoreServices export SYSTEM_DEMOS_DIR\=/Applications/Extras export SYSTEM_DEVELOPER_APPS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications export SYSTEM_DEVELOPER_BIN_DIR\=/Applications/Xcode.app/Contents/Developer/usr/bin export SYSTEM_DEVELOPER_DEMOS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built\ Examples export SYSTEM_DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer export SYSTEM_DEVELOPER_DOC_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Graphics\ Tools export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Java\ Tools export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Performance\ Tools export SYSTEM_DEVELOPER_RELEASENOTES_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/releasenotes export SYSTEM_DEVELOPER_TOOLS\=/Applications/Xcode.app/Contents/Developer/Tools export SYSTEM_DEVELOPER_TOOLS_DOC_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/documentation/DeveloperTools export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/releasenotes/DeveloperTools export SYSTEM_DEVELOPER_USR_DIR\=/Applications/Xcode.app/Contents/Developer/usr export SYSTEM_DEVELOPER_UTILITIES_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Utilities export SYSTEM_DEXT_INSTALL_PATH\=/System/Library/DriverExtensions export SYSTEM_DOCUMENTATION_DIR\=/Library/Documentation export SYSTEM_KEXT_INSTALL_PATH\=/System/Library/Extensions export SYSTEM_LIBRARY_DIR\=/System/Library export TAPI_VERIFY_MODE\=ErrorsOnly export TARGETED_DEVICE_FAMILY\=1,2 export TARGETNAME\=Runner export TARGET_BUILD_DIR\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator export TARGET_DEVICE_IDENTIFIER\=dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder export TARGET_NAME\=Runner export TARGET_TEMP_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_FILES_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_FILE_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_ROOT\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex export TEST_FRAMEWORK_SEARCH_PATHS\=\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/Developer/Library/Frameworks export TEST_LIBRARY_SEARCH_PATHS\=\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/lib export TOOLCHAINS\=com.apple.dt.toolchain.XcodeDefault export TOOLCHAIN_DIR\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export TRACK_WIDGET_CREATION\=true export TREAT_MISSING_BASELINES_AS_TEST_FAILURES\=NO export TREE_SHAKE_ICONS\=false export TeamIdentifierPrefix\=5KJ86SQJAU. export UID\=501 export UNLOCALIZED_RESOURCES_FOLDER_PATH\=Runner.app export UNSTRIPPED_PRODUCT\=NO export USER\=jacomus export USER_APPS_DIR\=/Users/jacomus/Applications export USER_LIBRARY_DIR\=/Users/jacomus/Library export USE_DYNAMIC_NO_PIC\=YES export USE_HEADERMAP\=YES export USE_HEADER_SYMLINKS\=NO export USE_LLVM_TARGET_TRIPLES\=YES export USE_LLVM_TARGET_TRIPLES_FOR_CLANG\=YES export USE_LLVM_TARGET_TRIPLES_FOR_LD\=YES export USE_LLVM_TARGET_TRIPLES_FOR_TAPI\=YES export VALIDATE_DEVELOPMENT_ASSET_PATHS\=YES_ERROR export VALIDATE_PRODUCT\=NO export VALIDATE_WORKSPACE\=YES_ERROR export VALID_ARCHS\=arm64\ arm64e\ i386\ x86_64 export VERBOSE_PBXCP\=NO export VERBOSE_SCRIPT_LOGGING\=YES export VERSIONING_SYSTEM\=apple-generic export VERSIONPLIST_PATH\=Runner.app/version.plist export VERSION_INFO_BUILDER\=jacomus export VERSION_INFO_FILE\=Runner_vers.c export VERSION_INFO_STRING\=\"@\(\#\)PROGRAM:Runner\ \ PROJECT:Runner-1\" export WRAPPER_EXTENSION\=app export WRAPPER_NAME\=Runner.app export WRAPPER_SUFFIX\=.app export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES\=NO export XCODE_APP_SUPPORT_DIR\=/Applications/Xcode.app/Contents/Developer/Library/Xcode export XCODE_PRODUCT_BUILD_VERSION\=12D4e export XCODE_VERSION_ACTUAL\=1240 export XCODE_VERSION_MAJOR\=1200 export XCODE_VERSION_MINOR\=1240 export XPCSERVICES_FOLDER_PATH\=Runner.app/XPCServices export YACC\=yacc export arch\=undefined_arch export variant\=normal /bin/sh -c /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6 004384FC.sh ♦ /Users/jacomus/flutter2/flutter/bin/flutter --verbose assemble --output=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/ -dTargetPlatform=ios -dTargetFile=/Users/jacomus/Code/flutter/text_wrapping_small_example/lib/main.dart -dBuildMode=debug -dIosArchs=x86_64 -dSdkRoot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk -dSplitDebugInfo= -dTreeShakeIcons=false -dTrackWidgetCreation=true -dDartObfuscation=false -dEnableBitcode= --ExtraGenSnapshotOptions= --DartDefines= --ExtraFrontEndOptions= debug_ios_bundle_flutter_assets [ +72 ms] executing: [/Users/jacomus/flutter2/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H [ +35 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H [ ] 1d9032c7e1d867f071f2277eb1673e8f9b0274e3 [ ] executing: [/Users/jacomus/flutter2/flutter/] git tag --points-at 1d9032c7e1d867f071f2277eb1673e8f9b0274e3 [ +11 ms] Exit code 0 from: git tag --points-at 1d9032c7e1d867f071f2277eb1673e8f9b0274e3 [ ] 2.0.6 [ +39 ms] executing: [/Users/jacomus/flutter2/flutter/] git rev-parse --abbrev-ref --symbolic @{u} [ +5 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ ] origin/stable [ ] executing: [/Users/jacomus/flutter2/flutter/] git ls-remote --get-url origin [ +5 ms] Exit code 0 from: git ls-remote --get-url origin [ ] https://github.com/flutter/flutter.git [ +37 ms] executing: [/Users/jacomus/flutter2/flutter/] git rev-parse --abbrev-ref HEAD [ +5 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ ] stable [ +38 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ +2 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ +36 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update. [ ] Artifact Instance of 'GradleWrapper' is not required, skipping update. [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ ] Artifact Instance of 'FlutterSdk' is not required, skipping update. [ ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update. [ ] Artifact Instance of 'PubDependencies' is not required, skipping update. [ +75 ms] Initializing file store [ +33 ms] debug_unpack_ios: Starting due to {InvalidatedReason.inputChanged} [ +23 ms] Skipping target: gen_localizations [ +5 ms] debug_unpack_ios: Complete [ +228 ms] kernel_snapshot: Starting due to {} [ +9 ms] /Users/jacomus/flutter2/flutter/bin/cache/dart-sdk/bin/dart --disable-dart-dev /Users/jacomus/flutter2/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/jacomus/flutter2/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --target=flutter --no-print-incremental-dependencies -Ddart.vm.profile=false -Ddart.vm.product=false --enable-asserts --track-widget-creation --no-link-platform --packages /Users/jacomus/Code/flutter/text_wrapping_small_example/.dart_tool/package_config.json --output-dill /Users/jacomus/Code/flutter/text_wrapping_small_example/.dart_tool/flutter_build/38fba523eaada0443421a54b2e46ba15/app.dill --depfile /Users/jacomus/Code/flutter/text_wrapping_small_example/.dart_tool/flutter_build/38fba523eaada0443421a54b2e46ba15/kernel_snapshot.d package:text_wrapping_small_example/main.dart [+6257 ms] kernel_snapshot: Complete [ +335 ms] debug_universal_framework: Starting due to {InvalidatedReason.inputChanged} [ +12 ms] executing: sysctl hw.optional.arm64 [ +4 ms] Exit code 1 from: sysctl hw.optional.arm64 [ ] sysctl: unknown oid 'hw.optional.arm64' [ +1 ms] executing: xcrun clang -x c -arch x86_64 /var/folders/hk/3pn44rvd6cxdk_8b3whtpbj80000gn/T/flutter_tools.7CW5Q4/flutter_tools_stub_source.3TR3zl/debug_app.cc -dynamiclib -fembed-bitcode-marker -miphoneos-version-min=8.0 -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -install_name @rpath/App.framework/App -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk -o /Users/jacomus/Code/flutter/text_wrapping_small_example/.dart_tool/flutter_build/38fba523eaada0443421a54b2e46ba15/App.framework/App [ +251 ms] debug_universal_framework: Complete [ +2 ms] debug_ios_bundle_flutter_assets: Starting due to {} [ +156 ms] debug_ios_bundle_flutter_assets: Complete [ +448 ms] Persisting file store [ +5 ms] Done persisting file store [ +6 ms] build succeeded. [ +9 ms] "flutter assemble" took 7,918ms. [ +3 ms] ensureAnalyticsSent: 0ms [ ] Running shutdown hooks [ ] Shutdown hook priority 4 [ ] Shutdown hooks complete [ ] exiting with code 0 Project /Users/jacomus/Code/flutter/text_wrapping_small_example built and packaged successfully. CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler (in target 'Runner' from project 'Runner') cd /Users/jacomus/Code/flutter/text_wrapping_small_example/ios export DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer export SDKROOT\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -incremental -module-name Runner -Onone -enable-batch-mode -enforce-exclusivity\=checked @/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/ Runner.SwiftFileList -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk -target x86_64-apple-ios9.0-simulator -g -module-cache-path /Users/jacomus/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -swift-version 5 -I /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator -F /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator -parse-as-library -c -j6 -output-file-map /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/R unner-OutputFileMap.json -parseable-output -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/R unner.swiftmodule -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files. hmap -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-hea ders.hmap -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-hea ders.hmap -Xcc -iquote -Xcc /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers. hmap -Xcc -I/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources-normal /x86_64 -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/R unner-Swift.h -import-objc-header /Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner/Runner-Bridging-Header.h -pch-output-dir /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/PrecompiledHeaders -working-directory /Users/jacomus/Code/flutter/text_wrapping_small_example/ios PrecompileSwiftBridgingHeader normal x86_64 (in target 'Runner' from project 'Runner') cd /Users/jacomus/Code/flutter/text_wrapping_small_example/ios /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -target x86_64-apple-ios9.0-simulator -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk -I /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator -F /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator -enable-testing -g -module-cache-path /Users/jacomus/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -serialize-debugging-options -Xcc -working-directory -Xcc /Users/jacomus/Code/flutter/text_wrapping_small_example/ios -enable-anonymous-context-mangled-names -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files. hmap -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-hea ders.hmap -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-hea ders.hmap -Xcc -iquote -Xcc /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers. hmap -Xcc -I/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources-normal /x86_64 -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG\=1 -target-sdk-version 14.4 -serialize-diagnostics-path /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/PrecompiledHeaders/Runner-Bridging-Header-3T0AT8UCAHBTP.dia /Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner/Runner-Bridging-Header.h -emit-pch -pch-output-dir /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/PrecompiledHeaders CompileSwift normal x86_64 /Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner/AppDelegate.swift (in target 'Runner' from project 'Runner') cd /Users/jacomus/Code/flutter/text_wrapping_small_example/ios /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -c -primary-file /Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner/AppDelegate.swift -emit-module-path /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/A ppDelegate\~partial.swiftmodule -emit-module-doc-path /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/A ppDelegate\~partial.swiftdoc -emit-module-source-info-path /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/A ppDelegate\~partial.swiftsourceinfo -serialize-diagnostics-path /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/A ppDelegate.dia -emit-dependencies-path /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/A ppDelegate.d -emit-reference-dependencies-path /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/A ppDelegate.swiftdeps -target x86_64-apple-ios9.0-simulator -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk -I /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator -F /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator -enable-testing -g -module-cache-path /Users/jacomus/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -serialize-debugging-options -Xcc -working-directory -Xcc /Users/jacomus/Code/flutter/text_wrapping_small_example/ios -enable-anonymous-context-mangled-names -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files. hmap -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-hea ders.hmap -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-hea ders.hmap -Xcc -iquote -Xcc /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers. hmap -Xcc -I/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources-normal /x86_64 -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG\=1 -target-sdk-version 14.4 -import-objc-header /Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner/Runner-Bridging-Header.h -pch-output-dir /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/PrecompiledHeaders -pch-disable-validation -parse-as-library -module-name Runner -o /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/A ppDelegate.o MergeSwiftModule normal x86_64 (in target 'Runner' from project 'Runner') cd /Users/jacomus/Code/flutter/text_wrapping_small_example/ios /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -merge-modules -emit-module /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/A ppDelegate\~partial.swiftmodule -parse-as-library -sil-merge-partial-modules -disable-diagnostic-passes -disable-sil-perf-optzns -target x86_64-apple-ios9.0-simulator -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk -I /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator -F /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator -enable-testing -g -module-cache-path /Users/jacomus/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -serialize-debugging-options -Xcc -working-directory -Xcc /Users/jacomus/Code/flutter/text_wrapping_small_example/ios -enable-anonymous-context-mangled-names -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files. hmap -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-hea ders.hmap -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-hea ders.hmap -Xcc -iquote -Xcc /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers. hmap -Xcc -I/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources-normal /x86_64 -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG\=1 -target-sdk-version 14.4 -emit-module-doc-path /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/R unner.swiftdoc -emit-module-source-info-path /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/R unner.swiftsourceinfo -emit-objc-header-path /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/R unner-Swift.h -import-objc-header /Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner/Runner-Bridging-Header.h -module-name Runner -o /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/R unner.swiftmodule CompileC /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Gener atedPluginRegistrant.o /Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Runner' from project 'Runner') cd /Users/jacomus/Code/flutter/text_wrapping_small_example/ios export LANG\=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios9.0-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path\=/Users/jacomus/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/jacomus/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror\=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror\=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DDEBUG\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files. hmap -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-hea ders.hmap -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-hea ders.hmap -iquote /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers. hmap -I/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/include -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources-normal /x86_64 -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator -MMD -MT dependencies -MF /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/G eneratedPluginRegistrant.d --serialize-diagnostics /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/G eneratedPluginRegistrant.dia -c /Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner/GeneratedPluginRegistrant.m -o /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/G eneratedPluginRegistrant.o Ld /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Runner normal (in target 'Runner' from project 'Runner') cd /Users/jacomus/Code/flutter/text_wrapping_small_example/ios /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -target x86_64-apple-ios9.0-simulator -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk -L/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator -F/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator -filelist /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/R unner.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker @executable_path/Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/R unner_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/R unner.swiftmodule -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xc ent -Xlinker -no_adhoc_codesign -Xlinker -dependency_info -Xlinker /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/R unner_dependency_info.dat -o /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Runner PhaseScriptExecution Thin\ Binary /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D 2608.sh (in target 'Runner' from project 'Runner') cd /Users/jacomus/Code/flutter/text_wrapping_small_example/ios export ACTION\=build export AD_HOC_CODE_SIGNING_ALLOWED\=YES export ALTERNATE_GROUP\=staff export ALTERNATE_MODE\=u+w,go-w,a+rX export ALTERNATE_OWNER\=jacomus export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES\=NO export ALWAYS_SEARCH_USER_PATHS\=NO export ALWAYS_USE_SEPARATE_HEADERMAPS\=NO export APPLE_INTERNAL_DEVELOPER_DIR\=/AppleInternal/Developer export APPLE_INTERNAL_DIR\=/AppleInternal export APPLE_INTERNAL_DOCUMENTATION_DIR\=/AppleInternal/Documentation export APPLE_INTERNAL_LIBRARY_DIR\=/AppleInternal/Library export APPLE_INTERNAL_TOOLS\=/AppleInternal/Developer/Tools export APPLICATION_EXTENSION_API_ONLY\=NO export APPLY_RULES_IN_COPY_FILES\=NO export APPLY_RULES_IN_COPY_HEADERS\=NO export ARCHS\=x86_64 export ARCHS_STANDARD\=arm64\ x86_64\ i386 export ARCHS_STANDARD_32_64_BIT\=arm64\ i386\ x86_64 export ARCHS_STANDARD_32_BIT\=i386 export ARCHS_STANDARD_64_BIT\=arm64\ x86_64 export ARCHS_STANDARD_INCLUDING_64_BIT\=arm64\ x86_64\ i386 export ARCHS_UNIVERSAL_IPHONE_OS\=arm64\ i386\ x86_64 export ASSETCATALOG_COMPILER_APPICON_NAME\=AppIcon export AVAILABLE_PLATFORMS\=appletvos\ appletvsimulator\ iphoneos\ iphonesimulator\ macosx\ watchos\ watchsimulator export AppIdentifierPrefix\=5KJ86SQJAU. export BITCODE_GENERATION_MODE\=marker export BUILD_ACTIVE_RESOURCES_ONLY\=YES export BUILD_COMPONENTS\=headers\ build export BUILD_DIR\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios export BUILD_LIBRARY_FOR_DISTRIBUTION\=NO export BUILD_ROOT\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Products export BUILD_STYLE\= export BUILD_VARIANTS\=normal export BUILT_PRODUCTS_DIR\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator export BUNDLE_CONTENTS_FOLDER_PATH_deep\=Contents/ export BUNDLE_EXECUTABLE_FOLDER_NAME_deep\=MacOS export BUNDLE_FORMAT\=shallow export BUNDLE_FRAMEWORKS_FOLDER_PATH\=Frameworks export BUNDLE_PLUGINS_FOLDER_PATH\=PlugIns export BUNDLE_PRIVATE_HEADERS_FOLDER_PATH\=PrivateHeaders export BUNDLE_PUBLIC_HEADERS_FOLDER_PATH\=Headers export CACHE_ROOT\=/var/folders/hk/3pn44rvd6cxdk_8b3whtpbj80000gn/C/com.apple.DeveloperTools/12.4-12D4e/Xcode export CCHROOT\=/var/folders/hk/3pn44rvd6cxdk_8b3whtpbj80000gn/C/com.apple.DeveloperTools/12.4-12D4e/Xcode export CHMOD\=/bin/chmod export CHOWN\=/usr/sbin/chown export CLANG_ANALYZER_NONNULL\=YES export CLANG_CXX_LANGUAGE_STANDARD\=gnu++0x export CLANG_CXX_LIBRARY\=libc++ export CLANG_ENABLE_MODULES\=YES export CLANG_ENABLE_OBJC_ARC\=YES export CLANG_MODULES_BUILD_SESSION_FILE\=/Users/jacomus/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING\=YES export CLANG_WARN_BOOL_CONVERSION\=YES export CLANG_WARN_COMMA\=YES export CLANG_WARN_CONSTANT_CONVERSION\=YES export CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS\=YES export CLANG_WARN_DIRECT_OBJC_ISA_USAGE\=YES_ERROR export CLANG_WARN_EMPTY_BODY\=YES export CLANG_WARN_ENUM_CONVERSION\=YES export CLANG_WARN_INFINITE_RECURSION\=YES export CLANG_WARN_INT_CONVERSION\=YES export CLANG_WARN_NON_LITERAL_NULL_CONVERSION\=YES export CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF\=YES export CLANG_WARN_OBJC_LITERAL_CONVERSION\=YES export CLANG_WARN_OBJC_ROOT_CLASS\=YES_ERROR export CLANG_WARN_RANGE_LOOP_ANALYSIS\=YES export CLANG_WARN_STRICT_PROTOTYPES\=YES export CLANG_WARN_SUSPICIOUS_MOVE\=YES export CLANG_WARN_UNREACHABLE_CODE\=YES export CLANG_WARN__DUPLICATE_METHOD_MATCH\=YES export CLASS_FILE_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaCla sses export CLEAN_PRECOMPS\=YES export CLONE_HEADERS\=NO export CODESIGNING_FOLDER_PATH\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app export CODE_SIGNING_ALLOWED\=YES export CODE_SIGNING_REQUIRED\=YES export CODE_SIGN_CONTEXT_CLASS\=XCiPhoneSimulatorCodeSignContext export CODE_SIGN_IDENTITY\=- export CODE_SIGN_INJECT_BASE_ENTITLEMENTS\=YES export COLOR_DIAGNOSTICS\=NO export COMBINE_HIDPI_IMAGES\=NO export COMPILER_INDEX_STORE_ENABLE\=NO export COMPOSITE_SDK_DIRS\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/CompositeSDKs export COMPRESS_PNG_FILES\=YES export CONFIGURATION\=Debug export CONFIGURATION_BUILD_DIR\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator export CONFIGURATION_TEMP_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator export CONTENTS_FOLDER_PATH\=Runner.app export COPYING_PRESERVES_HFS_DATA\=NO export COPY_HEADERS_RUN_UNIFDEF\=NO export COPY_PHASE_STRIP\=NO export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS\=YES export CORRESPONDING_DEVICE_PLATFORM_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform export CORRESPONDING_DEVICE_PLATFORM_NAME\=iphoneos export CORRESPONDING_DEVICE_SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk export CORRESPONDING_DEVICE_SDK_NAME\=iphoneos14.4 export CP\=/bin/cp export CREATE_INFOPLIST_SECTION_IN_BINARY\=NO export CURRENT_ARCH\=undefined_arch export CURRENT_PROJECT_VERSION\=1 export CURRENT_VARIANT\=normal export DART_OBFUSCATION\=false export DEAD_CODE_STRIPPING\=YES export DEBUGGING_SYMBOLS\=YES export DEBUG_INFORMATION_FORMAT\=dwarf export DEFAULT_COMPILER\=com.apple.compilers.llvm.clang.1_0 export DEFAULT_DEXT_INSTALL_PATH\=/System/Library/DriverExtensions export DEFAULT_KEXT_INSTALL_PATH\=/System/Library/Extensions export DEFINES_MODULE\=NO export DEPLOYMENT_LOCATION\=NO export DEPLOYMENT_POSTPROCESSING\=NO export DEPLOYMENT_TARGET_CLANG_ENV_NAME\=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_CLANG_FLAG_NAME\=mios-simulator-version-min export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX\=-mios-simulator-version-min\= export DEPLOYMENT_TARGET_LD_ENV_NAME\=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_LD_FLAG_NAME\=ios_simulator_version_min export DEPLOYMENT_TARGET_SETTING_NAME\=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_SUGGESTED_VALUES\=9.0\ 9.2\ 10.0\ 10.2\ 11.0\ 11.2\ 11.4\ 12.1\ 12.3\ 13.0\ 13.2\ 13.4\ 13.6\ 14.1\ 14.3\ 14.4 export DERIVED_FILES_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Deri vedSources export DERIVED_FILE_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Deriv edSources export DERIVED_SOURCES_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/De rivedSources export DEVELOPER_APPLICATIONS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications export DEVELOPER_BIN_DIR\=/Applications/Xcode.app/Contents/Developer/usr/bin export DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer export DEVELOPER_FRAMEWORKS_DIR\=/Applications/Xcode.app/Contents/Developer/Library/Frameworks export DEVELOPER_FRAMEWORKS_DIR_QUOTED\=/Applications/Xcode.app/Contents/Developer/Library/Frameworks export DEVELOPER_LIBRARY_DIR\=/Applications/Xcode.app/Contents/Developer/Library export DEVELOPER_SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs export DEVELOPER_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Tools export DEVELOPER_USR_DIR\=/Applications/Xcode.app/Contents/Developer/usr export DEVELOPMENT_LANGUAGE\=en export DOCUMENTATION_FOLDER_PATH\=Runner.app/en.lproj/Documentation export DONT_GENERATE_INFOPLIST_FILE\=NO export DO_HEADER_SCANNING_IN_JAM\=NO export DSTROOT\=/tmp/Runner.dst export DT_TOOLCHAIN_DIR\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export DWARF_DSYM_FILE_NAME\=Runner.app.dSYM export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT\=NO export DWARF_DSYM_FOLDER_PATH\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator export EFFECTIVE_PLATFORM_NAME\=-iphonesimulator export EMBEDDED_CONTENT_CONTAINS_SWIFT\=NO export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE\=NO export ENABLE_BITCODE\=NO export ENABLE_DEFAULT_HEADER_SEARCH_PATHS\=YES export ENABLE_HARDENED_RUNTIME\=NO export ENABLE_HEADER_DEPENDENCIES\=YES export ENABLE_ON_DEMAND_RESOURCES\=YES export ENABLE_PREVIEWS\=NO export ENABLE_STRICT_OBJC_MSGSEND\=YES export ENABLE_TESTABILITY\=YES export ENABLE_TESTING_SEARCH_PATHS\=NO export ENTITLEMENTS_DESTINATION\=__entitlements export ENTITLEMENTS_REQUIRED\=YES export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS\=.DS_Store\ .svn\ .git\ .hg\ CVS export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES\=\*.nib\ \*.lproj\ \*.framework\ \*.gch\ \*.xcode\*\ \*.xcassets\ \(\*\)\ .DS_Store\ CVS\ .svn\ .git\ .hg\ \*.pbproj\ \*.pbxproj export EXECUTABLES_FOLDER_PATH\=Runner.app/Executables export EXECUTABLE_FOLDER_PATH\=Runner.app export EXECUTABLE_NAME\=Runner export EXECUTABLE_PATH\=Runner.app/Runner export EXPANDED_CODE_SIGN_IDENTITY\=- export EXPANDED_CODE_SIGN_IDENTITY_NAME\=- export FILE_LIST\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/Link FileList export FIXED_FILES_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedF iles export FLUTTER_APPLICATION_PATH\=/Users/jacomus/Code/flutter/text_wrapping_small_example export FLUTTER_BUILD_DIR\=build export FLUTTER_BUILD_NAME\=1.0.0 export FLUTTER_BUILD_NUMBER\=1 export FLUTTER_ROOT\=/Users/jacomus/flutter2/flutter export FLUTTER_SUPPRESS_ANALYTICS\=true export FLUTTER_TARGET\=/Users/jacomus/Code/flutter/text_wrapping_small_example/lib/main.dart export FRAMEWORKS_FOLDER_PATH\=Runner.app/Frameworks export FRAMEWORK_FLAG_PREFIX\=-framework export FRAMEWORK_SEARCH_PATHS\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator\ export FRAMEWORK_VERSION\=A export FULL_PRODUCT_NAME\=Runner.app export GCC3_VERSION\=3.3 export GCC_C_LANGUAGE_STANDARD\=gnu99 export GCC_DYNAMIC_NO_PIC\=NO export GCC_INLINES_ARE_PRIVATE_EXTERN\=YES export GCC_NO_COMMON_BLOCKS\=YES export GCC_OBJC_LEGACY_DISPATCH\=YES export GCC_OPTIMIZATION_LEVEL\=0 export GCC_PFE_FILE_C_DIALECTS\=c\ objective-c\ c++\ objective-c++ export GCC_PREPROCESSOR_DEFINITIONS\=DEBUG\=1\ export GCC_SYMBOLS_PRIVATE_EXTERN\=NO export GCC_TREAT_WARNINGS_AS_ERRORS\=NO export GCC_VERSION\=com.apple.compilers.llvm.clang.1_0 export GCC_VERSION_IDENTIFIER\=com_apple_compilers_llvm_clang_1_0 export GCC_WARN_64_TO_32_BIT_CONVERSION\=YES export GCC_WARN_ABOUT_RETURN_TYPE\=YES_ERROR export GCC_WARN_UNDECLARED_SELECTOR\=YES export GCC_WARN_UNINITIALIZED_AUTOS\=YES_AGGRESSIVE export GCC_WARN_UNUSED_FUNCTION\=YES export GCC_WARN_UNUSED_VARIABLE\=YES export GENERATED_MODULEMAP_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/GeneratedModuleMaps-iphonesimulator export GENERATE_MASTER_OBJECT_FILE\=NO export GENERATE_PKGINFO_FILE\=YES export GENERATE_PROFILING_CODE\=NO export GENERATE_TEXT_BASED_STUBS\=NO export GID\=20 export GROUP\=staff export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT\=YES export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES\=YES export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS\=YES export HEADERMAP_INCLUDES_PROJECT_HEADERS\=YES export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES\=YES export HEADERMAP_USES_VFS\=NO export HEADER_SEARCH_PATHS\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/include\ export HIDE_BITCODE_SYMBOLS\=YES export HOME\=/Users/jacomus export ICONV\=/usr/bin/iconv export INFOPLIST_EXPAND_BUILD_SETTINGS\=YES export INFOPLIST_FILE\=Runner/Info.plist export INFOPLIST_OUTPUT_FORMAT\=binary export INFOPLIST_PATH\=Runner.app/Info.plist export INFOPLIST_PREPROCESS\=NO export INFOSTRINGS_PATH\=Runner.app/en.lproj/InfoPlist.strings export INLINE_PRIVATE_FRAMEWORKS\=NO export INSTALLHDRS_COPY_PHASE\=NO export INSTALLHDRS_SCRIPT_PHASE\=NO export INSTALL_DIR\=/tmp/Runner.dst/Applications export INSTALL_GROUP\=staff export INSTALL_MODE_FLAG\=u+w,go-w,a+rX export INSTALL_OWNER\=jacomus export INSTALL_PATH\=/Applications export INSTALL_ROOT\=/tmp/Runner.dst export IPHONEOS_DEPLOYMENT_TARGET\=9.0 export JAVAC_DEFAULT_FLAGS\=-J-Xms64m\ -J-XX:NewSize\=4M\ -J-Dfile.encoding\=UTF8 export JAVA_APP_STUB\=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub export JAVA_ARCHIVE_CLASSES\=YES export JAVA_ARCHIVE_TYPE\=JAR export JAVA_COMPILER\=/usr/bin/javac export JAVA_FOLDER_PATH\=Runner.app/Java export JAVA_FRAMEWORK_RESOURCES_DIRS\=Resources export JAVA_JAR_FLAGS\=cv export JAVA_SOURCE_SUBDIR\=. export JAVA_USE_DEPENDENCIES\=YES export JAVA_ZIP_FLAGS\=-urg export JIKES_DEFAULT_FLAGS\=+E\ +OLDCSO export KEEP_PRIVATE_EXTERNS\=NO export LD_DEPENDENCY_INFO_FILE\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.buil d/Objects-normal/undefined_arch/Runner_dependency_info.dat export LD_ENTITLEMENTS_SECTION\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.buil d/Runner.app-Simulated.xcent export LD_GENERATE_MAP_FILE\=NO export LD_MAP_FILE_PATH\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runne r-LinkMap-normal-undefined_arch.txt export LD_NO_PIE\=NO export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER\=YES export LD_RUNPATH_SEARCH_PATHS\=\ @executable_path/Frameworks export LEGACY_DEVELOPER_DIR\=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer export LEX\=lex export LIBRARY_DEXT_INSTALL_PATH\=/Library/DriverExtensions export LIBRARY_FLAG_NOSPACE\=YES export LIBRARY_FLAG_PREFIX\=-l export LIBRARY_KEXT_INSTALL_PATH\=/Library/Extensions export LIBRARY_SEARCH_PATHS\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator\ export LINKER_DISPLAYS_MANGLED_NAMES\=NO export LINK_FILE_LIST_normal_x86_64\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner .build/Objects-normal/x86_64/Runner.LinkFileList export LINK_WITH_STANDARD_LIBRARIES\=YES export LLVM_TARGET_TRIPLE_OS_VERSION\=ios9.0 export LLVM_TARGET_TRIPLE_SUFFIX\=-simulator export LLVM_TARGET_TRIPLE_VENDOR\=apple export LOCALIZED_RESOURCES_FOLDER_PATH\=Runner.app/en.lproj export LOCALIZED_STRING_MACRO_NAMES\=NSLocalizedString\ CFCopyLocalizedString export LOCALIZED_STRING_SWIFTUI_SUPPORT\=YES export LOCAL_ADMIN_APPS_DIR\=/Applications/Utilities export LOCAL_APPS_DIR\=/Applications export LOCAL_DEVELOPER_DIR\=/Library/Developer export LOCAL_LIBRARY_DIR\=/Library export LOCROOT\=/Users/jacomus/Code/flutter/text_wrapping_small_example/ios export LOCSYMROOT\=/Users/jacomus/Code/flutter/text_wrapping_small_example/ios export MACH_O_TYPE\=mh_execute export MAC_OS_X_PRODUCT_BUILD_VERSION\=20B50 export MAC_OS_X_VERSION_ACTUAL\=110001 export MAC_OS_X_VERSION_MAJOR\=110000 export MAC_OS_X_VERSION_MINOR\=110000 export METAL_LIBRARY_FILE_BASE\=default export METAL_LIBRARY_OUTPUT_DIR\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app export MODULES_FOLDER_PATH\=Runner.app/Modules export MODULE_CACHE_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/ModuleCache.noindex export MTL_ENABLE_DEBUG_INFO\=YES export NATIVE_ARCH\=x86_64 export NATIVE_ARCH_32_BIT\=i386 export NATIVE_ARCH_64_BIT\=x86_64 export NATIVE_ARCH_ACTUAL\=x86_64 export NO_COMMON\=YES export OBJC_ABI_VERSION\=2 export OBJECT_FILE_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Object s export OBJECT_FILE_DIR_normal\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build /Objects-normal export OBJROOT\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex export ONLY_ACTIVE_ARCH\=NO export OS\=MACOS export OSAC\=/usr/bin/osacompile export PACKAGE_CONFIG\=/Users/jacomus/Code/flutter/text_wrapping_small_example/.dart_tool/package_config.json export PACKAGE_TYPE\=com.apple.package-type.wrapper.application export PASCAL_STRINGS\=YES export PATH\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applicat ions/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applic ations/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Develop er/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/go/bin:/Library/Apple/usr/bin:/Users/jacomus/flutter/bin export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES\=/usr/include\ /usr/local/include\ /System/Library/Frameworks\ /System/Library/PrivateFrameworks\ /Applications/Xcode.app/Contents/Developer/Headers\ /Applications/Xcode.app/Contents/Developer/SDKs\ /Applications/Xcode.app/Contents/Developer/Platforms export PBDEVELOPMENTPLIST_PATH\=Runner.app/pbdevelopment.plist export PER_ARCH_OBJECT_FILE_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.bui ld/Objects-normal/undefined_arch export PER_VARIANT_OBJECT_FILE_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner. build/Objects-normal export PKGINFO_FILE_PATH\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgI nfo export PKGINFO_PATH\=Runner.app/PkgInfo export PLATFORM_DEVELOPER_APPLICATIONS_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications export PLATFORM_DEVELOPER_BIN_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin export PLATFORM_DEVELOPER_LIBRARY_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library export PLATFORM_DEVELOPER_SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs export PLATFORM_DEVELOPER_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools export PLATFORM_DEVELOPER_USR_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr export PLATFORM_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform export PLATFORM_DISPLAY_NAME\=iOS\ Simulator export PLATFORM_FAMILY_NAME\=iOS export PLATFORM_NAME\=iphonesimulator export PLATFORM_PREFERRED_ARCH\=x86_64 export PLATFORM_PRODUCT_BUILD_VERSION\=18D46 export PLIST_FILE_OUTPUT_FORMAT\=binary export PLUGINS_FOLDER_PATH\=Runner.app/PlugIns export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR\=YES export PRECOMP_DESTINATION_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.buil d/PrefixHeaders export PRESERVE_DEAD_CODE_INITS_AND_TERMS\=NO export PRIVATE_HEADERS_FOLDER_PATH\=Runner.app/PrivateHeaders export PRODUCT_BUNDLE_IDENTIFIER\=com.example.textWrappingSmallExample export PRODUCT_BUNDLE_PACKAGE_TYPE\=APPL export PRODUCT_MODULE_NAME\=Runner export PRODUCT_NAME\=Runner export PRODUCT_SETTINGS_PATH\=/Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner/Info.plist export PRODUCT_TYPE\=com.apple.product-type.application export PROFILING_CODE\=NO export PROJECT\=Runner export PROJECT_DERIVED_FILE_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/DerivedSources export PROJECT_DIR\=/Users/jacomus/Code/flutter/text_wrapping_small_example/ios export PROJECT_FILE_PATH\=/Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner.xcodeproj export PROJECT_NAME\=Runner export PROJECT_TEMP_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build export PROJECT_TEMP_ROOT\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex export PUBLIC_HEADERS_FOLDER_PATH\=Runner.app/Headers export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS\=YES export REMOVE_CVS_FROM_RESOURCES\=YES export REMOVE_GIT_FROM_RESOURCES\=YES export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES\=YES export REMOVE_HG_FROM_RESOURCES\=YES export REMOVE_SVN_FROM_RESOURCES\=YES export REZ_COLLECTOR_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Reso urceManagerResources export REZ_OBJECTS_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Resour ceManagerResources/Objects export REZ_SEARCH_PATHS\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator\ export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES\=NO export SCRIPTS_FOLDER_PATH\=Runner.app/Scripts export SCRIPT_INPUT_FILE_COUNT\=0 export SCRIPT_INPUT_FILE_LIST_COUNT\=0 export SCRIPT_OUTPUT_FILE_COUNT\=0 export SCRIPT_OUTPUT_FILE_LIST_COUNT\=0 export SCRIPT_OUTPUT_STREAM_FILE\=/var/folders/hk/3pn44rvd6cxdk_8b3whtpbj80000gn/T/flutter_tools.BcSDGS/flutter_build_log_pipe.C3NYqN/pipe_to_stdout export SDKROOT\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk export SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk export SDK_DIR_iphonesimulator14_4\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk export SDK_NAME\=iphonesimulator14.4 export SDK_NAMES\=iphonesimulator14.4 export SDK_PRODUCT_BUILD_VERSION\=18D46 export SDK_VERSION\=14.4 export SDK_VERSION_ACTUAL\=140400 export SDK_VERSION_MAJOR\=140000 export SDK_VERSION_MINOR\=140400 export SED\=/usr/bin/sed export SEPARATE_STRIP\=NO export SEPARATE_SYMBOL_EDIT\=NO export SET_DIR_MODE_OWNER_GROUP\=YES export SET_FILE_MODE_OWNER_GROUP\=NO export SHALLOW_BUNDLE\=YES export SHARED_DERIVED_FILE_DIR\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/DerivedSources export SHARED_FRAMEWORKS_FOLDER_PATH\=Runner.app/SharedFrameworks export SHARED_PRECOMPS_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/PrecompiledHeaders export SHARED_SUPPORT_FOLDER_PATH\=Runner.app/SharedSupport export SKIP_INSTALL\=NO export SOURCE_ROOT\=/Users/jacomus/Code/flutter/text_wrapping_small_example/ios export SRCROOT\=/Users/jacomus/Code/flutter/text_wrapping_small_example/ios export STRINGS_FILE_OUTPUT_ENCODING\=binary export STRIP_BITCODE_FROM_COPIED_FILES\=NO export STRIP_INSTALLED_PRODUCT\=YES export STRIP_STYLE\=all export STRIP_SWIFT_SYMBOLS\=YES export SUPPORTED_DEVICE_FAMILIES\=1,2 export SUPPORTED_PLATFORMS\=iphoneos\ iphonesimulator export SUPPORTS_TEXT_BASED_API\=NO export SWIFT_OBJC_BRIDGING_HEADER\=Runner/Runner-Bridging-Header.h export SWIFT_OPTIMIZATION_LEVEL\=-Onone export SWIFT_PLATFORM_TARGET_PREFIX\=ios export SWIFT_RESPONSE_FILE_PATH_normal_x86_64\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimula tor/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList export SWIFT_VERSION\=5.0 export SYMROOT\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Products export SYSTEM_ADMIN_APPS_DIR\=/Applications/Utilities export SYSTEM_APPS_DIR\=/Applications export SYSTEM_CORE_SERVICES_DIR\=/System/Library/CoreServices export SYSTEM_DEMOS_DIR\=/Applications/Extras export SYSTEM_DEVELOPER_APPS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications export SYSTEM_DEVELOPER_BIN_DIR\=/Applications/Xcode.app/Contents/Developer/usr/bin export SYSTEM_DEVELOPER_DEMOS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built\ Examples export SYSTEM_DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer export SYSTEM_DEVELOPER_DOC_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Graphics\ Tools export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Java\ Tools export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Performance\ Tools export SYSTEM_DEVELOPER_RELEASENOTES_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/releasenotes export SYSTEM_DEVELOPER_TOOLS\=/Applications/Xcode.app/Contents/Developer/Tools export SYSTEM_DEVELOPER_TOOLS_DOC_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/documentation/DeveloperTools export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/releasenotes/DeveloperTools export SYSTEM_DEVELOPER_USR_DIR\=/Applications/Xcode.app/Contents/Developer/usr export SYSTEM_DEVELOPER_UTILITIES_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Utilities export SYSTEM_DEXT_INSTALL_PATH\=/System/Library/DriverExtensions export SYSTEM_DOCUMENTATION_DIR\=/Library/Documentation export SYSTEM_KEXT_INSTALL_PATH\=/System/Library/Extensions export SYSTEM_LIBRARY_DIR\=/System/Library export TAPI_VERIFY_MODE\=ErrorsOnly export TARGETED_DEVICE_FAMILY\=1,2 export TARGETNAME\=Runner export TARGET_BUILD_DIR\=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator export TARGET_DEVICE_IDENTIFIER\=dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder export TARGET_NAME\=Runner export TARGET_TEMP_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_FILES_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_FILE_DIR\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_ROOT\=/Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex export TEST_FRAMEWORK_SEARCH_PATHS\=\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/Developer/Library/Frameworks export TEST_LIBRARY_SEARCH_PATHS\=\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/lib export TOOLCHAINS\=com.apple.dt.toolchain.XcodeDefault export TOOLCHAIN_DIR\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export TRACK_WIDGET_CREATION\=true export TREAT_MISSING_BASELINES_AS_TEST_FAILURES\=NO export TREE_SHAKE_ICONS\=false export TeamIdentifierPrefix\=5KJ86SQJAU. export UID\=501 export UNLOCALIZED_RESOURCES_FOLDER_PATH\=Runner.app export UNSTRIPPED_PRODUCT\=NO export USER\=jacomus export USER_APPS_DIR\=/Users/jacomus/Applications export USER_LIBRARY_DIR\=/Users/jacomus/Library export USE_DYNAMIC_NO_PIC\=YES export USE_HEADERMAP\=YES export USE_HEADER_SYMLINKS\=NO export USE_LLVM_TARGET_TRIPLES\=YES export USE_LLVM_TARGET_TRIPLES_FOR_CLANG\=YES export USE_LLVM_TARGET_TRIPLES_FOR_LD\=YES export USE_LLVM_TARGET_TRIPLES_FOR_TAPI\=YES export VALIDATE_DEVELOPMENT_ASSET_PATHS\=YES_ERROR export VALIDATE_PRODUCT\=NO export VALIDATE_WORKSPACE\=YES_ERROR export VALID_ARCHS\=arm64\ arm64e\ i386\ x86_64 export VERBOSE_PBXCP\=NO export VERBOSE_SCRIPT_LOGGING\=YES export VERSIONING_SYSTEM\=apple-generic export VERSIONPLIST_PATH\=Runner.app/version.plist export VERSION_INFO_BUILDER\=jacomus export VERSION_INFO_FILE\=Runner_vers.c export VERSION_INFO_STRING\=\"@\(\#\)PROGRAM:Runner\ \ PROJECT:Runner-1\" export WRAPPER_EXTENSION\=app export WRAPPER_NAME\=Runner.app export WRAPPER_SUFFIX\=.app export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES\=NO export XCODE_APP_SUPPORT_DIR\=/Applications/Xcode.app/Contents/Developer/Library/Xcode export XCODE_PRODUCT_BUILD_VERSION\=12D4e export XCODE_VERSION_ACTUAL\=1240 export XCODE_VERSION_MAJOR\=1200 export XCODE_VERSION_MINOR\=1240 export XPCSERVICES_FOLDER_PATH\=Runner.app/XPCServices export YACC\=yacc export arch\=undefined_arch export variant\=normal /bin/sh -c /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5 004D2608.sh ♦ mkdir -p -- /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks ♦ rsync -av --delete --filter - .DS_Store /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/App.framework /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks building file list ... done deleting App.framework/_CodeSignature/CodeResources deleting App.framework/_CodeSignature/ App.framework/ App.framework/App App.framework/flutter_assets/AssetManifest.json App.framework/flutter_assets/FontManifest.json App.framework/flutter_assets/NOTICES App.framework/flutter_assets/kernel_blob.bin sent 34631705 bytes received 136 bytes 69263682.00 bytes/sec total size is 39957341 speedup is 1.15 ♦ rsync -av --delete --filter - .DS_Store --filter - Headers --filter - Modules /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Flutter.framework /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/ building file list ... done Flutter.framework/ Flutter.framework/Flutter Flutter.framework/_CodeSignature/CodeResources sent 37561077 bytes received 70 bytes 75122294.00 bytes/sec total size is 38356958 speedup is 1.02 ♦ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Flutter.framework/Flutter -r -o /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Flutter ♦ codesign --force --verbose --sign - -- /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/App /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/App: signed bundle with Mach-O thin (x86_64) [io.flutter.flutter.app] ♦ codesign --force --verbose --sign - -- /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Flutter /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Flutter: replacing existing signature /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Flutter: signed bundle with Mach-O thin (x86_64) [io.flutter.flutter] _dartobservatory._tcp ♦ plutil -insert NSBonjourServices.0 -string _dartobservatory._tcp /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Info.plist Allow Flutter tools on your computer to connect and debug your application. This prompt will not appear on release builds. ProcessInfoPlistFile /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Info.plist /Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner/Info.plist (in target 'Runner' from project 'Runner') cd /Users/jacomus/Code/flutter/text_wrapping_small_example/ios builtin-infoPlistUtility /Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner/Info.plist -producttype com.apple.product-type.application -genpkginfo /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/PkgInfo -expandbuildsettings -format binary -platform iphonesimulator -additionalcontentfile /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen -SBPartialInfo.plist -additionalcontentfile /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBParti alInfo.plist -additionalcontentfile /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_ info.plist -o /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Info.plist CopySwiftLibs /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app (in target 'Runner' from project 'Runner') cd /Users/jacomus/Code/flutter/text_wrapping_small_example/ios export CODESIGN_ALLOCATE\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate export DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer export SDKROOT\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk builtin-swiftStdLibTool --copy --verbose --sign - --scan-executable /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Runner --scan-folder /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks --scan-folder /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/PlugIns --platform iphonesimulator --toolchain /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks --strip-bitcode --strip-bitcode-tool /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/SwiftStdLibToolInputDep endencies.dep libswiftCoreAudio.dylib is up to date at /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib libswiftObjectiveC.dylib is up to date at /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib libswiftFoundation.dylib is up to date at /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib libswiftCoreImage.dylib is up to date at /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib libswiftUIKit.dylib is up to date at /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib libswiftQuartzCore.dylib is up to date at /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib libswiftCore.dylib is up to date at /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib libswiftCoreMedia.dylib is up to date at /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib libswiftos.dylib is up to date at /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib libswiftDispatch.dylib is up to date at /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib libswiftCoreGraphics.dylib is up to date at /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib libswiftMetal.dylib is up to date at /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib libswiftCoreFoundation.dylib is up to date at /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib libswiftDarwin.dylib is up to date at /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib Codesigning /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib /usr/bin/codesign --force --sign - --verbose /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib Code signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib is unchanged; keeping original Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib Codesigning /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib Codesigning /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib /usr/bin/codesign --force --sign - --verbose /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib /usr/bin/codesign --force --sign - --verbose /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib Codesigning /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib Codesigning /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib /usr/bin/codesign --force --sign - --verbose /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib /usr/bin/codesign --force --sign - --verbose /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib Codesigning /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib /usr/bin/codesign --force --sign - --verbose /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib Codesigning /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib /usr/bin/codesign --force --sign - --verbose /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib Code signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib is unchanged; keeping original Code signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib is unchanged; keeping original Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib Code signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib is unchanged; keeping original Codesigning /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib Codesigning /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib /usr/bin/codesign --force --sign - --verbose /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib /usr/bin/codesign --force --sign - --verbose /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib Code signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib is unchanged; keeping original Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib Codesigning /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib /usr/bin/codesign --force --sign - --verbose /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib Codesigning /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib /usr/bin/codesign --force --sign - --verbose /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib Code signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib is unchanged; keeping original Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib Code signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib is unchanged; keeping original Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib Code signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib is unchanged; keeping original Codesigning /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib Codesigning /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib /usr/bin/codesign --force --sign - --verbose /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib /usr/bin/codesign --force --sign - --verbose /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib Code signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib is unchanged; keeping original Code signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib is unchanged; keeping original Codesigning /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib /usr/bin/codesign --force --sign - --verbose /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib Probing signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib /usr/bin/codesign -r- --display /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib Code signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib is unchanged; keeping original Code signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib is unchanged; keeping original Code signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib is unchanged; keeping original Code signature of /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib is unchanged; keeping original CodeSign /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app (in target 'Runner' from project 'Runner') cd /Users/jacomus/Code/flutter/text_wrapping_small_example/ios export CODESIGN_ALLOCATE\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate Signing Identity: "-" /usr/bin/codesign --force --sign - --entitlements /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent --timestamp\=none /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app ** BUILD SUCCEEDED ** [ +57 ms] └─Compiling, linking and signing... (completed in 4.6s) [ ] Xcode build done. 16.5s [ ] executing: [/Users/jacomus/Code/flutter/text_wrapping_small_example/ios/] xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/hk/3pn44rvd6cxdk_8b3whtpbj80000gn/T/flutter_tools.BcSDGS/flutter_build_log_pipe.C3NYqN/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO -showBuildSettings [ ] executing: [/Users/jacomus/Code/flutter/text_wrapping_small_example/ios/] xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/hk/3pn44rvd6cxdk_8b3whtpbj80000gn/T/flutter_tools.BcSDGS/flutter_build_log_pipe.C3NYqN/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO -showBuildSettings [+2330 ms] Command line invocation: /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/hk/3pn44rvd6cxdk_8b3whtpbj80000gn/T/flutter_tools.BcSDGS/flutter_build_log_pipe.C3NYqN/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO -showBuildSettings Build settings from command line: ARCHS = x86_64 BUILD_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios COMPILER_INDEX_STORE_ENABLE = NO FLUTTER_SUPPRESS_ANALYTICS = true SCRIPT_OUTPUT_STREAM_FILE = /var/folders/hk/3pn44rvd6cxdk_8b3whtpbj80000gn/T/flutter_tools.BcSDGS/flutter_build_log_pipe.C3NYqN/pipe_to_stdout SDKROOT = iphonesimulator14.4 VERBOSE_SCRIPT_LOGGING = YES Build settings for action build and target Runner: ACTION = build AD_HOC_CODE_SIGNING_ALLOWED = YES ALTERNATE_GROUP = staff ALTERNATE_MODE = u+w,go-w,a+rX ALTERNATE_OWNER = jacomus ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO ALWAYS_SEARCH_USER_PATHS = NO ALWAYS_USE_SEPARATE_HEADERMAPS = NO APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer APPLE_INTERNAL_DIR = /AppleInternal APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools APPLICATION_EXTENSION_API_ONLY = NO APPLY_RULES_IN_COPY_FILES = NO APPLY_RULES_IN_COPY_HEADERS = NO ARCHS = x86_64 ARCHS_STANDARD = arm64 x86_64 i386 ARCHS_STANDARD_32_64_BIT = arm64 i386 x86_64 ARCHS_STANDARD_32_BIT = i386 ARCHS_STANDARD_64_BIT = arm64 x86_64 ARCHS_STANDARD_INCLUDING_64_BIT = arm64 x86_64 i386 ARCHS_UNIVERSAL_IPHONE_OS = arm64 i386 x86_64 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator BITCODE_GENERATION_MODE = marker BUILD_ACTIVE_RESOURCES_ONLY = NO BUILD_COMPONENTS = headers build BUILD_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios BUILD_LIBRARY_FOR_DISTRIBUTION = NO BUILD_ROOT = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Products BUILD_STYLE = BUILD_VARIANTS = normal BUILT_PRODUCTS_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator BUNDLE_CONTENTS_FOLDER_PATH_deep = Contents/ BUNDLE_EXECUTABLE_FOLDER_NAME_deep = MacOS BUNDLE_FORMAT = shallow BUNDLE_FRAMEWORKS_FOLDER_PATH = Frameworks BUNDLE_PLUGINS_FOLDER_PATH = PlugIns BUNDLE_PRIVATE_HEADERS_FOLDER_PATH = PrivateHeaders BUNDLE_PUBLIC_HEADERS_FOLDER_PATH = Headers CACHE_ROOT = /var/folders/hk/3pn44rvd6cxdk_8b3whtpbj80000gn/C/com.apple.DeveloperTools/12.4-12D4e/Xcode CCHROOT = /var/folders/hk/3pn44rvd6cxdk_8b3whtpbj80000gn/C/com.apple.DeveloperTools/12.4-12D4e/Xcode CHMOD = /bin/chmod CHOWN = /usr/sbin/chown CLANG_ANALYZER_NONNULL = YES CLANG_CXX_LANGUAGE_STANDARD = gnu++0x CLANG_CXX_LIBRARY = libc++ CLANG_ENABLE_MODULES = YES CLANG_ENABLE_OBJC_ARC = YES CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES CLANG_WARN_BOOL_CONVERSION = YES CLANG_WARN_COMMA = YES CLANG_WARN_CONSTANT_CONVERSION = YES CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR CLANG_WARN_EMPTY_BODY = YES CLANG_WARN_ENUM_CONVERSION = YES CLANG_WARN_INFINITE_RECURSION = YES CLANG_WARN_INT_CONVERSION = YES CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES CLANG_WARN_OBJC_LITERAL_CONVERSION = YES CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR CLANG_WARN_RANGE_LOOP_ANALYSIS = YES CLANG_WARN_STRICT_PROTOTYPES = YES CLANG_WARN_SUSPICIOUS_MOVE = YES CLANG_WARN_UNREACHABLE_CODE = YES CLANG_WARN__DUPLICATE_METHOD_MATCH = YES CLASS_FILE_DIR = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses CLEAN_PRECOMPS = YES CLONE_HEADERS = NO CODESIGNING_FOLDER_PATH = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app CODE_SIGNING_ALLOWED = YES CODE_SIGNING_REQUIRED = YES CODE_SIGN_CONTEXT_CLASS = XCiPhoneSimulatorCodeSignContext CODE_SIGN_IDENTITY = - CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES COLOR_DIAGNOSTICS = NO COMBINE_HIDPI_IMAGES = NO COMPILER_INDEX_STORE_ENABLE = NO COMPOSITE_SDK_DIRS = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/CompositeSDKs COMPRESS_PNG_FILES = YES CONFIGURATION = Debug CONFIGURATION_BUILD_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator CONFIGURATION_TEMP_DIR = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator CONTENTS_FOLDER_PATH = Runner.app COPYING_PRESERVES_HFS_DATA = NO COPY_HEADERS_RUN_UNIFDEF = NO COPY_PHASE_STRIP = NO COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES CORRESPONDING_DEVICE_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform CORRESPONDING_DEVICE_PLATFORM_NAME = iphoneos CORRESPONDING_DEVICE_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk CORRESPONDING_DEVICE_SDK_NAME = iphoneos14.4 CP = /bin/cp CREATE_INFOPLIST_SECTION_IN_BINARY = NO CURRENT_ARCH = x86_64 CURRENT_PROJECT_VERSION = 1 CURRENT_VARIANT = normal DART_OBFUSCATION = false DEAD_CODE_STRIPPING = YES DEBUGGING_SYMBOLS = YES DEBUG_INFORMATION_FORMAT = dwarf DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0 DEFAULT_DEXT_INSTALL_PATH = /System/Library/DriverExtensions DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions DEFINES_MODULE = NO DEPLOYMENT_LOCATION = NO DEPLOYMENT_POSTPROCESSING = NO DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_CLANG_FLAG_NAME = mios-simulator-version-min DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -mios-simulator-version-min= DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_simulator_version_min DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_SUGGESTED_VALUES = 9.0 9.2 10.0 10.2 11.0 11.2 11.4 12.1 12.3 13.0 13.2 13.4 13.6 14.1 14.3 14.4 DERIVED_FILES_DIR = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources DERIVED_FILE_DIR = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources DERIVED_SOURCES_DIR = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr DEVELOPMENT_LANGUAGE = en DOCUMENTATION_FOLDER_PATH = Runner.app/en.lproj/Documentation DONT_GENERATE_INFOPLIST_FILE = NO DO_HEADER_SCANNING_IN_JAM = NO DSTROOT = /tmp/Runner.dst DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain DWARF_DSYM_FILE_NAME = Runner.app.dSYM DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO DWARF_DSYM_FOLDER_PATH = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator EFFECTIVE_PLATFORM_NAME = -iphonesimulator EMBEDDED_CONTENT_CONTAINS_SWIFT = NO EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO ENABLE_BITCODE = NO ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES ENABLE_HARDENED_RUNTIME = NO ENABLE_HEADER_DEPENDENCIES = YES ENABLE_ON_DEMAND_RESOURCES = YES ENABLE_STRICT_OBJC_MSGSEND = YES ENABLE_TESTABILITY = YES ENABLE_TESTING_SEARCH_PATHS = NO ENTITLEMENTS_DESTINATION = __entitlements ENTITLEMENTS_REQUIRED = YES EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj EXECUTABLES_FOLDER_PATH = Runner.app/Executables EXECUTABLE_FOLDER_PATH = Runner.app EXECUTABLE_NAME = Runner EXECUTABLE_PATH = Runner.app/Runner EXPANDED_CODE_SIGN_IDENTITY = EXPANDED_CODE_SIGN_IDENTITY_NAME = EXPANDED_PROVISIONING_PROFILE = FILE_LIST = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList FIXED_FILES_DIR = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles FLUTTER_APPLICATION_PATH = /Users/jacomus/Code/flutter/text_wrapping_small_example FLUTTER_BUILD_DIR = build FLUTTER_BUILD_NAME = 1.0.0 FLUTTER_BUILD_NUMBER = 1 FLUTTER_ROOT = /Users/jacomus/flutter2/flutter FLUTTER_SUPPRESS_ANALYTICS = true FLUTTER_TARGET = /Users/jacomus/Code/flutter/text_wrapping_small_example/lib/main.dart FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks FRAMEWORK_FLAG_PREFIX = -framework FRAMEWORK_VERSION = A FULL_PRODUCT_NAME = Runner.app GCC3_VERSION = 3.3 GCC_C_LANGUAGE_STANDARD = gnu99 GCC_DYNAMIC_NO_PIC = NO GCC_INLINES_ARE_PRIVATE_EXTERN = YES GCC_NO_COMMON_BLOCKS = YES GCC_OBJC_LEGACY_DISPATCH = YES GCC_OPTIMIZATION_LEVEL = 0 GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++ GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1 GCC_SYMBOLS_PRIVATE_EXTERN = NO GCC_TREAT_WARNINGS_AS_ERRORS = NO GCC_VERSION = com.apple.compilers.llvm.clang.1_0 GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0 GCC_WARN_64_TO_32_BIT_CONVERSION = YES GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR GCC_WARN_UNDECLARED_SELECTOR = YES GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE GCC_WARN_UNUSED_FUNCTION = YES GCC_WARN_UNUSED_VARIABLE = YES GENERATED_MODULEMAP_DIR = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/GeneratedModuleMaps-iphonesimulator GENERATE_MASTER_OBJECT_FILE = NO GENERATE_PKGINFO_FILE = YES GENERATE_PROFILING_CODE = NO GENERATE_TEXT_BASED_STUBS = NO GID = 20 GROUP = staff HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES HEADERMAP_INCLUDES_PROJECT_HEADERS = YES HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES HEADERMAP_USES_VFS = NO HIDE_BITCODE_SYMBOLS = YES HOME = /Users/jacomus ICONV = /usr/bin/iconv INFOPLIST_EXPAND_BUILD_SETTINGS = YES INFOPLIST_FILE = Runner/Info.plist INFOPLIST_OUTPUT_FORMAT = binary INFOPLIST_PATH = Runner.app/Info.plist INFOPLIST_PREPROCESS = NO INFOSTRINGS_PATH = Runner.app/en.lproj/InfoPlist.strings INLINE_PRIVATE_FRAMEWORKS = NO INSTALLHDRS_COPY_PHASE = NO INSTALLHDRS_SCRIPT_PHASE = NO INSTALL_DIR = /tmp/Runner.dst/Applications INSTALL_GROUP = staff INSTALL_MODE_FLAG = u+w,go-w,a+rX INSTALL_OWNER = jacomus INSTALL_PATH = /Applications INSTALL_ROOT = /tmp/Runner.dst IPHONEOS_DEPLOYMENT_TARGET = 9.0 JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8 JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub JAVA_ARCHIVE_CLASSES = YES JAVA_ARCHIVE_TYPE = JAR JAVA_COMPILER = /usr/bin/javac JAVA_FOLDER_PATH = Runner.app/Java JAVA_FRAMEWORK_RESOURCES_DIRS = Resources JAVA_JAR_FLAGS = cv JAVA_SOURCE_SUBDIR = . JAVA_USE_DEPENDENCIES = YES JAVA_ZIP_FLAGS = -urg JIKES_DEFAULT_FLAGS = +E +OLDCSO KEEP_PRIVATE_EXTERNS = NO LD_DEPENDENCY_INFO_FILE = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/R unner_dependency_info.dat LD_GENERATE_MAP_FILE = NO LD_MAP_FILE_PATH = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x 86_64.txt LD_NO_PIE = NO LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer LEX = lex LIBRARY_DEXT_INSTALL_PATH = /Library/DriverExtensions LIBRARY_FLAG_NOSPACE = YES LIBRARY_FLAG_PREFIX = -l LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions LINKER_DISPLAYS_MANGLED_NAMES = NO LINK_FILE_LIST_normal_x86_64 = LINK_WITH_STANDARD_LIBRARIES = YES LLVM_TARGET_TRIPLE_OS_VERSION = ios9.0 LLVM_TARGET_TRIPLE_SUFFIX = -simulator LLVM_TARGET_TRIPLE_VENDOR = apple LOCALIZABLE_CONTENT_DIR = LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/en.lproj LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFCopyLocalizedString LOCALIZED_STRING_SWIFTUI_SUPPORT = YES LOCAL_ADMIN_APPS_DIR = /Applications/Utilities LOCAL_APPS_DIR = /Applications LOCAL_DEVELOPER_DIR = /Library/Developer LOCAL_LIBRARY_DIR = /Library LOCROOT = LOCSYMROOT = MACH_O_TYPE = mh_execute MAC_OS_X_PRODUCT_BUILD_VERSION = 20B50 MAC_OS_X_VERSION_ACTUAL = 110001 MAC_OS_X_VERSION_MAJOR = 110000 MAC_OS_X_VERSION_MINOR = 110000 METAL_LIBRARY_FILE_BASE = default METAL_LIBRARY_OUTPUT_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/Runner.app MODULES_FOLDER_PATH = Runner.app/Modules MODULE_CACHE_DIR = /Users/jacomus/Library/Developer/Xcode/DerivedData/ModuleCache.noindex MTL_ENABLE_DEBUG_INFO = YES NATIVE_ARCH = x86_64 NATIVE_ARCH_32_BIT = i386 NATIVE_ARCH_64_BIT = x86_64 NATIVE_ARCH_ACTUAL = x86_64 NO_COMMON = YES OBJC_ABI_VERSION = 2 OBJECT_FILE_DIR = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects OBJECT_FILE_DIR_normal = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal OBJROOT = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex ONLY_ACTIVE_ARCH = YES OS = MACOS OSAC = /usr/bin/osacompile PACKAGE_CONFIG = /Users/jacomus/Code/flutter/text_wrapping_small_example/.dart_tool/package_config.json PACKAGE_TYPE = com.apple.package-type.wrapper.application PASCAL_STRINGS = YES PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/go/bin:/Library/Apple/usr/bin:/Users/jacomus/flutter/bin:/Users/jacomus/flutter /bin:/Users/jacomus/flutter/bin PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist PFE_FILE_C_DIALECTS = objective-c PKGINFO_FILE_PATH = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo PKGINFO_PATH = Runner.app/PkgInfo PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform PLATFORM_DISPLAY_NAME = iOS Simulator PLATFORM_NAME = iphonesimulator PLATFORM_PREFERRED_ARCH = x86_64 PLATFORM_PRODUCT_BUILD_VERSION = 18D46 PLIST_FILE_OUTPUT_FORMAT = binary PLUGINS_FOLDER_PATH = Runner.app/PlugIns PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES PRECOMP_DESTINATION_DIR = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders PRODUCT_BUNDLE_IDENTIFIER = com.example.textWrappingSmallExample PRODUCT_BUNDLE_PACKAGE_TYPE = APPL PRODUCT_MODULE_NAME = Runner PRODUCT_NAME = Runner PRODUCT_SETTINGS_PATH = /Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner/Info.plist PRODUCT_TYPE = com.apple.product-type.application PROFILING_CODE = NO PROJECT = Runner PROJECT_DERIVED_FILE_DIR = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/DerivedSources PROJECT_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/ios PROJECT_FILE_PATH = /Users/jacomus/Code/flutter/text_wrapping_small_example/ios/Runner.xcodeproj PROJECT_NAME = Runner PROJECT_TEMP_DIR = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build PROJECT_TEMP_ROOT = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES REMOVE_CVS_FROM_RESOURCES = YES REMOVE_GIT_FROM_RESOURCES = YES REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES REMOVE_HG_FROM_RESOURCES = YES REMOVE_SVN_FROM_RESOURCES = YES REZ_COLLECTOR_DIR = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResource s REZ_OBJECTS_DIR = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResource s/Objects SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO SCRIPTS_FOLDER_PATH = Runner.app/Scripts SCRIPT_OUTPUT_STREAM_FILE = /var/folders/hk/3pn44rvd6cxdk_8b3whtpbj80000gn/T/flutter_tools.BcSDGS/flutter_build_log_pipe.C3NYqN/pipe_to_stdout SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk SDK_DIR_iphonesimulator14_4 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk SDK_NAME = iphonesimulator14.4 SDK_NAMES = iphonesimulator14.4 SDK_PRODUCT_BUILD_VERSION = 18D46 SDK_VERSION = 14.4 SDK_VERSION_ACTUAL = 140400 SDK_VERSION_MAJOR = 140000 SDK_VERSION_MINOR = 140400 SED = /usr/bin/sed SEPARATE_STRIP = NO SEPARATE_SYMBOL_EDIT = NO SET_DIR_MODE_OWNER_GROUP = YES SET_FILE_MODE_OWNER_GROUP = NO SHALLOW_BUNDLE = YES SHARED_DERIVED_FILE_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator/DerivedSources SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks SHARED_PRECOMPS_DIR = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/PrecompiledHeaders SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport SKIP_INSTALL = NO SOURCE_ROOT = /Users/jacomus/Code/flutter/text_wrapping_small_example/ios SRCROOT = /Users/jacomus/Code/flutter/text_wrapping_small_example/ios STRINGS_FILE_OUTPUT_ENCODING = binary STRIP_BITCODE_FROM_COPIED_FILES = NO STRIP_INSTALLED_PRODUCT = YES STRIP_STYLE = all STRIP_SWIFT_SYMBOLS = YES SUPPORTED_DEVICE_FAMILIES = 1,2 SUPPORTED_PLATFORMS = iphonesimulator iphoneos SUPPORTS_TEXT_BASED_API = NO SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h SWIFT_OPTIMIZATION_LEVEL = -Onone SWIFT_PLATFORM_TARGET_PREFIX = ios SWIFT_VERSION = 5.0 SYMROOT = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Products SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities SYSTEM_APPS_DIR = /Applications SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices SYSTEM_DEMOS_DIR = /Applications/Extras SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities SYSTEM_DEXT_INSTALL_PATH = /System/Library/DriverExtensions SYSTEM_DOCUMENTATION_DIR = /Library/Documentation SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions SYSTEM_LIBRARY_DIR = /System/Library TAPI_VERIFY_MODE = ErrorsOnly TARGETED_DEVICE_FAMILY = 1,2 TARGETNAME = Runner TARGET_BUILD_DIR = /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/Debug-iphonesimulator TARGET_NAME = Runner TARGET_TEMP_DIR = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build TEMP_DIR = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build TEMP_FILES_DIR = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build TEMP_FILE_DIR = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build TEMP_ROOT = /Users/jacomus/Library/Developer/Xcode/DerivedData/Runner-aqnvyukhpbskdhbfdpzqfjovlumk/Build/Intermediates.noindex TEST_FRAMEWORK_SEARCH_PATHS = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/Developer/Library/Frameworks TEST_LIBRARY_SEARCH_PATHS = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/lib TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain TRACK_WIDGET_CREATION = true TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO TREE_SHAKE_ICONS = false UID = 501 UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app UNSTRIPPED_PRODUCT = NO USER = jacomus USER_APPS_DIR = /Users/jacomus/Applications USER_LIBRARY_DIR = /Users/jacomus/Library USE_DYNAMIC_NO_PIC = YES USE_HEADERMAP = YES USE_HEADER_SYMLINKS = NO USE_LLVM_TARGET_TRIPLES = YES USE_LLVM_TARGET_TRIPLES_FOR_CLANG = YES USE_LLVM_TARGET_TRIPLES_FOR_LD = YES USE_LLVM_TARGET_TRIPLES_FOR_TAPI = YES VALIDATE_PRODUCT = NO VALIDATE_WORKSPACE = NO VALID_ARCHS = arm64 arm64e i386 x86_64 VERBOSE_PBXCP = NO VERBOSE_SCRIPT_LOGGING = YES VERSIONING_SYSTEM = apple-generic VERSIONPLIST_PATH = Runner.app/version.plist VERSION_INFO_BUILDER = jacomus VERSION_INFO_FILE = Runner_vers.c VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-1" WRAPPER_EXTENSION = app WRAPPER_NAME = Runner.app WRAPPER_SUFFIX = .app WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode XCODE_PRODUCT_BUILD_VERSION = 12D4e XCODE_VERSION_ACTUAL = 1240 XCODE_VERSION_MAJOR = 1200 XCODE_VERSION_MINOR = 1240 XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices YACC = yacc arch = x86_64 variant = normal [ +162 ms] executing: xcrun simctl install 6A0FB282-AB75-4A26-A75A-33F7C2342D5B /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/iphonesimulator/Runner.app [ +636 ms] executing: /usr/bin/plutil -convert json -o - /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/iphonesimulator/Runner.app/Info.plist [ +9 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Users/jacomus/Code/flutter/text_wrapping_small_example/build/ios/iphonesimulator/Runner.app/Info.plist [ ] {"CFBundleName":"text_wrapping_small_example","DTSDKName":"iphonesimulator14.4","DTXcode":"1240","CFBundleIcons~ipad":{"CFBundlePrimaryIcon":{"CFBundleIconFiles":["AppIcon20x20","AppIcon29x29","AppIcon40x40","A ppIcon60x60","AppIcon76x76","AppIcon83.5x83.5"],"CFBundleIconName":"AppIcon"}},"UILaunchStoryboardName":"LaunchScreen","DTSDKBuild":"18D46","CFBundleDevelopmentRegion":"en","CFBundleVersion":"1","BuildMachineOS Build":"20B50","DTPlatformName":"iphonesimulator","CFBundlePackageType":"APPL","CFBundleShortVersionString":"1.0.0","CFBundleSupportedPlatforms":["iPhoneSimulator"],"UIMainStoryboardFile":"Main","CFBundleInfoDi ctionaryVersion":"6.0","CFBundleExecutable":"Runner","DTCompiler":"com.apple.compilers.llvm.clang.1_0","UISupportedInterfaceOrientations~ipad":["UIInterfaceOrientationPortrait","UIInterfaceOrientationPortraitUp sideDown","UIInterfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRight"],"MinimumOSVersion":"9.0","CFBundleIdentifier":"com.example.textWrappingSmallExample","UIDeviceFamily":[1,2],"CFBundleSigna ture":"????","DTPlatformVersion":"14.4","CFBundleIcons":{"CFBundlePrimaryIcon":{"CFBundleIconFiles":["AppIcon20x20","AppIcon29x29","AppIcon40x40","AppIcon60x60"],"CFBundleIconName":"AppIcon"}},"DTXcodeBuild":"1 2D4e","LSRequiresIPhoneOS":true,"UISupportedInterfaceOrientations":["UIInterfaceOrientationPortrait","UIInterfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRight"],"UIViewControllerBasedStatusBar Appearance":false,"DTPlatformBuild":"18D46"} [ +2 ms] executing: xcrun simctl launch 6A0FB282-AB75-4A26-A75A-33F7C2342D5B com.example.textWrappingSmallExample --enable-dart-profiling --enable-checked-mode --verify-entry-points --observatory-port=0 [ +281 ms] com.example.textWrappingSmallExample: 68981 [ ] Waiting for observatory port to be available... [+1436 ms] Observatory URL on device: http://127.0.0.1:52861/_fbypdh0mbA=/ [ +5 ms] Caching compiled dill [ +62 ms] Connecting to service protocol: http://127.0.0.1:52861/_fbypdh0mbA=/ [ +107 ms] Launching a Dart Developer Service (DDS) instance at http://127.0.0.1:0, connecting to VM service at http://127.0.0.1:52861/_fbypdh0mbA=/. [ +79 ms] DDS is listening at http://127.0.0.1:52866/vmcQLkrb_uM=/. [ +46 ms] Successfully connected to service protocol: http://127.0.0.1:52861/_fbypdh0mbA=/ [ +10 ms] Activating Dart DevTools... [+1763 ms] Activating Dart DevTools... (completed in 1,761ms) [ +523 ms] DevFS: Creating new filesystem on the device (null) [ +10 ms] DevFS: Created new filesystem on the device (file:///Users/jacomus/Library/Developer/CoreSimulator/Devices/6A0FB282-AB75-4A26-A75A-33F7C2342D5B/data/Containers/Data/Application/F59D1F7A-8631-4810-B877-503B23AB1AFD/tmp/text_wrapping_small_exampleQl8hg2/te xt_wrapping_small_example/) [ +4 ms] Updating assets [ +79 ms] Syncing files to device iPhone 12 Pro Max... [ +1 ms] <- reset [ ] Compiling dart to kernel with 0 updated files [ +3 ms] <- recompile package:text_wrapping_small_example/main.dart a32681b5-db05-4618-84ce-201dfdbfda8d [ ] <- a32681b5-db05-4618-84ce-201dfdbfda8d [ +60 ms] Updating files. [ ] DevFS: Sync finished [ ] Syncing files to device iPhone 12 Pro Max... (completed in 65ms) [ ] Synced 0.0MB. [ ] <- accept [ +4 ms] Connected to _flutterView/0x7ff056824820. [ +1 ms] Flutter run key commands. [ +1 ms] r Hot reload. 🔥🔥🔥 [ ] R Hot restart. [ ] h Repeat this help message. [ ] d Detach (terminate "flutter run" but leave application running). [ ] c Clear the screen [ ] q Quit (terminate the application on the device). [ ] An Observatory debugger and profiler on iPhone 12 Pro Max is available at: http://127.0.0.1:52866/vmcQLkrb_uM=/ [ ] Flutter DevTools, a Flutter debugger and profiler, on iPhone 12 Pro Max is available at: http://127.0.0.1:9101?uri=http%3A%2F%2F127.0.0.1%3A52866%2FvmcQLkrb_uM%3D%2F [ ] Running with unsound null safety [ ] For more information see https://dart.dev/null-safety/unsound-null-safety ``` Flutter analyze Output ``` Analyzing text_wrapping_small_example... No issues found! (ran in 1.8s) ``` Flutter Doctor Output ``` [✓] Flutter (Channel stable, 2.0.6, on macOS 11.0.1 20B50 darwin-x64, locale en-US) • Flutter version 2.0.6 at /Users/jacomus/flutter2/flutter • Framework revision 1d9032c7e1 (7 days ago), 2021-04-29 17:37:58 -0700 • Engine revision 05e680e202 • Dart version 2.12.3 [✓] Android toolchain - develop for Android devices (Android SDK version 30.0.2) • Android SDK at /Users/jacomus/Library/Android/sdk • Platform android-30, build-tools 30.0.2 • Java binary at: /Users/jacomus/Library/Application Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/201.6953283/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6915495) • All Android licenses accepted. [✓] Xcode - develop for iOS and macOS • Xcode at /Applications/Xcode.app/Contents/Developer • Xcode 12.4, Build version 12D4e • CocoaPods version 1.10.0 [✓] Chrome - develop for the web • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome [✓] Android Studio (version 4.1) • Android Studio at /Users/jacomus/Library/Application Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/201.6953283/Android Studio.app/Contents • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6915495) [✓] VS Code (version 1.56.0) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 3.22.0 [✓] Connected device (2 available) • iPhone 12 Pro Max (mobile) • 6A0FB282-AB75-4A26-A75A-33F7C2342D5B • ios • com.apple.CoreSimulator.SimRuntime.iOS-14-4 (simulator) • Chrome (web) • chrome • web-javascript • Google Chrome 90.0.4430.93 • No issues found! ```
TahaTesser commented 3 years ago

Hi @JacomusP Thanks for filing the issue

code sample ```dart import "package:flutter/material.dart"; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: "Flutter Demo", theme: ThemeData( primarySwatch: Colors.blue, ), home: MyHomePage(), ); } } class MyHomePage extends StatelessWidget { @override Widget build(BuildContext context) { MediaQueryData mediaQueryData = MediaQuery.of(context); return Scaffold( appBar: AppBar( title: Text("Flutter Demo Home Page"), ), body: Container( height: mediaQueryData.size.height, width: mediaQueryData.size.width, padding: const EdgeInsets.only(top: 10.0), child: Column( children: [ Expanded( child: Text( "This is a really long string to test wrapping. Hopefully this is readable!", style: TextStyle( fontFamily: "Nord", ), softWrap: true, ), ), ], ), ), ); } } ```

There are multiple issues here

1. On stable, the text is all mixed when targeting apple platforms [iOS] [macOS] apps (doesn't reproduce on the web & android)

Preview

iOS mobile & macOS desktop web (canvaskit) & android

2. On all other channels (beta, dev & master - checkdoctor -v logs below for more details), the text widget is blank only when targeting apple platforms

iOS mobile & macOS desktop web (canvaskit) & android

3. On the web using html renderer, the text isn't rendered, blank screen (works in canvaskit) on every channel (check doctor -v logs below for more details)

web (html) web (canvaskit)

(above issues reproduces with "Antique Olive Nord", web html issue might need a new issue)

flutter doctor -v ```console [✓] Flutter (Channel stable, 2.0.6, on macOS 11.3 20E232 darwin-x64, locale en-GB) • Flutter version 2.0.6 at /Users/tahatesser/Code/flutter_stable • Framework revision 1d9032c7e1 (8 days ago), 2021-04-29 17:37:58 -0700 • Engine revision 05e680e202 • Dart version 2.12.3 [✓] Android toolchain - develop for Android devices (Android SDK version 30.0.3) • Android SDK at /Volumes/Extreme/SDK • Platform android-30, build-tools 30.0.3 • ANDROID_HOME = /Volumes/Extreme/SDK • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6915495) • All Android licenses accepted. [✓] Xcode - develop for iOS and macOS • Xcode at /Volumes/Extreme/Xcode.app/Contents/Developer • Xcode 12.5, Build version 12E262 • CocoaPods version 1.10.1 [✓] Chrome - develop for the web • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome [✓] Android Studio (version 4.1) • Android Studio at /Applications/Android Studio.app/Contents • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6915495) [✓] VS Code (version 1.56.0) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 3.22.0 [✓] Connected device (4 available) • Android SDK built for x86 (mobile) • emulator-5554 • android-x86 • Android 10 (API 29) (emulator) • iPhone 12 (mobile) • 4D5BE4C8-BF1D-46CD-B595-FD81A7140B52 • ios • com.apple.CoreSimulator.SimRuntime.iOS-14-5 (simulator) • macOS (desktop) • macos • darwin-x64 • macOS 11.3 20E232 darwin-x64 • Chrome (web) • chrome • web-javascript • Google Chrome 90.0.4430.93 • No issues found! ``` ```console [✓] Flutter (Channel beta, 2.2.0-10.2.pre, on macOS 11.3 20E232 darwin-x64, locale en-GB) • Flutter version 2.2.0-10.2.pre at /Users/tahatesser/Code/flutter_beta • Framework revision b5017bf8de (9 days ago), 2021-04-28 17:09:53 -0700 • Engine revision 91ed51e05c • Dart version 2.13.0 (build 2.13.0-211.13.beta) [✓] Android toolchain - develop for Android devices (Android SDK version 30.0.3) • Android SDK at /Volumes/Extreme/SDK • Platform android-30, build-tools 30.0.3 • ANDROID_HOME = /Volumes/Extreme/SDK • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6915495) • All Android licenses accepted. [✓] Xcode - develop for iOS and macOS • Xcode at /Volumes/Extreme/Xcode.app/Contents/Developer • Xcode 12.5, Build version 12E262 • CocoaPods version 1.10.1 [✓] Chrome - develop for the web • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome [✓] Android Studio (version 4.1) • Android Studio at /Applications/Android Studio.app/Contents • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6915495) [✓] VS Code (version 1.56.0) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 3.22.0 [✓] Connected device (4 available) • Android SDK built for x86 (mobile) • emulator-5554 • android-x86 • Android 10 (API 29) (emulator) • iPhone 12 (mobile) • 4D5BE4C8-BF1D-46CD-B595-FD81A7140B52 • ios • com.apple.CoreSimulator.SimRuntime.iOS-14-5 (simulator) • macOS (desktop) • macos • darwin-x64 • macOS 11.3 20E232 darwin-x64 • Chrome (web) • chrome • web-javascript • Google Chrome 90.0.4430.93 • No issues found! ``` ```console [✓] Flutter (Channel dev, 2.3.0-0.1.pre, on macOS 11.3 20E232 darwin-x64, locale en-GB) • Flutter version 2.3.0-0.1.pre at /Users/tahatesser/Code/flutter_dev • Upstream repository https://github.com/flutter/flutter.git • Framework revision d72bfb8d07 (11 days ago), 2021-04-26 06:05:55 -0700 • Engine revision de6e1adf97 • Dart version 2.14.0 (build 2.14.0-18.0.dev) [✓] Android toolchain - develop for Android devices (Android SDK version 30.0.3) • Android SDK at /Volumes/Extreme/SDK • Platform android-30, build-tools 30.0.3 • ANDROID_HOME = /Volumes/Extreme/SDK • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6915495) • All Android licenses accepted. [✓] Xcode - develop for iOS and macOS • Xcode at /Volumes/Extreme/Xcode.app/Contents/Developer • Xcode 12.5, Build version 12E262 • CocoaPods version 1.10.1 [✓] Chrome - develop for the web • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome [✓] Android Studio (version 4.1) • Android Studio at /Applications/Android Studio.app/Contents • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6915495) [✓] IntelliJ IDEA Community Edition (version 2021.1.1) • IntelliJ at /Volumes/Extreme/IntelliJ IDEA CE.app • Flutter plugin version 55.1.5 • Dart plugin version 211.7233 [✓] VS Code (version 1.56.0) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 3.22.0 [✓] Connected device (4 available) • Android SDK built for x86 (mobile) • emulator-5554 • android-x86 • Android 10 (API 29) (emulator) • iPhone 12 (mobile) • 4D5BE4C8-BF1D-46CD-B595-FD81A7140B52 • ios • com.apple.CoreSimulator.SimRuntime.iOS-14-5 (simulator) • macOS (desktop) • macos • darwin-x64 • macOS 11.3 20E232 darwin-x64 • Chrome (web) • chrome • web-javascript • Google Chrome 90.0.4430.93 • No issues found! ``` ```console [✓] Flutter (Channel master, 2.3.0-1.0.pre.242, on macOS 11.3 20E232 darwin-x64, locale en-GB) • Flutter version 2.3.0-1.0.pre.242 at /Users/tahatesser/Code/flutter_master • Upstream repository https://github.com/flutter/flutter.git • Framework revision 3ab799bbc9 (10 hours ago), 2021-05-06 19:49:02 -0700 • Engine revision f57e986aa8 • Dart version 2.14.0 (build 2.14.0-74.0.dev) [✓] Android toolchain - develop for Android devices (Android SDK version 30.0.3) • Android SDK at /Volumes/Extreme/SDK • Platform android-30, build-tools 30.0.3 • ANDROID_HOME = /Volumes/Extreme/SDK • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6915495) • All Android licenses accepted. [✓] Xcode - develop for iOS and macOS • Xcode at /Volumes/Extreme/Xcode.app/Contents/Developer • Xcode 12.5, Build version 12E262 • CocoaPods version 1.10.1 [✓] Chrome - develop for the web • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome [✓] Android Studio (version 4.1) • Android Studio at /Applications/Android Studio.app/Contents • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6915495) [✓] IntelliJ IDEA Community Edition (version 2021.1.1) • IntelliJ at /Volumes/Extreme/IntelliJ IDEA CE.app • Flutter plugin version 55.1.5 • Dart plugin version 211.7233 [✓] VS Code (version 1.56.0) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 3.22.0 [✓] Connected device (4 available) • Android SDK built for x86 (mobile) • emulator-5554 • android-x86 • Android 10 (API 29) (emulator) • iPhone 12 (mobile) • 4D5BE4C8-BF1D-46CD-B595-FD81A7140B52 • ios • com.apple.CoreSimulator.SimRuntime.iOS-14-5 (simulator) • macOS (desktop) • macos • darwin-x64 • macOS 11.3 20E232 darwin-x64 • Chrome (web) • chrome • web-javascript • Google Chrome 90.0.4430.93 • No issues found! ```
JacomusP commented 3 years ago

@TahaTesser Thanks for looking into it. Also let me know if there is anything else that you need from me.

yjbanov commented 3 years ago

The difference between HTML and CanvasKit could happen for a number of reasons, as the two don't share font code. For example, the browser may be having trouble parsing the font while CanvasKit manages to digest it.

The difference between CanvasKit and Flutter AOT, as well as iOS vs Android, is a little surprising, since all of them use the same font manager provided by Skia. One difference is that the web uses SkParagraph while Flutter AOT still uses libtxt for actual layout, although I'm not sure how exact the font would affect that. If you are able to build the engine locally you can pass --always-use-skshaper and check if that makes a difference (/cc @jason-simmons).

Either way, we'll need to look into it. We may also have to split this issue into two, one for web HTML, and one for Flutter mobile.