utf8proc

A clean C library for processing UTF-8 Unicode data
git clone https://git.sinitax.com/juliastrings/utf8proc
Log | Files | Refs | README | LICENSE | sfeed.txt

commit 1f1e42d3b8f77d26aa206734bcb33d3251548652
parent 63f31c908ef7656415f73d6c178f08181239f74c
Author: Harmen Stoppels <harmenstoppels@gmail.com>
Date:   Tue, 25 Oct 2022 04:47:20 +0200

Add c flag when invoking ar (#241)

`llvm-ar` warns when the archive does not exist and `c` is not passed.
Diffstat:
MMakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -78,7 +78,7 @@ utf8proc.o: utf8proc.h utf8proc.c utf8proc_data.c libutf8proc.a: utf8proc.o rm -f libutf8proc.a - $(AR) rs libutf8proc.a utf8proc.o + $(AR) crs libutf8proc.a utf8proc.o libutf8proc.so.$(MAJOR).$(MINOR).$(PATCH): utf8proc.o $(CC) $(LDFLAGS) $(LDFLAG_SHARED) -o $@ $(SOFLAG) -Wl,libutf8proc.so.$(MAJOR) utf8proc.o