Port details |
- compiler-rt Compiler runtime library with Blocks support
- 0.r131639_1 devel =2 0.r131639_1Version of this port present on the latest quarterly branch.
- Maintainer: brooks@FreeBSD.org
- Port Added: 2009-10-09 03:37:38
- Last Update: 2024-02-28 15:53:37
- Commit Hash: e83f0a9
- People watching this port, also watch:: jdictionary, py311-Automat, py311-python-gdsii, py39-PyOpenGL, p5-Sane
- License: BSD3CLAUSE MIT
- WWW:
- https://compiler-rt.llvm.org/
- Description:
- The compiler-rt project is a simple library that provides an
implementation of the low-level target-specific hooks required by code
generation and other runtime components. For example, when compiling
for a 32-bit target, converting a double to a 64-bit unsigned integer
is compiling into a runtime call to the "__fixunsdfdi" function. The
compiler-rt library provides optimized implementations of this and other
low-level routines.
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- compiler-rt>0:devel/compiler-rt
- To install the port:
- cd /usr/ports/devel/compiler-rt/ && make install clean
- To add the package, run one of these commands:
- pkg install devel/compiler-rt
- pkg install compiler-rt
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: compiler-rt
- Flavors: there is no flavor information for this port.
- distinfo:
- SHA256 (compiler-rt-0.r131639.tar.bz2) = 8ad19eddcbe594c33c9e6b6348b80ea9a617169d8cbc7758202ffddf76cc85ee
SIZE (compiler-rt-0.r131639.tar.bz2) = 762482
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- cmake : devel/cmake-core
- ninja : devel/ninja
- There are no ports dependent upon this port
Configuration Options:
- No options to configure
- Options name:
- devel_compiler-rt
- USES:
- cmake:insource tar:bzip2
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
0.r131639_1 28 Feb 2024 15:53:37 |
Michael Osipov (michaelo) |
*/*: Properly depend on Subversion LTS or latest with WITH_SUBVERSION_VER
When LTS version of Subversion is set in make.conf (WITH_SUBVERSION_VER)
depending ports will still depend on latest version (devel/subversion)
instead of LTS one (devel/subversion-lts). This will cause dependency
conflicts when packages are distributed with Poudriere, namely pkg(8)
will report them and fail to install.
Make all affected ports properly depend on the right port based on the
value set in WITH_SUBVERSION_VER.
Approved by: jrm (mentor), otis (mentor), lev (maintainer timeout)
Differential Revision: https://reviews.freebsd.org/D43864 |
0.r131639 15 Oct 2023 13:48:57 |
Daniel Engberg (diizzy) |
devel/compiler-rt: Remove duplicated definiton of CMake build dependency
Not needed as it is implied by USES= cmake
Approved by: portmgr (blanket) |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
0.r131639 07 Sep 2022 21:10:59 |
Stefan Eßer (se) |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
0.r131639 20 Jul 2022 14:21:35 |
Tobias C. Berner (tcberner) |
devel: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* "Waitman Gobble" <uzimac@da3m0n8t3r.com>
* <jkoshy@FreeBSD.org>
* Aaron Dalton <aaron@FreeBSD.org>
* Aaron Dalton <aaron@daltons.ca>
* Aaron H. K. Diep <ahkdiep@gmail.com>
* Aaron Hurt <ahurt@anbcs.com>
* Abel Chow <abel_chow@yahoo.com>
* Adam McLaurin
* Adam Saponara <as@php.net>
* Adam Weinberger <adamw@FreeBSD.org>
* Ade Lovett <ade@FreeBSD.org> (Only the first 15 lines of the commit message are shown above ) |
0.r131639 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
0.r131639 04 Jul 2019 11:57:28 |
linimon |
Use BROKEN_powerpc instead of old-style test.
While here, pet portlint (BROKEN_* location.) |
0.r131639 25 Dec 2018 20:25:40 |
tcberner |
Change cmake default behaviour to outsource.
Ports that build out of source now simply can use "USES=cmake"
instead of "USES=cmake:outsource". Ports that fail to build
out of source now need to specify "USES=cmake:insource".
I tried to only set insource where explictely needed.
PR: 232038
Exp-run by: antoine |
0.r131639 24 May 2018 08:34:15 |
amdmi3 |
- Add LICENSE
- Switch to new test framework
Approved by: portmgr blanket |
0.r131639 25 Jun 2017 21:07:58 |
tcberner |
Make ninja opt-out in cmake.mk
Using ninja instead of make (1) can lead to significant speed ups while
building.
Therefore switch from having the ninja generator opt-in to having it opt-out.
Previously cmake-ports that wanted to use ninja could set
CMAKE_NINJA=yes
now, ports that do not work with ninja can set
cmake:<existing args>,noninja
Note, that needing this should be an exception and most often points to a broken
cmake of the port.
The ports using cmake were modified
* removed USES=gmake, if ninja is used
* removed MAKE_ARGS, if ninja is used
* added the cmake-argument noninja if necessary
PR: 219629
PR: 213331
Exp-run by: antoine
Reviewed by: rakuco
Differential Revision: https://reviews.freebsd.org/D10748 |
0.r131639 29 Apr 2017 06:32:03 |
linimon |
Provide more descriptive error messages for ports failing on powerpc64.
Approved by: portmgr (tier-2 blanket) |
0.r131639 23 May 2016 18:36:52 |
amdmi3 |
Convert tab after WWW: in pkg-descrs to single space as per PHB
Approved by: portmgr blanket |
0.r131639 21 Apr 2016 16:43:15 |
swills |
many ports: mark broken on powerpc64 |
0.r131639 01 Apr 2016 14:00:57 |
mat |
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight |
0.r131639 14 May 2015 10:15:09 |
mat |
MASTER_SITES cleanup.
- Replace ${MASTER_SITE_FOO} with FOO.
- Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9%
of the time.)
- Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and
no hint of what it should be was present.
- Fix some logic.
- And generally, make things more simple and easy to understand.
While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and
SAMBA macros.
Also, replace some EXTRACT_SUFX occurences with USES=tar:*.
Checked by: make fetch-urlall-list
With hat: portmgr
Sponsored by: Absolight |
0.r131639 29 Jul 2014 18:41:17 |
adamw |
Convert a bunch of USE_BZIP2 to USES=tar:bzip2
Approved by: portmgr (not really, but touches unstaged ports) |
0.r131639 18 Oct 2013 13:33:45 |
brooks |
STAGIFY |
0.r131639 09 Oct 2013 06:57:04 |
bapt |
Remove useless use of USE_GCC |
20 Sep 2013 17:03:27
|
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
devel part 1) |
0.r131639 14 Aug 2013 22:35:54 |
ak |
- Remove MAKE_JOBS_SAFE variable
Approved by: portmgr (bdrewery) |
0.r131639 22 Mar 2013 20:06:15 |
makc |
- convert USE_CMAKE to USES
- while here clean up some ports from CMAKE_VERBOSE, which is intended
for users
Approved by: portmgr (miwi) |
0.r131639 19 May 2011 16:43:40 |
brooks |
Upgrade to the latest snapshot of compiler-rt.
Remove unnecessicary gmake depend.[0]
PR: 156524 [0]
Submitted by: bapt [0] |
0.r86542 01 Apr 2010 05:39:17 |
linimon |
Mark as broken on powerpc: fails to compile.
Hat: portmgr |
0.r86542 09 Dec 2009 04:07:26 |
brooks |
Upgrade to the latest compiler-rt commit and add a regression-test
target. |
0.r83568 19 Oct 2009 19:20:51 |
brooks |
Fix the build on i386 by adding -march=i486 to CFLAGS to gcc exports the
proper atomic symbols.
Fix the build on 6.x with USE_GCC=4.2+.
Simplify the Makefile a bit with USE_CMAKE.
Remove a bogus file that crept in to the initial install. |
0.r83568 16 Oct 2009 09:50:08 |
erwin |
Mark BROKEN: does not build. |
0.r83568 09 Oct 2009 03:36:54 |
brooks |
Add a port of compiler-rt, the LLVM project's compiler runtime and
blocks support. |