A Swift wrapper around gobject-2.x that is largely auto-generated from gobject-introspection.
For up to date (auto-generated) reference documentation, see https://rhx.github.io/SwiftGObject/
What is new?
Version 15 of gir2swift provides a Package Manager Plugin. This requires Swift 5.6 or higher
(older versions can be used via the swift52 branch).
Prerequisites
Swift 5.6 or higher
To build, download Swift from https://swift.org/download/ – if you are using macOS, make sure you have the command line tools installed as well). Test that your compiler works using swift --version, which should give you something like
$ swift --version
swift-driver version: 1.75.2 Apple Swift version 5.8 (swiftlang-5.8.0.124.2 clang-1403.0.22.11.100)
Target: arm64-apple-macosx13.0
on macOS, or on Linux you should get something like:
$ swift --version
Swift version 5.8 (swift-5.8-RELEASE)
Target: x86_64-unknown-linux-gnu
GLib 2.56 or higher
These Swift wrappers have been tested with glib-2.56, 2.58, 2.60, 2.62, 2.64, 2.66, 2.68, 2.70, 2.72, 2.76, and 2.76. They should work with higher versions, but YMMV. Also make sure you have gobject-introspection and its .gir files installed.
Linux
Ubuntu
On Ubuntu 18.04, 20.04, and 22.04 you can use the glib that comes with the distribution. Just install with the apt package manager:
On macOS, you can install glib using HomeBrew (for setup instructions, see http://brew.sh). Once you have a running HomeBrew installation, you can use it to install a native version of glib:
Normally, you don’t build this package directly (but for testing you can - see ‘Building’ below). Instead you need to embed SwiftGObject into your own project using the Swift Package Manager. After installing the prerequisites (see ‘Prerequisites’ below), add SwiftGObject as a dependency to your Package.swift file, e.g.:
Normally, you don’t build this package directly, but you embed it into your own project (see ‘Usage’ above). However, you can build and test this module separately to ensure that everything works. Make sure you have all the prerequisites installed (see above). After that, you can simply clone this repository and build the command line executable (be patient, this will download all the required dependencies and take a while to compile) using
git clone https://github.com/rhx/SwiftGObject.git
cd SwiftGObject
swift build
swift test
Documentation
You can generate documentation using the DocC plugin. To preview documentation matching your local installation, simply run
swift package --disable-sandbox preview-documentation
then navigate to the URL shown for the local preview server. Make sure you have JavaScript enabled in your browser.
Alternatively, you can create static documentation using jazzy.
Make sure you have sourcekitten and jazzy installed, e.g. on macOS (x86_64):
this probably means that your Swift toolchain is too old, particularly on Linux (at the time of this writing, some Linux distributions require at least Swift 5.5). Make sure the latest toolchain is the one that is found when you run the Swift compiler (see above).
If you get an older version, make sure that the right version of the swift compiler is found first in your PATH. On macOS, use xcode-select to select and install the latest version, e.g.:
When building, a lot of warnings appear. This is largely an issue with automatic RawRepresentable conformance in the Swift Standard library. As a workaround, you can turn this off by passing the -Xswiftc -suppress-warnings parameter when building.
The current build system does not support directory paths with spaces (e.g. the My Drive directory used by Google Drive File Stream).
BUILD_DIR is not supported in the current build system.
As a workaround, you can use the old build scripts, e.g. ./build.sh (instead of run-gir2swift.sh and swift build) to build a package.
SwiftGObject
A Swift wrapper around gobject-2.x that is largely auto-generated from gobject-introspection. For up to date (auto-generated) reference documentation, see https://rhx.github.io/SwiftGObject/
What is new?
Version 15 of gir2swift provides a Package Manager Plugin. This requires Swift 5.6 or higher (older versions can be used via the swift52 branch).
Prerequisites
Swift 5.6 or higher
To build, download Swift from https://swift.org/download/ – if you are using macOS, make sure you have the command line tools installed as well). Test that your compiler works using
swift --version
, which should give you something likeon macOS, or on Linux you should get something like:
GLib 2.56 or higher
These Swift wrappers have been tested with glib-2.56, 2.58, 2.60, 2.62, 2.64, 2.66, 2.68, 2.70, 2.72, 2.76, and 2.76. They should work with higher versions, but YMMV. Also make sure you have
gobject-introspection
and its.gir
files installed.Linux
Ubuntu
On Ubuntu 18.04, 20.04, and 22.04 you can use the glib that comes with the distribution. Just install with the
apt
package manager:Fedora
On Fedora 29, you can use the glib that comes with the distribution. Just install with the
dnf
package manager:macOS
On macOS, you can install glib using HomeBrew (for setup instructions, see http://brew.sh). Once you have a running HomeBrew installation, you can use it to install a native version of glib:
Usage
Normally, you don’t build this package directly (but for testing you can - see ‘Building’ below). Instead you need to embed SwiftGObject into your own project using the Swift Package Manager. After installing the prerequisites (see ‘Prerequisites’ below), add
SwiftGObject
as a dependency to yourPackage.swift
file, e.g.:Building
Normally, you don’t build this package directly, but you embed it into your own project (see ‘Usage’ above). However, you can build and test this module separately to ensure that everything works. Make sure you have all the prerequisites installed (see above). After that, you can simply clone this repository and build the command line executable (be patient, this will download all the required dependencies and take a while to compile) using
Documentation
You can generate documentation using the DocC plugin. To preview documentation matching your local installation, simply run
then navigate to the URL shown for the local preview server. Make sure you have JavaScript enabled in your browser.
Alternatively, you can create static documentation using jazzy. Make sure you have sourcekitten and jazzy installed, e.g. on macOS (x86_64):
Troubleshooting
Here are some common errors you might encounter and how to fix them.
Missing
.gir
FilesIf you get an error such as
Make sure that you have the relevant
gobject-introspection
packages installed (as per the Pre-requisites section), including their.gir
and.pc
files.Old Swift toolchain or Xcode
If, when you run
swift build
, you get aSegmentation fault (core dumped)
or circular dependency error such asthis probably means that your Swift toolchain is too old, particularly on Linux (at the time of this writing, some Linux distributions require at least Swift 5.5). Make sure the latest toolchain is the one that is found when you run the Swift compiler (see above).
If you get an older version, make sure that the right version of the swift compiler is found first in your
PATH
. On macOS, use xcode-select to select and install the latest version, e.g.:Known Issues
RawRepresentable
conformance in the Swift Standard library. As a workaround, you can turn this off by passing the-Xswiftc -suppress-warnings
parameter when building.My Drive
directory used by Google Drive File Stream).As a workaround, you can use the old build scripts, e.g.
./build.sh
(instead ofrun-gir2swift.sh
andswift build
) to build a package.