You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PS C:\Users\xxx\src\nmtest> swift build;./.build/debug/swtest.exe
Updating https://github.com/compnerd/swift-win32
Updated https://github.com/compnerd/swift-win32 (1.31s)
error: the package manifest at '\[email protected]' cannot be accessed (InternalError(description: "Internal error. Please file a bug at https://github.com/apple/swift-package-manager/issues with this info. symlinks not supported")) in https://github.com/compnerd/swift-win32
error: ExitCode(rawValue: 1)
// swift-tools-version: 5.10
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "swtest",
dependencies: [
.package(url: "https://github.com/Alamofire/Alamofire", .upToNextMajor(from: "5.9.0")),
.package(url: "https://github.com/compnerd/swift-win32", .branch("main"))
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.executableTarget(
name: "swtest",dependencies: ["Alamofire"]),
]
)
The text was updated successfully, but these errors were encountered:
This isn't an issue with this package really, it is caused by lack of symbolic links when cloning the repository. Feel free to report this to apple/swift-package-manager (though you can also work around it by globally enabling symbolic links I believe).
The text was updated successfully, but these errors were encountered: