notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

Port details
cloudabi-clang Clang for CloudABI
3.8_1 lang Deleted on this many watch lists=1 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout 3.8_1Version of this port present on the latest quarterly branch.
Maintainer: ed@FreeBSD.org search for ports maintained by this maintainer
Port Added: 2015-06-23 08:38:09
Last Update: 2016-03-21 21:11:11
SVN Revision: 411619
People watching this port, also watch:: grub2-bhyve, openjdk8
License: MIT
WWW:
https://github.com/NuxiNL/cloudlibc
Description:
The CloudABI environment uses Clang as its C/C++ compiler. This meta port installs Clang and sets up symbolic links, so that Clang can be used as a cross compiler for CloudABI. WWW: https://github.com/NuxiNL/cloudlibc
Homepage    cgit ¦ GitHub ¦ GitHub ¦ GitLab ¦ SVNWeb

Manual pages:
FreshPorts has no man page information for this port.
pkg-plist: as obtained via: make generate-plist
There is no configure plist information for this port.
Dependency lines:
  • cloudabi-clang>0:lang/cloudabi-clang
No installation instructions:
This port has been deleted.
PKGNAME: cloudabi-clang
Flavors: there is no flavor information for this port.
distinfo:
There is no distinfo for this port.

No package information for this port in our database
Sometimes this happens. Not all ports have packages.
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Runtime dependencies:
  1. clang38 : devel/llvm38
  2. aarch64-unknown-cloudabi-ld : devel/cloudabi-binutils-aarch64
  3. x86_64-unknown-cloudabi-ld : devel/cloudabi-binutils-x86_64
NOTE: dependencies for deleted ports are notoriously suspect
This port is required by:
for Build

Deleted ports which required this port:

Expand this list of 5 deleted ports
  1. devel/cloudabi-cloudlibc*
  2. devel/cloudabi-compiler-rt*
  3. devel/cloudabi-libc++*
  4. devel/cloudabi-libc++abi*
  5. devel/cloudabi-libunwind*
  6. Collapse this list of deleted ports.
* - deleted ports are only shown under the This port is required by section. It was harder to do for the Required section. Perhaps later...

Configuration Options:
No options to configure
Options name:
N/A
FreshPorts was unable to extract/find any pkg message
Master Sites:
Expand this list (1 items)
Collapse this list.
  1. http://distcache.FreeBSD.org/ports-distfiles/
Collapse this list.

Number of commits found: 9

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
3.8_1
21 Mar 2016 21:11:11
Revision:411619Original commit files touched by this commit
ed search for other commits by this committer
Merge cloudabi-clang with cloudabi-toolchain and install more useful tools.

Now that the previous changes to the cloudabi-clang package brought in
more LLVM tools, the package actually became a misnomer. Most of the
tools that it installed are not part of Clang, but of LLVM instead. My
plans of extending it to also install wrappers around man(1) and
pkgconf(1) would make the naming even worse.

The only reason that the cloudabi-clang package was created in the first
place, was because we still had some of the core CloudABI libraries part
of FreeBSD Ports. Now that these libraries are part of their own package
collection, it makes more sense to squash this package together with
cloudabi-toolchain.

The nice thing about installing a wrapper around pkgconf(1) named
${gnu_triple}-pkg-config is that Autoconf now automatically picks it up.
Running ./configure --host=${gnu_triple} is enough to make it detect the
cross compiled libraries it depends on.

Reviewed by:	bapt
Differential Revision:	https://reviews.freebsd.org/D5697
3.8_1
21 Mar 2016 19:32:23
Revision:411615Original commit files touched by this commit
ed search for other commits by this committer
Extend the Binutils ports to allow deletion of specific tools.

For CloudABI I slowly want to switch away from certain tools provided by
Binutils. For example, it would be really nice if we could switch from
GNU ld to LLD some time in the future. LLD is not ready yet. Some bug
fixes didn't manage to land into 3.8 and it doesn't support aarch64
properly. There are already some tools that we can use, such as nm,
objdump, size, ar and ranlib.

Introduce a BUREMOVE variable that can be set in Binutils slave ports to
remove specific utilities that are installed by default. There doesn't
seem to be any other elegant way to solve this. Set a bunch of utilities
by default and then extend cloudabi-clang to set up symlinks to the LLVM
versions of the tools.

Reviewed by:	bapt
Differential Revision:	https://reviews.freebsd.org/D5684
3.8
13 Feb 2016 13:52:09
Revision:408796Original commit files touched by this commit
ed search for other commits by this committer
Let the CloudABI toolchain use Clang 3.8 instead of 3.7.

As all of the CloudABI tests also pass with Clang 3.8, I think it may be
wise to just go ahead and upgrade.
3.7_2
21 Oct 2015 12:28:21
Revision:399906Original commit files touched by this commit
ed search for other commits by this committer
Introduce Binutils for CloudABI on aarch64.

When I added the first copy of the CloudABI toolchain to the Ports tree,
I assumed that it would be easily possible to have a single Binutils
port that would support all of the architectures of interest. It seems
that this is not really supported, or simply awkward to use.

Let's just rename the cloudabi-binutils port to cloudabi-binutils-x86_64
and add an additional cloudabi-binutils-aarch64.

Reviewed by:	emaste
Approved by:	bapt
Differential Revision:	https://reviews.freebsd.org/D3919
3.7_1
15 Oct 2015 19:06:33
Revision:399359Original commit files touched by this commit
brooks search for other commits by this committer
Let cloudabi-clang install a compiler for aarch64.

Now that CloudABI has been ported over to aarch64, let's extend the
FreeBSD ports to install a functioning toolchain for it.

This change extend the llvm37 port to backport a tiny change that is
needed to make Clang support the CloudABI for aarch64 target (r250416).
This change makes Clang use the right ELFOSABI number, but also makes it
set the right #defines (e.g., __CloudABI__).

It also extends the cloudabi-clang port to set up symlinks against Clang
for aarch64.

Submitted by:	ed
Differential Revision:	https://reviews.freebsd.org/D3906
3.7
07 Aug 2015 13:44:33
Revision:393692Original commit files touched by this commit
ed search for other commits by this committer
Let lang/cloudabi-clang follow a stable release.

LLVM 3.7 will be the first release to offer CloudABI support out of the
box. Instead of depending on devel/llvm-devel, switch over to using
devel/llvm37.
1.0
31 Jul 2015 07:32:57
Revision:393289Original commit files touched by this commit
antoine search for other commits by this committer
Fix dependency
1.0
23 Jun 2015 08:44:45
Revision:390360Original commit files touched by this commit
ed search for other commits by this committer
Use the right category.

The port is placed in lang/ so use that instead.
23 Jun 2015 08:38:01
Revision:390358Original commit files touched by this commit Sanity Test Failure Refresh
ed search for other commits by this committer
Add cloudabi-clang.

This port adds the necessary symbolic links to make Clang work as a
cross compiler for CloudABI. Clang can automatically derive its target
from argv[0]. We don't need to install another copy of Clang. It is
sufficient to invoke it the right way.

CloudABI support is not yet part of a released version of Clang. This is
why we still need to depend on llvm-devel. My intent is to stick to a
fixed compiler version at one point in time.

PR:		200954
Differential Revision:	https://reviews.freebsd.org/D2885
Approved by:	bapt

Number of commits found: 9