• Stars
    star
    489
  • Rank 89,990 (Top 2 %)
  • Language
    Shell
  • Created almost 8 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

All you need to build Swift on a RaspberryPi or other ARM boards, updated to Swift 5.1.5

Scripts to clone, configure, patch and build Swift 5.4 on Linux ARM devices.

For precompiled Swift 5.4 binaries see the Prebuilt binaries section, if you want to build Swift on your own instead, check out the Building on ARM section and the step-by-step instructions.

Summary

Supported Architectures

  • ✅ ARMv6 32bit: Original RaspberryPi, Pi Zero, etc...
  • ✅ ARMv7/8 32bit: All versions of RaspberryPi 2/3, OrangePi, ODroid, CHIP, etc...
  • ✅ aarch64: RaspberryPis or other ARMv8 boards with a 64 bit OS, Pine64, etc...

Prebuilt binaries

OS Architecture Boards Download
Raspbian Buster ARMv6 All RaspberryPis: Classic, Zero, 2, 3, 4 5.4
Raspbian Bullseye ARMv6 All RaspberryPis: Classic, Zero, 2, 3, 4 5.4
Debian Buster ARMv7 Every ARMv7 board, RaspberryPis 2/3/4 included 5.4
Debian Bullseye ARMv7 Every ARMv7 board, RaspberryPis 2/3/4 included 5.4
Ubuntu 18.04 ARMv7 All versions of RaspberryPi 2/3/4, other ARMv7 boards 5.4
Ubuntu 20.04 ARMv7 All versions of RaspberryPi 2/3/4, other ARMv7 boards 5.4
Ubuntu 16.04/18.04 aarch64 All versions of RaspberryPi 3/4, other ARMv7 boards 5.4.1: swift-arm64

For binaries of older releases, check out the releases page.

For alternative ways to install these Swift binaries on your ARM board, check out Swift on Balena by Will Lisac, Helge Heß's dockSwiftOnARM, both based on Docker, and the Swift Deb Repository maintained by Neil Jones.

To quickly cross-compile your Swift applications for ARM on a Mac (a time saver) check out the Swift Cross Compilation Toolchains project built by Van Simmons.

Usage

When using the Swift Package Manager on one of these boards, that usually have limited memory/cpu, you'll need to use the new -j option to reduce the number of threads spawned by the tool and be able to compile. For example, when building an SPM project most of the times we'll limit the number of jobs to one:

    pi@raspberrypi:> swift build -j 1 

Dependencies

In order to use the provided prebuilt binaries you'll need to install the following dependencies:

Raspbian Buster, Ubuntu 18.04 and newer

sudo apt install clang libicu-dev libcurl4-nss-dev curl

Decompress the archive on the RaspberryPi, you'll find the Swift binaries in usr/bin/ relative to where you decompressed the archive.

tar -xzf <archivename.tgz>

Ensure that the path you decompressed to is in your PATH environment variable: echo $PATH. If it's not then add it to your path for your shell.

PATH="$HOME/usr/bin:$PATH"

To permanently add this to your PATH variable, you can add the following block of code to the end of your ~/.profile file:

if [ -d "$HOME/usr/bin" ] ; then
    PATH="$HOME/usr/bin:$PATH"
fi

Verify the swift version is setup:

$ swift --version

Swift version 5.4 (swift-5.4-RELEASE)
Target: armv7-unknown-linux-gnueabihf

Building on ARM

For the latest updates on Swift on ARM, check out my blog here.

Check out Helge Heß's project dockSwiftOnARM to build Swift in a Docker container or to build a cross-compiling toolchain that will allow you to build arm binaries directly from your Mac using a precompiled swiftc for ARM.

The scripts that buildSwiftOnARM provides:

  • clone.sh - Install dependencies and clones the main Swift repository and all the related projects

  • checkoutRelease.sh - Resets all repos, updates them, checks out a specific tag (5.4 at the moment) and apply the patches.

  • build.sh - Builds Swift producing a tgz archive with the Swift distributions.

  • clean.sh - Cleans all build artifacts, only needed when you want to start again from scratch.

Step by step instructions

First of all, use a suitably sized sd-card, at least 32Gb in size, but I recommend to use an external USB drive to clone the project and build Swift.

Configure a swap file of at least 2Gb, on Ubuntu:

sudo fallocate -l 2G swapfile
sudo chmod 600 swapfile
sudo mkswap swapfile
sudo swapon swapfile

You'll need to manually enable the swap file with swapon each time you reboot the RaspberryPi (or the system will just run without swap).

On Raspbian, since the swapfile is already configured, open /etc/dphys-swapfile and edit CONF_SWAPSIZE to increase the size:

CONF_SWAPSIZE=2048

Save the file and:

sudo /etc/init.d/dphys-swapfile stop
sudo /etc/init.d/dphys-swapfile start

Now, call the included scripts as follows:

  1. Launch clone.sh that will install the required dependencies (git cmake ninja-build clang-3.8 python uuid-dev libicu-dev icu-devtools libbsd-dev libedit-dev libxml2-dev libsqlite3-dev swig libpython-dev libncurses5-dev pkg-config libblocksruntime-dev libcurl4-openssl-dev autoconf libtool systemtap-sdt-dev libcurl4-openssl-dev libz-dev), fix clang links and clone apple/swift with all its dependecies.

  2. Run checkoutRelease.sh that will select the current release (5.4) and apply the needed patches.

  3. Once done, start the build with build.sh.

  4. Once the build completes a few hours later, you'll have a swift-5.4-armv7.tgz archive containing the whole Swift compiler distribution. Once decompressed you'll find the Swift binaries under usr/bin.

I recommend to perform all these operations in a permanent background tmux or screen session (CTRL+B d to detach from the session and tmux a to reattach to it when you ssh again into the RaspberryPi).

Additional steps could be required in some cases check the latest ARM posts on my blog for additional info.

To build a different release than the one currently configured in the script, open checkoutRelease.sh and build.sh and modify the variables on top, with the branch name for the release and the release name for the tgz respectively.

Setup your own build infrastructure

If you need to replicate a setup like the one I use to build all the Swift binaries you can find above, using only a single Raspberry Pi 4 or a similar board ARMv7 board as build machine, check out buildSwiftOnARMInfra with its docker containers.

GitHub CI on ARM

ARM projects can be tested in an environment simulated through QEMU on GitHub using the Run-On-Architecture action. While you will not be able to use hardware interfaces available on real ARM boards, this environment should be more than enough to perform some basic testing or even build your projects and deploy them directly to your target ARM board (with considerable time savings).

REPL Issues

Since the first releases of Swift on ARM32, the REPL has never been available on this platform, but that doesn't impact the compiler itself. Considering this, as you would expect, launching swift without parameters will result in an error instead of the REPL prompt.

Acknowledgments

We wouldn't have Swift on ARM and most of the patches included on buildSwiftOnARM without the work done by these developers:

The community can be reached at the swift-arm Slack channel.

Previous Releases

You can compile old releases checking out the specific tag:

More Repositories

1

Awesome-Swift-Playgrounds

A List of Awesome Swift Playgrounds
Swift
3,998
star
2

SwiftyGPIO

A Swift library for hardware projects on Linux/ARM boards with support for GPIOs/SPI/I2C/PWM/UART/1Wire.
Swift
1,301
star
3

run-on-arch-action

A Github Action that executes jobs/commands on non-x86 cpu architectures (ARMv6, ARMv7, aarch64, s390x, ppc64le, riscv64) via QEMU
Shell
681
star
4

awesome-software-patreons

A curated list of awesome programmers and software projects you can support!
456
star
5

Bitter

A Swift Bits Manipulation/Bitwise Operations Toolkit
Swift
205
star
6

Swift-Playgrounds

Collection of Swift playgrounds used in my posts: From functional aspects of Swift to C interoperability.
Swift
139
star
7

SwiftyLISP

A minimal LISP implemented in Swift
Swift
126
star
8

pygments-vimstyles

Vim Styles as pygments CSS
CSS
37
star
9

WS281x.swift

A Swift library for WS281x (WS2811,WS2812*,WS2813*) RGB led strips, rings, sticks, matrices and more.
Swift
33
star
10

Nunchuck.swift

A Swift Library for the I2C Wii Nunchuck controller.
Swift
31
star
11

5110LCD_PCD8544.swift

A Swift library for the Nokia3310/5110 PCD8544 Monochrome LCD display
Swift
27
star
12

SwizzlingInSwift

Swift Method Swizzling Sample
Swift
18
star
13

SwiftyLISP-REPL

Basic REPL for SwiftyLISP
Swift
13
star
14

HD44780CharacterLCD.swift

A Swift library for 16x2/20x4 Character LCDs with the HD44780(or clones) controller
Swift
12
star
15

SG90Servo.swift

Swift library for the SG90 Servo Motor, adaptable for other servos (9g ES08A, SM-S4303R, S3003, etc...).
Swift
10
star
16

UBloxGPS.swift

A Swift library for boards with the u-Blox 6/7/8 family of A-GPS receivers
Swift
9
star
17

MPU-6050.swift

A Swift library for the MPU-6050 (and MPU-6000 family) Accelerometer and Gyroscope
Swift
7
star
18

buildSwiftOnARMInfra

Setup an infrastructure to build Swift on Linux/ARM
Shell
7
star
19

uistackview-sample

Sample code for www.uraimo.com/2015/09/08/ios9-uistackview-guide-swift/
Swift
7
star
20

RCWL-0516-Radar.swift

A Swift library for the RCWL-0516 Microwave Radar
Swift
5
star
21

DS18B20.swift

A Swift library for the DS18B20 digital temperature sensor
Swift
5
star
22

dotfiles

My dotfiles
Vim Script
4
star
23

MCP3008.swift

A Swift library for the MCP3008 (and MCP3002,MCP3004) 10 bits SPI ADC
Swift
4
star
24

barememtracer

C/C++ bare bones memory tracer
C
3
star
25

javabuild

An experimental Java build tool that mimics the Swift Package Manager
Java
3
star
26

DS1307.swift

A Swift library for the DS1307 (DS1302, DS3231) I2C Real-Time Clock
Swift
3
star
27

congo

Simple Go console package - See docs: http://godoc.org/github.com/uraimo/congo
Go
2
star