From 204ee3cf6aca29652272d943946f9809060d054d Mon Sep 17 00:00:00 2001 From: Thomas Wolff Date: Sat, 17 Apr 2021 00:00:00 +0200 Subject: fix and amend scripts and makefile rules to generate Unicode data --- newlib/libc/Makefile.unidata | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 newlib/libc/Makefile.unidata (limited to 'newlib/libc/Makefile.unidata') diff --git a/newlib/libc/Makefile.unidata b/newlib/libc/Makefile.unidata new file mode 100644 index 0000000..c85c428 --- /dev/null +++ b/newlib/libc/Makefile.unidata @@ -0,0 +1,11 @@ +# Generate Unicode data tables for string/wcwidth and ctype/??w* +# Download Unicode data files +unidata: + cd string; ./mkunidata -u + cd ctype; ./mkunidata -u + +# Generate Unicode data tables for string/wcwidth and ctype/??w* +# Use installed Unicode data files from package unicode-ucd +unidata-local: + cd string; ./mkunidata -i + cd ctype; ./mkunidata -i -- cgit v1.1