2021-08-22 07:53:02 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-04-24 23:36:52 +00:00
|
|
|
, fetchurl
|
|
|
|
, ncurses5
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "gcc-arm-embedded";
|
2021-07-14 22:03:04 +00:00
|
|
|
version = "9.3.1";
|
|
|
|
release = "9-2020-q2-update";
|
2020-11-24 20:58:05 +00:00
|
|
|
subdir = "9-2020q2";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
suffix = {
|
|
|
|
aarch64-linux = "aarch64-linux";
|
|
|
|
x86_64-darwin = "mac";
|
|
|
|
x86_64-linux = "x86_64-linux";
|
|
|
|
}.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
|
|
|
|
|
|
|
|
src = fetchurl {
|
2021-07-14 22:03:04 +00:00
|
|
|
url = "https://developer.arm.com/-/media/Files/downloads/gnu-rm/${subdir}/gcc-arm-none-eabi-${release}-${suffix}.tar.bz2";
|
2020-04-24 23:36:52 +00:00
|
|
|
sha256 = {
|
2020-11-24 20:58:05 +00:00
|
|
|
aarch64-linux = "1b5q2y710hy7lddj8vj3zl54gfl74j30kx3hk3i81zrcbv16ah8z";
|
|
|
|
x86_64-darwin = "1ils9z16wrvglh72m428y5irmd36biq79yj86756whib8izbifdv";
|
|
|
|
x86_64-linux = "07zi2yr5gvhpbij5pnj49zswb9g2gw7zqp4xwwniqmq477h2xp2s";
|
2020-04-24 23:36:52 +00:00
|
|
|
}.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
|
|
|
|
};
|
|
|
|
|
2020-12-29 15:07:52 +00:00
|
|
|
dontConfigure = true;
|
|
|
|
dontBuild = true;
|
|
|
|
dontPatchELF = true;
|
|
|
|
dontStrip = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out
|
|
|
|
cp -r * $out
|
|
|
|
ln -s $out/share/doc/gcc-arm-none-eabi/man $out/man
|
|
|
|
'';
|
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
find $out -type f | while read f; do
|
2020-12-29 15:07:52 +00:00
|
|
|
patchelf "$f" > /dev/null 2>&1 || continue
|
2020-04-24 23:36:52 +00:00
|
|
|
patchelf --set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) "$f" || true
|
2022-12-02 08:20:57 +00:00
|
|
|
patchelf --set-rpath ${lib.makeLibraryPath [ "$out" stdenv.cc.cc ncurses5 ]} "$f" || true
|
2020-04-24 23:36:52 +00:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Pre-built GNU toolchain from ARM Cortex-M & Cortex-R processors";
|
|
|
|
homepage = "https://developer.arm.com/open-source/gnu-toolchain/gnu-rm";
|
|
|
|
license = with licenses; [ bsd2 gpl2 gpl3 lgpl21 lgpl3 mit ];
|
|
|
|
maintainers = with maintainers; [ prusnak ];
|
2022-11-04 12:27:35 +00:00
|
|
|
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|