All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/4] tools/nolibc: assorted fixes and small updates
@ 2025-11-02 10:46 Willy Tarreau
  2025-11-02 10:46 ` [PATCH v2 1/4] tools/nolibc: fix misleading help message regarding installation path Willy Tarreau
                   ` (3 more replies)
  0 siblings, 4 replies; 11+ messages in thread
From: Willy Tarreau @ 2025-11-02 10:46 UTC (permalink / raw)
  To: linux; +Cc: shuah, linux-kernel, Willy Tarreau

Trying to port a program to nolibc triggered a few trivial errors that                                       
are worth being addressed:                                                                                                                 
  - inttypes.h is missing, while being generally recommended over stdint.h                                                                 
    for being more portable. Here we add it, which simply includes stdint.h.                                                               
                                                                                                                                           
  - sys/select.h is supposed to be where struct fd_set and FD_CLR() etc                                                                    
    are defined. Till now it was still in types.h. Let's create the file                                                                   
    and move these definitions there.                                                                                                      
                                                                                                                                           
  - memchr() was still missing, thus a trivial one was added.                                                                              
                                                                                                                                           
Finally the help message from "make help" reported an inaccurate                                                                           
installation path, omitting the dependency on $OUTPUT. This was                                                                            
fixed as well.

---
v2:
  - rebase this old changeset onto latest updates from Thomas
  - moved select() definition do sys/select.h as well and include
    nolibc.h to avoid having just a dummy file like in v1

Willy Tarreau (4):
  tools/nolibc: fix misleading help message regarding installation path
  tools/nolibc: add the more portable inttypes.h
  tools/nolibc: add missing memchr() to string.h
  tools/nolibc: provide the portable sys/select.h

 tools/include/nolibc/Makefile                |   4 +-
 tools/include/nolibc/inttypes.h              |   8 ++
 tools/include/nolibc/nolibc.h                |   1 +
 tools/include/nolibc/string.h                |  15 +++
 tools/include/nolibc/sys.h                   |  45 --------
 tools/include/nolibc/sys/select.h            | 103 +++++++++++++++++++
 tools/include/nolibc/types.h                 |  47 ---------
 tools/testing/selftests/nolibc/nolibc-test.c |   2 +
 8 files changed, 132 insertions(+), 93 deletions(-)
 create mode 100644 tools/include/nolibc/inttypes.h
 create mode 100644 tools/include/nolibc/sys/select.h

-- 
2.17.5


^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2025-11-02 12:51 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-02 10:46 [PATCH v2 0/4] tools/nolibc: assorted fixes and small updates Willy Tarreau
2025-11-02 10:46 ` [PATCH v2 1/4] tools/nolibc: fix misleading help message regarding installation path Willy Tarreau
2025-11-02 11:03   ` Thomas Weißschuh
2025-11-02 10:46 ` [PATCH v2 2/4] tools/nolibc: add the more portable inttypes.h Willy Tarreau
2025-11-02 11:04   ` Thomas Weißschuh
2025-11-02 11:18     ` Willy Tarreau
2025-11-02 11:41       ` Thomas Weißschuh
2025-11-02 10:46 ` [PATCH v2 3/4] tools/nolibc: add missing memchr() to string.h Willy Tarreau
2025-11-02 11:10   ` Thomas Weißschuh
2025-11-02 10:46 ` [PATCH v2 4/4] tools/nolibc: provide the portable sys/select.h Willy Tarreau
2025-11-02 12:51   ` Thomas Weißschuh

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.