Skip to content
Snippets Groups Projects
Commit 3e00988d authored by Benjamin Koch's avatar Benjamin Koch
Browse files

gcc wrapper fix is also required on native aarch64

parent 78ff54fa
No related branches found
No related tags found
No related merge requests found
...@@ -24,7 +24,11 @@ in stdenv.mkDerivation { ...@@ -24,7 +24,11 @@ in stdenv.mkDerivation {
(lib.attrsets.mapAttrsToList (name: drv: if drv ? outPath then "${name} ${drv.outPath}" else "") srcs2); (lib.attrsets.mapAttrsToList (name: drv: if drv ? outPath then "${name} ${drv.outPath}" else "") srcs2);
buildInputs = [ ncurses python3 ]; buildInputs = [ ncurses python3 ];
depsBuildBuild = if canadian then [ gcc binutils (wrapIt gcc.__spliced.buildBuild) ] else [ ]; depsBuildBuild = if canadian
then [ gcc binutils (wrapIt gcc.__spliced.buildBuild) ]
else if stdenv.buildPlatform != "x86_64-linux"
then [ (wrapIt gcc) ]
else [ ];
nativeBuildInputs = [ espressif-crosstool-ng autoconf automake bison flex unzip help2man libtool which texinfo file wget gnum4 perl python3 ] nativeBuildInputs = [ espressif-crosstool-ng autoconf automake bison flex unzip help2man libtool which texinfo file wget gnum4 perl python3 ]
++ [ breakpointHook ]; ++ [ breakpointHook ];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment