mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 13:00:06 +00:00
3cb0cda8a1
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.
19 lines
644 B
Bash
19 lines
644 B
Bash
#! /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 "};"
|