Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
esp-idf-nix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mr. Snow Ball / projects
esp-idf-nix
Commits
3e00988d
Commit
3e00988d
authored
4 years ago
by
Benjamin Koch
Browse files
Options
Downloads
Patches
Plain Diff
gcc wrapper fix is also required on native aarch64
parent
78ff54fa
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
esp32-tools.nix
+5
-1
5 additions, 1 deletion
esp32-tools.nix
with
5 additions
and
1 deletion
esp32-tools.nix
+
5
−
1
View file @
3e00988d
...
@@ -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
];
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment