Re: [PATCH 1/3] gcc: Add missing parentheses around ternary operator

2021-08-28 Thread Martin Husemann
On Sun, Aug 29, 2021 at 01:42:22PM +1000, Damien Zammit wrote: > --- a/external/gpl3/gcc/dist/libcpp/files.c > +++ b/external/gpl3/gcc/dist/libcpp/files.c > @@ -233,7 +233,7 @@ open_file (_cpp_file *file) > } >else > file->fd = open (file->path, O_RDONLY | O_NOCTTY | O_BINARY > -

[PATCH 3/3] rump: Fix rumptest target && enable separate rump target

2021-08-28 Thread Damien Zammit
Signed-off-by: Damien Zammit --- build.sh | 42 -- 1 file changed, 24 insertions(+), 18 deletions(-) diff --git a/build.sh b/build.sh index 4d1f8685e142..be70b3bfc4e5 100755 --- a/build.sh +++ b/build.sh @@ -2212,29 +2212,25 @@ installworld() # RUMP_LI

[PATCH 2/3] osnet: Include time.h on GNU systems

2021-08-28 Thread Damien Zammit
Signed-off-by: Damien Zammit --- external/cddl/osnet/sys/sys/time.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/cddl/osnet/sys/sys/time.h b/external/cddl/osnet/sys/sys/time.h index 669586b45d23..e701e079221a 100644 --- a/external/cddl/osnet/sys/sys/time.h +++ b/e

[PATCH 1/3] gcc: Add missing parentheses around ternary operator

2021-08-28 Thread Damien Zammit
Author: Etienne Brateau Signed-off-by: Damien Zammit --- external/gpl3/gcc/dist/libcpp/files.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/gpl3/gcc/dist/libcpp/files.c b/external/gpl3/gcc/dist/libcpp/files.c index 0f4ba68f612e..7b3e1fa48997 100644 --- a/external

[PATCH 0/3] - Fix rump targets for GNU/Hurd i386 && native build

2021-08-28 Thread Damien Zammit
This includes a gcc patch, a build.sh patch and a one liner in osnet. The idea is to integrate pooka's buildrump.sh fork back into src. Something I'm not sure about is whether I can wrap the host toolchain for native builds on other systems. That is how buildrump.sh works. I'm still having issue