Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
146 changes: 146 additions & 0 deletions LOG.txt

Large diffs are not rendered by default.

20 changes: 14 additions & 6 deletions libc.gmk
Original file line number Diff line number Diff line change
Expand Up @@ -942,10 +942,10 @@ C_WMEM := \
ifdef SPE
$(info Adding SPE objects)
C_STRING := $(C_STRING) \
cpu/spe/memcmpE500.o \
cpu/spe/strcmpE500.o \
cpu/spe/strcpyE500.o \
cpu/spe/strlenE500.o
cpu/spe/memcmpE500.o \
cpu/spe/strcmpE500.o \
cpu/spe/strcpyE500.o \
cpu/spe/strlenE500.o

C_SETJMP := $(C_SETJMP) \
cpu/spe/_longjmpE500.o \
Expand Down Expand Up @@ -988,13 +988,21 @@ C_LIBRARY := \
$(C_WCHAR) \
$(C_WMEM)

SHARED_LIB_STUBS := \
$(patsubst \
%.c, \
%.o, \
$(addprefix shared_library/, \
$(notdir \
$(wildcard library/shared_library/stubs_*.c))))

C_LIB := \
c.lib_rev.o \
shared_library/stubs.o \
$(SHARED_LIB_STUBS) \
unistd/getopt.o \
unistd/getopt_long.o \
socket/in6addr_any.o \
socket/in6addr_loopback.o \
socket/in6addr_loopback.o

SOURCES_SHARED = $(addprefix $(OUT_SHARED)/, $(C_LIB))
SOURCES_STATIC = $(addprefix $(OUT_STATIC)/, $(C_LIB))
Expand Down
6 changes: 3 additions & 3 deletions library/c.lib_rev.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define REVISION 4
#define SUBREVISION 1

#define DATE "17.12.2024"
#define DATE "20.12.2024"
#define VERS "clib4.library 1.4.1"
#define VSTRING "clib4.library 1.4.1 (17.12.2024)\r\n"
#define VERSTAG "\0$VER: clib4.library 1.4.1-5d728de (17.12.2024)"
#define VSTRING "clib4.library 1.4.1 (20.12.2024)\r\n"
#define VERSTAG "\0$VER: clib4.library 1.4.1-5d728de (20.12.2024)"
Loading