Skip to content

Commit

Permalink
Code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tomdol committed Jan 17, 2025
1 parent 2278627 commit ad8f9ba
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions docs/howto/how-to-build-compiler.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,12 @@ NOTE: this assumes
- mounting `ONE` folder with NFS on the target would be simple

## Known issues
There's a potential known build error when attempting to cross-compile for ARM32 using GCC 10.5. You might encounter an error `comparison of unsigned expression in ‘< 0’ is always false [-Werror=type-limits]` reported from the `CircleNodeMixins.h` file. This is likely GCC's bug in this specific version. There's a workaround for it though - you can apply the following changes to both for loops in the `CircleNodeMixins.h`:
There's a potential known build error when attempting to cross-compile for ARM32 using GCC 10.5.
You might encounter an error:
`comparison of unsigned expression in ‘< 0’ is always false [-Werror=type-limits]` reported from
the `CircleNodeMixins.h` file. This is likely GCC's bug in this specific version.
There's a workaround for it though - you can apply the following changes to both for loops
in the `CircleNodeMixins.h`:

```
FixedArityNode()
Expand All @@ -235,4 +240,4 @@ void drop(void) final
}
}
}
```
```

0 comments on commit ad8f9ba

Please sign in to comment.