当依赖项名称等于项目名称时,运行'swift build'崩溃并出现分段错误



示例:

> mkdir myProject && cd myProject
> swift package init --type executable

编辑Package.swift(添加了 1 个依赖项(:

// swift-tools-version:4.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "myProject",
dependencies: [
// Dependencies declare other packages that this package depends on. 
// .package(url: /* package url */, from: "1.0.0"),
.package(url: "https://github.com/someone/myProject.git", from: "1.0.0"),
],  
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages which this package depends on. 
.target(
name: "myProject",
dependencies: []),
]   
)

构建它:

> swift build
Segmentation fault (core dumped)

环境

  • Ubuntu 16.04 LTS
  • Swift
  • version 4.1-dev (LLVM 260a172ffb, Clang cd84be6c42, Swift 05b1b2be7c(

有谁知道这是否是最近引入的和/或正在发生在其他版本的 swift 上?

这是一个错误:

迅捷错误 SR-7597

https://bugs.swift.org/browse/SR-7597

相关内容

  • 没有找到相关文章

最新更新