From ad8f9ba5cf55b75c27cd7050cb8bb526ef5f183e Mon Sep 17 00:00:00 2001 From: Tomasz Dolbniak Date: Fri, 17 Jan 2025 12:01:23 +0100 Subject: [PATCH] Code formatting --- docs/howto/how-to-build-compiler.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/howto/how-to-build-compiler.md b/docs/howto/how-to-build-compiler.md index 9b9237e4bf9..553718bbb3b 100644 --- a/docs/howto/how-to-build-compiler.md +++ b/docs/howto/how-to-build-compiler.md @@ -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() @@ -235,4 +240,4 @@ void drop(void) final } } } -``` \ No newline at end of file +```