Add sysdeps/ieee754/soft-fp.
[glibc.git] / localedata / gen-locale.sh
blob39f1475cbc45faaae32728dbfd7cce282c3cdb05
1 #!/bin/sh
2 # Generate test locale files.
3 # Copyright (C) 2000-2017 Free Software Foundation, Inc.
4 # This file is part of the GNU C Library.
6 # The GNU C Library is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU Lesser General Public
8 # License as published by the Free Software Foundation; either
9 # version 2.1 of the License, or (at your option) any later version.
11 # The GNU C Library is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # Lesser General Public License for more details.
16 # You should have received a copy of the GNU Lesser General Public
17 # License along with the GNU C Library; if not, see
18 # <http://www.gnu.org/licenses/>.
20 set -e
22 common_objpfx="$1"; shift
23 localedef_before_env="$1"; shift
24 run_program_env="$1"; shift
25 localedef_after_env="$1"; shift
26 locfile="$1"; shift
28 generate_locale ()
30 charmap=$1
31 input=$2
32 out=$3
33 flags=$4
34 ret=0
35 ${localedef_before_env} ${run_program_env} I18NPATH=../localedata \
36 ${localedef_after_env} $flags -f $charmap -i $input \
37 ${common_objpfx}localedata/$out || ret=$?
38 if [ $ret -eq 0 ]; then
39 # The makefile checks the timestamp of the LC_CTYPE file,
40 # but localedef won't have touched it if it was able to
41 # hard-link it to an existing file.
42 touch ${common_objpfx}localedata/$out/LC_CTYPE
43 else
44 echo "Charmap: \"${charmap}\" Inputfile: \"${input}\"" \
45 "Outputdir: \"${out}\" failed"
46 exit 1
50 locfile=`echo $locfile|sed 's|.*/\([^/]*/LC_CTYPE\)|\1|'`
51 locale=`echo $locfile|sed 's|\([^.]*\)[.].*/LC_CTYPE|\1|'`
52 charmap=`echo $locfile|sed 's|[^.]*[.]\(.*\)/LC_CTYPE|\1|'`
54 echo "Generating locale $locale.$charmap: this might take a while..."
56 # Run quietly and force output.
57 flags="--quiet -c"
59 # For SJIS the charmap is SHIFT_JIS. We just want the locale to have
60 # a slightly nicer name instead of using "*.SHIFT_SJIS", but that
61 # means we need a mapping here.
62 charmap_real="$charmap"
63 if [ "$charmap" = "SJIS" ]; then
64 charmap_real="SHIFT_JIS"
67 # In addition to this the SHIFT_JIS character maps are not ASCII
68 # compatible so we must use `--no-warnings=ascii' to disable the
69 # warning. See localedata/Makefile $(INSTALL-SUPPORTED-LOCALES)
70 # for the same logic.
71 if [ "$charmap_real" = 'SHIFT_JIS' ] \
72 || [ "$charmap_real" = 'SHIFT_JISX0213' ]; then
73 flags="$flags --no-warnings=ascii"
76 generate_locale $charmap_real $locale $locale.$charmap "$flags"