Vlad Gorlov

Results 39 comments of Vlad Gorlov

I made a small tunings to Package to be able to build it successfully on macOS first. ```swift // swift-tools-version:5.4.0 import PackageDescription let package = Package( name: "App", platforms: [...

As far as I understand the sqlite for Android needs to be build separately and included into APK manually by developer. I can't find `sqlite3.h` header inside NDK. For issues...

I was doing some investigation about problem with `FILE` struct in `@wip` branch. Here is a diff https://github.com/vgorloff/swift-everywhere-toolchain/compare/develop...@wip

Interesting. I didn't know about that Clang/Swift behaviour with `UnsafeMutablePointer` / `OpaquePointer`. This is seems a reason why the `OpaquePointer` was used in a `StdioOutputStream` struct in the [swift-log](https://github.com/apple/swift-log/blob/1.4.2/Sources/Logging/Logging.swift#L804) package.

ATM I don't have device with M1 chip. And have no plans to spend money on it ;) You can try build toolchain from sources.

1. The official instruction for building Swift on Android available at https://github.com/apple/swift/blob/main/docs/Android.md. This toolchain uses mix of instructions found for Linux, Windows and Android in Swift repository. Also incorporated some...

btw: I missed that Swift 5.5.1 was already released with Xcode 13.1. Will plan Toolchain update. > Instruction for linux, has extra steps, like install NDK. Shouldn't this to be...

Anybody can update Docs in Swift repo :) In order to see which Cmake commands executed during build you can try to launch build in `--dry-run` mode: `node main.js build...

Looks like the issue due the order of included headers (in header search paths).