This project contains a set of scripts and docker images for building toolchain releases for the OpenRISC platform. Once the builds are done it will upload release artifacts to github.
If you are not a release maintainer you probably don't need this. You can just binaries from our release page mentioned above.
Prerequisites
- the build takes about 20GB and 40 minutes on a skylake core i5
First build the docker image. This will setup a sandboxed docker image which will run builds for OpenRISC newlib, musl and nolib (for kernel builds).
docker build -t or1k-toolchain-build or1k-toolchain-build/
Running the build, binaries will be outputted the /opt/crosstool
volume. You
can choose versions of GCC, BINUTILS, NEWLIB, MUSL. The GCC and BINUTILS
versions will be downloaded from the openrisc github repo's.
# The location where you have tarballs, so they dont need to be
# downloaded every time you build
CACHEDIR=/home/shorne/work/docker/volumes/src
# The location where you want your output to go
OUTPUTDIR=/home/shorne/work/docker/volumes/crosstool
docker run -it --rm \
-e MUSL_ENABLED=1 \
-e NEWLIB_ENABLED=1 \
-e NOLIB_ENABLED=1 \
-e GCC_VERSION=11.0.1 \
-e BINUTILS_VERSION=2.36.50 \
-e NEWLIB_VERSION=4.2.0 \
-e LINUX_HEADERS_VERSION=5.12.2 \
-e MUSL_VERSION=1.2.2 \
-e GMP_VERSION=6.2.1 \
-v ${OUTPUTDIR}:/opt/crosstool:Z \
-v ${CACHEDIR}:/opt/crossbuild/cache:Z \
or1k-toolchain-build
You can change the build behavior without rebuilding your docker image by passing in different environment veriables. These can be used to change toolchain versions or enable and disable features.
You can disable builds by undefining any of these variables, by default all builds are enabled.
NEWLIB_ENABLED
- (default1
) enable/disable the newlib buildNOLIB_ENABLED
- (default1
) enable/disable the nolib buildMUSL_ENABLED
- (default `1) enable/disable the musl build
The source versions of components pulled into the toolchain can be adjusted.
GCC_VERSION
- (default7.2.0
)or1k-{version}
tag downloaded from github.com/openrisc/or1k-gccBINUTILS_VERSION
- (default2.30
)or1k-{version}
tag downloaded from github.com/openrisc/binutils-gdbNEWLIB_VERSION
- (default2.4.0
)or1k-{version}
tag downloaded from github.com/openrisc/newlibMUSL_VERSION
- (default1.1.19
) version of musl downloaded from the musl release serverLINUX_HEADERS_VERSION
- (default4.15
) version of linux kernel, used for headers, downloaded from kernel.orgGMP_VERSION
- (default6.1.0
) version of GNU Multiple Precision Arithmetic Library (GMP) downloaded from gmplib.org
SRC_CLEANUP
- (default1
) enable/disable deleting of source after build completes. Disable this if you are debugging a toolchain build issue. Enable if if you are trying to save disk space during the build.TEST_ENABLED
- (default1
) enable/disable dejagnu tesing of toolchains and saving output to the/opt/crosstool
output volume.
When you are done you may want to sign your tarball archives. You can do something like the following.
# Sign tar
gpg --output or1k-linux-musl-5.4.0-20170202.tar.sign --detach-sign or1k-linux-musl-5.4.0-20170202.tar
# Create clearsigned dir listing
sha256sum or1k-linux-musl-5.4.0-20170202.tar* | gpg --output sha256sums.asc --clearsign
This is specifically for OpenRISC maintainers. The scripts in github/
can
be used to create a release and upload all of the binary artifacts to github.
First setups a ~/.github.api
with a github api token defined in
github_token
. i.e.
# Github api file for the curl release utilities
github_token=TOKEN
Next create a release
./github/release.sh
Then upload your binaries, it will automatically upload to the last release you built.
./github/upload.sh ../volume/crosstool/*.tar.*