相关疑难解决方法(0)

错误:无法为目标'arm64-apple-ios10.0-simulator'加载标准库?

我更新了我的Xcode但无法构建.它失败了:

<unknown>:0: error: unable to load standard library for target 'arm64-apple-ios10.0-simulator'

合并脚本:

 # 1
# Set bash script to exit immediately if any commands fail.
set -e

# 2
# Setup some constants for use later on.
FRAMEWORK_NAME="SDK"
OUTPUT_PATH="${SRCROOT}"

# 3
# If remnants from a previous build exist, delete them.
if [ -d "${SRCROOT}/build" ]; then
rm -rf "${SRCROOT}/build"
fi

# 4
# Build the framework for device and for simulator (using
# all needed architectures).
xcodebuild -target "${FRAMEWORK_NAME}" …
Run Code Online (Sandbox Code Playgroud)

xcode ios swift xcode10

14
推荐指数
7
解决办法
6251
查看次数

标签 统计

ios ×1

swift ×1

xcode ×1

xcode10 ×1