Install this version:
emerge -a =sci-electronics/circt-1.153.1
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =sci-electronics/circt-1.153.1
Or alternatively:
emerge --autounmask-write -a =sci-electronics/circt-1.153.1
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_LLVM_PV="040a641988f6ed6f4fab250706ca2b620c1de2d8"
CMAKE_BUILD_TYPE="Release"
PYTHON_COMPAT=( python3_{12..14} )
inherit cmake python-r1
DESCRIPTION="Circuit IR Compilers and Tools"
HOMEPAGE="
https://circt.llvm.org
https://github.com/llvm/circt
"
if [[ "${PV}" == "9999" ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/llvm/${PN}.git"
S_CIRCT="${EGIT_CHECKOUT_DIR}"
S_LLVM="${S_CIRCT}/llvm"
S="${S_LLVM}/llvm"
else
SRC_URI="
https://github.com/llvm/circt/archive/refs/tags/firtool-${PV}.tar.gz -> ${P}.tar.gz
https://github.com/llvm/llvm-project/archive/${MY_LLVM_PV}.tar.gz -> llvm-project-${MY_LLVM_PV}.tar.gz
"
KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
S_CIRCT="${WORKDIR}/${PN}-firtool-${PV}"
S_LLVM="${WORKDIR}/llvm-project-${MY_LLVM_PV}"
S="${S_LLVM}/llvm"
fi
LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA BSD public-domain rc"
SLOT="0"
IUSE="test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RESTRICT="!test? ( test )"
RDEPEND="
${PYTHON_DEPS}
test? (
dev-python/psutil[${PYTHON_USEDEP}]
sci-electronics/verilator
)
app-arch/zstd:=
sys-libs/ncurses:0=
"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
DOCS=(
"${S_LLVM}/llvm/llvm-LICENSE.TXT"
"${S_LLVM}/mlir/mlir-LICENSE.TXT"
"${S_CIRCT}/circt-LICENSE"
)
src_configure() {
python_setup
local mycmakeargs=(
-D Python3_EXECUTABLE="${PYTHON}"
-D CMAKE_INSTALL_PREFIX=/usr
-D CMAKE_SKIP_RPATH=ON
-D LLVM_ENABLE_PROJECTS=mlir
-D BUILD_SHARED_LIBS=OFF
-D LLVM_STATIC_LINK_CXX_STDLIB=ON
-D LLVM_ENABLE_ASSERTIONS=ON
-D LLVM_ENABLE_ZSTD=FORCE_ON
-D Z3_DISABLE=ON
-D LLVM_BUILD_EXAMPLES=OFF
-D LLVM_ENABLE_BINDINGS=OFF
-D LLVM_ENABLE_OCAMLDOC=OFF
-D LLVM_OPTIMIZED_TABLEGEN=OFF
-D LLVM_EXTERNAL_PROJECTS=circt
-D LLVM_EXTERNAL_CIRCT_SOURCE_DIR="${S_CIRCT}"
-D LLVM_BUILD_TOOLS=ON
)
cmake_src_configure
}
src_test() {
if [[ ! -L ${S_CIRCT}/llvm ]]; then
rmdir "${S_CIRCT}/llvm" || die
ln -s "${S_LLVM}" "${S_CIRCT}/llvm" || die
fi
pushd "${BUILD_DIR}" || die
eninja check-circt
eninja check-circt-integration
popd || die
}
src_install() {
mv "${S_LLVM}/llvm/LICENSE.TXT" "${S_LLVM}/llvm/llvm-LICENSE.TXT" || die
mv "${S_LLVM}/mlir/LICENSE.TXT" "${S_LLVM}/mlir/mlir-LICENSE.TXT" || die
mv "${S_CIRCT}/LICENSE" "${S_CIRCT}/circt-LICENSE" || die
einstalldocs
local tool
local tools=(
arcilator circt-as circt-bmc circt-cocotb-driver.py circt-dis
circt-lec circt-lsp-server circt-opt circt-reduce circt-rtl-sim.py
circt-synth circt-test circt-translate circt-verilog
circt-verilog-lsp-server domaintool firld firtool handshake-runner
hlstool kanagawatool om-linker py-split-input-file.py
)
exeinto /usr/bin
for tool in "${tools[@]}"; do
if [[ -e "${BUILD_DIR}/bin/${tool}" ]]; then
doexe "${BUILD_DIR}/bin/${tool}"
else
ewarn "Skipping ${tool}, not built (optional frontend unavailable)"
fi
done
[[ -e "${ED}/usr/bin/firtool" ]] || die "firtool was not built"
}
Manage flags for this package:
euse -i <flag> -p sci-electronics/circt |
euse -E <flag> -p sci-electronics/circt |
euse -D <flag> -p sci-electronics/circt
test? ( dev-python/psutil[] sci-electronics/verilator ) app-arch/zstd:= sys-libs/ncurses:0=
test? ( dev-python/psutil[] sci-electronics/verilator ) app-arch/zstd:= sys-libs/ncurses:0=
virtual/pkgconfig
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | circt-1.153.1.tar.gz | 10200306 bytes | https://github.com/llvm/circt/archive/refs/tags/firtool-1.153.1.tar.gz |
| DIST | llvm-project-040a641988f6ed6f4fab250706ca2b620c1de2d8.tar.gz | 275008647 bytes | https://github.com/llvm/llvm-project/archive/040a641988f6ed6f4fab250706ca2b620c1de2d8.tar.gz |