Package Details: swift-bin 6.1.2-1

Git Clone URL: https://aur.archlinux.org/swift-bin.git (read-only, click to copy)
Package Base: swift-bin
Description: Binary builds of the Swift programming language
Upstream URL: https://www.swift.org/
Keywords: apple language swift swiftlang
Licenses: Apache
Provides: swift-language
Replaces: swift-language-bin
Submitter: ashleyis
Maintainer: susurri
Last Packager: susurri
Votes: 90
Popularity: 0.63
First Submitted: 2015-12-04 17:31 (UTC)
Last Updated: 2025-05-29 05:55 (UTC)

Dependencies (5)

Required by (18)

Sources (2)

Pinned Comments

Latest Comments

1 2 3 4 5 6 .. 16 Next › Last »

gonsolo commented on 2025-05-30 11:20 (UTC) (edited on 2025-05-30 11:25 (UTC) by gonsolo)

Adding "-cxx-interoperability-mode=default" to a simple hello world miserably fails, when "import Foundation" is used:

<module-includes>:1:10: note: in file included from <module-includes>:1:
1 | #include "_FoundationCShims.h"
  |          `- note: in file included from <module-includes>:1:
2 | 

/usr/lib/swift/lib/swift/_FoundationCShims/_FoundationCShims.h:17:10: note: in file included from /usr/lib/swift/lib/swift/_FoundationCShims/_FoundationCShims.h:17:
15 | 
16 | #include "_CShimsTargetConditionals.h"
17 | #include "_CStdlib.h"
   |          `- note: in file included from /usr/lib/swift/lib/swift/_FoundationCShims/_FoundationCShims.h:17:
18 | #include "CFUniCharBitmapData.inc.h"
19 | #include "CFUniCharBitmapData.h"

/usr/lib/swift/lib/swift/_FoundationCShims/_CStdlib.h:55:10: note: in file included from /usr/lib/swift/lib/swift/_FoundationCShims/_CStdlib.h:55:
 53 | 
 54 | #if __has_include(<math.h>)
 55 | #include <math.h>
    |          `- note: in file included from /usr/lib/swift/lib/swift/_FoundationCShims/_CStdlib.h:55:
 56 | #endif
 57 | 

/usr/lib64/gcc/x86_64-pc-linux-gnu/15.1.1/../../../../include/c++/15.1.1/math.h:36:11: note: in file included from /usr/lib64/gcc/x86_64-pc-linux-gnu/15.1.1/../../../../include/c++/15.1.1/math.h:36:
 34 | #define _GLIBCXX_MATH_H 1
 35 | 
 36 | # include <cmath>
    |           `- note: in file included from /usr/lib64/gcc/x86_64-pc-linux-gnu/15.1.1/../../../../include/c++/15.1.1/math.h:36:
 37 | 
 38 | using std::abs;

wilfred commented on 2025-05-16 13:43 (UTC)

I see swift and swiftc are installed to /usr/bin, but almost everything else is installed to /usr/lib, which leads to odd paths like this:

/usr/lib/swift/bin/clang
/usr/lib/swift/include/SourceKit/sourcekitd.h
/usr/lib/swift/lib/swift/CoreFoundation/CFData.h
/usr/lib/swift/share/doc/swift/diagnostics/temporary-pointers.md

Shouldn't these be in /usr/share/swift and so on?

wilfred commented on 2025-05-16 13:20 (UTC)

Looks like it needs to depend on Python 3.9 for the swift repl command.

$ swift repl  
/usr/lib/swift/bin/lldb: error while loading shared libraries: libpython3.9.so.1.0: cannot open shared object file: No such file or directory

lemax commented on 2025-05-06 11:30 (UTC) (edited on 2025-05-08 05:40 (UTC) by lemax)

I am getting:

> swift build
/usr/lib/swift/bin/swift-build: error while loading shared libraries: libxml2.so.2: cannot open shared object file: No such file or directory

I guess this needs an update after the latest libxml2 release.

edit: thanks! With swift-bin 6.1-2 and the dependency to libxml2-legacy it is working again.

fwcd commented on 2023-11-12 10:22 (UTC)

I have had some success repackaging the Ubuntu binaries both for x86_64 and aarch64: https://github.com/archsink/pkgbuilds/blob/e23d84133af19fb642898a6753857f79abc80f07/swift-bin/PKGBUILD

Could probably use some more battle-testing though, I have only checked that some very simple programs compile.

MarcusE1W commented on 2023-10-20 17:35 (UTC)

Is there a chance to support aarch64? The packages provided on Swift.org for Ubuntu, Red Hat and Amazon Linux all have a binary version for aarch64. Just the CentOS version used in this AUR package unfortunately does not have one.

Would it be possible to change to a different distro package and support aarch64?

ZorinArch commented on 2023-10-20 15:00 (UTC)

Change the libutil-linux dependency to util-linux-libs

MarsSeed commented on 2023-10-09 13:38 (UTC)

python36 is EOL since 2021 and will likely be deleted from AUR in the near future.

pcbeard commented on 2023-02-01 06:01 (UTC) (edited on 2023-02-01 06:02 (UTC) by pcbeard)

Just tried the latest PKGBUILD for the 5.7.3 release [57f67ecfd981], and it looks like the download link is broken. Here's the diff to make it work:

diff --git a/PKGBUILD b/PKGBUILD
index 6392fe8..f961fff 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -15,7 +15,7 @@ optdepends=('python36: required for REPL')
 options=('!strip')
 provides=('swift-language')
 replaces=('swift-language-bin')
-source=("https://swift.org/builds/swift-$pkgver-release/centos7/swift-$pkgver-RELEASE/swift-$pkgver-RELEASE-centos7.tar.gz")
+source=("https://download.swift.org/swift-$pkgver-release/centos7/swift-$pkgver-RELEASE/swift-$pkgver-RELEASE-centos7.tar.gz")
 sha256sums=('10138dce4306309fdd77c530a7c19e4d00586cdaf5698dd7412004bcb6d86d28')

 package() {