Re: Compiling Coreutils with masm=intel

2023-09-13 Thread Arsen Arsenović
Jay writes: > Hello, > > I am trying to compile coreutils with the following commands: > > CC=gcc CFLAGS="-O0 -gdwarf-2 -save-temps=obj -Wno-error > -fno-asynchronous-unwind-tables -fno-exceptions" ../configure --prefix > /home/Documents/coreutils/intelbuild && make -j8 > > However, it fails wit

[PATCH] maint: use C99 int size specifiers rather than PRI.MAX defines

2023-09-13 Thread Pádraig Brady
Following on from commit v9.3-128-gf31229ebd replace all uses of the PRI.MAX portability defines with C99 size specifiers %z, %j, and %t. --- TODO | 2 +- gl/lib/randint.c | 2 +- src/dd.c | 22 +++--- src/digest.c | 18 +- src/getlimits.c

Re: [PATCH] maint: use C99 int size specifiers rather than PRI.MAX defines

2023-09-13 Thread Jim Meyering
Nice. Thanks.