summaryrefslogtreecommitdiff
path: root/iconvdata/gen-8bit-gap.sh
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-05-13 12:10:50 +0000
committerUlrich Drepper <drepper@redhat.com>1998-05-13 12:10:50 +0000
commit3cb0cda8a1eb5aa13140f68d8a3c11b21fdeb986 (patch)
tree3809c20c5a7debd62cc29d4bb8d0e9e61526e335 /iconvdata/gen-8bit-gap.sh
parenta4b96a06981a8ee9b66d893737f168461eb8cab0 (diff)
Update.
1998-05-12 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * iconvdata/8bit-gap.c (BODY): Don't fall off the end of the gap table. 1998-05-12 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * iconvdata/gen-8bit.sh: New file. * iconvdata/gen-8bit-gap.sh: New file. * iconvdata/gen-8bit-gap-1.sh: New file. * iconvdata/Makefile (generate-8bit-table): Use shell script instead of writing the commands directly. (generate-8bit-gap-table): Likewise. ($(objpfx)iso8859-7jp.h): Likewise. (generated headers): Depend on shell script instead of Makefile. (before-compile): Add $(perl-generated-headers) only if perl is available. (headers): Depend on $(perl-generated-headers) only if perl is available. (sed-generated-headers): Remove iso8859-7jp.h. 1998-05-11 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * csu/Makefile ($(objpfx)abi-tag.h): Double $ in command. Clean up. (/): Removed.
Diffstat (limited to 'iconvdata/gen-8bit-gap.sh')
-rw-r--r--iconvdata/gen-8bit-gap.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/iconvdata/gen-8bit-gap.sh b/iconvdata/gen-8bit-gap.sh
new file mode 100644
index 0000000000..fd05a6b935
--- /dev/null
+++ b/iconvdata/gen-8bit-gap.sh
@@ -0,0 +1,18 @@
+#! /bin/sh
+echo "static const uint32_t to_ucs4[256] = {"
+sed -e '/^[^[:space:]]*[[:space:]]*.x00/d' \
+ -e 's/^[^[:space:]]*[[:space:]]*.x\(..\)[[:space:]]*<U\(....\)>.*/ [0x\1] = 0x\2,/p' \
+ -e d "$@" | \
+sort -u
+echo "};"
+echo "static const struct gap from_idx[] = {"
+sed -e 's/^[^[:space:]]*[[:space:]]*.x\(..\)[[:space:]]*<U\(....\)>.*/0x\2 0x\1/p' \
+ -e d "$@" | \
+sort -u | $PERL gap.pl
+echo " { start: 0xffff, end: 0xffff, idx: 0 }"
+echo "};"
+echo "static const char from_ucs4[] = {"
+sed -e 's/^[^[:space:]]*[[:space:]]*.x\(..\)[[:space:]]*<U\(....\)>.*/0x\2 0x\1/p' \
+ -e d "$@" | \
+sort -u | $PERL gaptab.pl
+echo "};"