+12
−0
Loading
Admins will be upgrading ORNL GitLab Servers on Saturday, 16 May 2026, from 7 AM until 11 AM EST. Repositories will experience intermittent outages during this time.
- add patch that adds `#define _GNU_SOURCE` to `untie.c`, as glibc
wrapper over clone syscall is not declared otherwise.
Fixes `-Wimplicit-function-declaration` error:
```
untie.c:411:15: error: implicit declaration of function 'clone';
did you mean 'close'? []
411 | ret = clone(child_process, &stack[STACK_SIZE - 1], flags, &args_info);
| ^~~~~
| close
make: *** [<builtin>: untie.o] Error 1
```