| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
instead of <Uxxxx>
* localedata/locales/mai_NP: Use POSIX Portable Character Set.
|
|
|
|
|
|
|
|
|
|
| |
Maithili which is an official language not only in India but in Nepal as well.
https://en.wikipedia.org/wiki/Maithili_language
Reference is taken form mai_IN.
[BZ #21835]
* localedata/locales/mai_NP: New file.
* localedata/SUPPORTED: Add mai_NP/UTF-8.
|
|
|
|
|
|
|
|
| |
[BZ #21838]
* locales/the_NP (LC_CTYPE): copy "ne_NP"
* locales/the_NP (LC_COLLATE): copy "ne_NP"
* locales/the_NP (LC_MONETARY): copy "ne_NP"
* locales/the_NP (LC_TELEPHONE): copy "ne_NP"
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
[BZ #21836]
* locales/ar_IN (LC_MONETARY): copy "hi_IN"
* locales/as_IN (LC_MONETARY): copy "hi_IN"
* locales/bhb_IN (LC_MONETARY): copy "hi_IN"
* locales/bn_IN (LC_MONETARY): copy "hi_IN"
* locales/en_IN (LC_MONETARY): copy "hi_IN"
* locales/gu_IN (LC_MONETARY): copy "hi_IN"
* locales/kn_IN (LC_MONETARY): copy "hi_IN"
* locales/kok_IN (LC_MONETARY): copy "hi_IN"
* locales/ks_IN (LC_MONETARY): copy "hi_IN"
* locales/ml_IN (LC_MONETARY): copy "hi_IN"
* locales/mr_IN (LC_MONETARY): copy "hi_IN"
* locales/or_IN (LC_MONETARY): copy "hi_IN"
* locales/pa_IN (LC_MONETARY): copy "hi_IN"
* locales/sa_IN (LC_MONETARY): copy "hi_IN"
* locales/sd_IN (LC_MONETARY): copy "hi_IN"
* locales/ta_IN (LC_MONETARY): copy "hi_IN"
* locales/tcy_IN (LC_MONETARY): copy "hi_IN"
* locales/te_IN (LC_MONETARY): copy "hi_IN"
* locales/ur_IN (LC_MONETARY): copy "hi_IN"
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
[BZ #21797]
* locales/et_EE (LC_ADDRESS): Fix country_isbn.
* locales/hy_AM (LC_ADDRESS): Fix country_isbn.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* locales/an_ES (LC_ADDRESS): Add country_name.
* locales/ayc_PE (LC_ADDRESS): Add country_name.
* locales/be_BY@latin (LC_ADDRESS): Add country_name.
* locales/dv_MV (LC_ADDRESS): Add country_name,
country_ab2, and country_ab3
* locales/ia_FR (LC_ADDRESS): Add country_name.
* locales/ik_CA (LC_ADDRESS): Add country_name.
* locales/lij_IT (LC_ADDRESS): Add country_name.
* locales/mi_NZ (LC_ADDRESS): Add country_name.
* locales/nds_DE (LC_ADDRESS): Add country_name.
* locales/nds_NL (LC_ADDRESS): Add country_name.
* locales/oc_FR (LC_ADDRESS): Add country_name.
* locales/sa_IN (LC_ADDRESS): Add country_name.
* locales/sc_IT (LC_ADDRESS): Add country_name.
* locales/sd_IN (LC_ADDRESS): Add country_name.
* locales/tcy_IN (LC_ADDRESS): Add country_name.
* locales/tg_TJ (LC_ADDRESS): Add country_name.
* locales/tl_PH (LC_ADDRESS): Add country_name.
* locales/tt_RU (LC_ADDRESS): Add country_name.
* locales/wo_SN (LC_ADDRESS): Add country_name.
* locales/zh_SG (LC_ADDRESS): Add country_name.
|
|
|
|
|
| |
[BZ #21825]
* locales/mag_IN(LC_NAME): Fix name_mrs.
|
|
|
|
|
| |
[BZ #21823]
* locales/sa_IN (LC_MESSAGES): Add yesstr,nostr
|
|
|
|
|
| |
[BZ #21822]
* locales/mai_IN (LC_TIME): Fix abday, day, mon etc...
|
|
|
|
|
|
|
|
|
| |
The PRIdLINENUM abstraction is unnecessary and breaks libc.pot
generation.
* timezone.zic (PRIdLINENO): Remove.
(verror): Use PRIdMAX.
* po/libc.pot: Regenerate.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The function maybe_enable_malloc_check, which is called by
__tunables_init, calls __access_noerrno. It isn't problem when
symbol is is in ld.so, which has a special version of __access_noerrno
without stack protector. But when glibc is built with stack protector,
maybe_enable_malloc_check in libc.a can't call the regular version of
__access_noerrno with stack protector.
This patch changes how Linux defines the __access_noerrno to be an
inline call instead and thus preventing defining different build
rules for ld/static and shared.
H.J. Lu <hongjiu.lu@intel.com>
Adhemerval Zanella <adhemerval.zanella@linaro.org>
[BZ #21744]
* elf/dl-tunables.c: Include not-errno.h header.
* include/unistd.h (__access_noerrno): Remove definition.
* sysdeps/unix/sysv/linux/access.c (__access_noerrno): Likewise.
* sysdeps/generic/not-errno.h: New file.
* sysdeps/unix/sysv/linux/not-errno.h: Likewise.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
__libc_argv[0] points to address on stack and __libc_secure_getenv
accesses environment variables which are on stack. We should avoid
accessing stack when stack is corrupted.
This patch also renames function argument in __fortify_fail_abort
from do_backtrace to need_backtrace to avoid confusion with do_backtrace
from enum __libc_message_action.
[BZ #21752]
* debug/fortify_fail.c (__fortify_fail_abort): Don't pass down
__libc_argv[0] if we aren't doing backtrace. Rename do_backtrace
to need_backtrace.
* sysdeps/posix/libc_fatal.c (__libc_message): Don't call
__libc_secure_getenv if we aren't doing backtrace.
|
| |
|
|
|
|
|
| |
[BZ #21821]
* locales/mai_IN (LC_ADDRESS): Add country_name.
|
|
|
|
|
| |
[BZ #21796]
* locales/ko_KR (LC_ADDRESS): Add country_isbn.
|
|
|
|
|
|
|
|
|
|
| |
[BZ #21794]
* locales/ca_IT (LC_ADDRESS): Add country_isbn.
* locales/de_IT (LC_ADDRESS): Add country_isbn.
* locales/fur_IT (LC_ADDRESS): Add country_isbn.
* locales/it_IT (LC_ADDRESS): Add country_isbn.
* locales/lij_IT (LC_ADDRESS): Add country_isbn.
* locales/sc_IT (LC_ADDRESS): Add country_isbn.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
sys/ptrace.h on S390 used to be includible both before and after
asm/ptrace.h, until commit b08a6a0dea63742313ed3d9577c1e2d83436b196
among other changes introduced PTRACE_SINGLEBLOCK enum constant which
is also defined in asm/ptrace.h as a macro, making sys/ptrace.h fail
to compile when included after asm/ptrace.h.
* sysdeps/unix/sysv/linux/s390/sys/ptrace.h [_LINUX_PTRACE_H ||
_S390_PTRACE_H]: Undefine all PTRACE_* macro constants defined
later as enum constants, except PTRACE_PEEKUSER, PTRACE_POKEUSER,
and PTRACE_SEIZE_DEVEL that are not defined by Linux headers.
|
|
|
|
| |
Revise comment in sysdeps/hppa/dl-trampoline.S
|
|
|
|
|
| |
The configuration was cloned from test4, but test5 does not
have data for a second module.
|
|
|
|
|
|
|
|
| |
* localedata/Makefile (CFLAGS-tst_iswalnum.c, CFLAGS-tst_iswalpha.c
CFLAGS-tst_iswcntrl.c, CFLAGS-tst_iswdigit.c, CFLAGS-tst_iswgraph.c,
CFLAGS-tst_iswlower.c, CFLAGS-tst_iswprint.c, CFLAGS-tst_iswpunct.c,
CFLAGS-tst_iswspace.c, CFLAGS-tst_iswupper.c, CFLAGS-tst_iswxdigit.c,
CFLAGS-tst_towlower.c, CFLAGS-tst_towupper.c): New macros.
|
|
|
|
| |
* nss/nss_test1.c (default_npwd_data): Fix definition.
|
|
|
|
|
| |
* sysdeps/ieee754/ldbl-128/e_expl.c (__ieee754_expl): Call
math_force_eval.
|
|
|
|
|
|
|
| |
[BZ #12068]
* locales/sc_IT (LC_MESSAGES): Fix yesexpr and add yesstr and nostr.
* locales/sc_IT (LC_TIME): Fix mispelled day/abday/mon/abmon and
fix date_fmt.
|
|
|
|
|
|
|
|
|
|
| |
After the recent update of int_select the comment needed an update, too.
While at this, all comments in LC_TELEPHONE were moved above their
respective values because this looks better. Some minor typos fixed.
[BZ #21783]
* localedata/locales/lg_UG (LC_TELEPHONE): Move all comments
above the values, correct some of them.
|
|
|
|
|
|
|
|
|
| |
[BZ #21795]
* locales/br_FR (LC_ADDRESS): Add country_isbn.
* locales/ca_FR (LC_ADDRESS): Add country_isbn.
* locales/fr_FR (LC_ADDRESS): Add country_isbn.
* locales/ia_FR (LC_ADDRESS): Fix country_isbn.
* locales/oc_FR (LC_ADDRESS): Fix country_isbn.
|
|
|
|
|
|
|
|
| |
[BZ #21807]
[BZ #21808]
* locales/pap_AW (LC_ADDRESS): Add country_name and country_post.
* locales/pap_CW (LC_ADDRESS): Add country_name, country_post,
and country_isbn.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* locales/ar_JO (LC_TELEPHONE): Add int_select.
* locales/ar_LB (LC_TELEPHONE): Add int_select.
* locales/ar_MA (LC_TELEPHONE): Add int_select.
* locales/ar_OM (LC_TELEPHONE): Add int_select.
* locales/ber_DZ (LC_TELEPHONE): Add int_select.
* locales/ber_MA (LC_TELEPHONE): Add int_select.
* locales/ca_ES (LC_TELEPHONE): Add int_select.
* locales/crh_UA (LC_TELEPHONE): Add int_select.
* locales/de_CH (LC_TELEPHONE): Add int_select.
* locales/de_LI (LC_TELEPHONE): Add int_select.
* locales/de_LU (LC_TELEPHONE): Add int_select.
* locales/dz_BT (LC_TELEPHONE): Add int_select.
* locales/en_HK (LC_TELEPHONE): Add int_select.
* locales/en_IE (LC_TELEPHONE): Add int_select.
* locales/en_NZ (LC_TELEPHONE): Add int_select.
* locales/en_PH (LC_TELEPHONE): Add int_select.
* locales/en_SG (LC_TELEPHONE): Add int_select.
* locales/es_ES (LC_TELEPHONE): Add int_select.
* locales/es_PA (LC_TELEPHONE): Add int_select.
* locales/es_US (LC_TELEPHONE): Add int_select.
* locales/es_UY (LC_TELEPHONE): Add int_select.
* locales/eu_ES (LC_TELEPHONE): Add int_select.
* locales/he_IL (LC_TELEPHONE): Add int_select.
* locales/id_ID (LC_TELEPHONE): Add int_select.
* locales/it_CH (LC_TELEPHONE): Add int_select.
* locales/it_CH (LC_TELEPHONE): Add int_select.
* locales/it_IT (LC_TELEPHONE): Add int_select.
* locales/kl_GL (LC_TELEPHONE): Add int_select.
* locales/ko_KR (LC_TELEPHONE): Add int_select.
* locales/kw_GB (LC_TELEPHONE): Add int_select.
* locales/ky_KG (LC_TELEPHONE): Add int_select.
* locales/lij_IT (LC_TELEPHONE): Add int_select.
* locales/lt_LT (LC_TELEPHONE): Add int_select.
* locales/lv_LV (LC_TELEPHONE): Add int_select.
* locales/mi_NZ (LC_TELEPHONE): Add int_select.
* locales/ms_MY (LC_TELEPHONE): Add int_select.
* locales/mt_MT (LC_TELEPHONE): Add int_select.
* locales/ne_NP (LC_TELEPHONE): Add int_select.
* locales/niu_NU (LC_TELEPHONE): Add int_select.
* locales/nl_NL (LC_TELEPHONE): Add int_select.
* locales/pl_PL (LC_TELEPHONE): Add int_select.
* locales/ro_RO (LC_TELEPHONE): Add int_select.
* locales/ru_UA (LC_TELEPHONE): Add int_select.
* locales/rw_RW (LC_TELEPHONE): Add int_select.
* locales/sk_SK (LC_TELEPHONE): Add int_select.
* locales/sl_SI (LC_TELEPHONE): Add int_select.
* locales/so_SO (LC_TELEPHONE): Add int_select.
* locales/the_NP (LC_TELEPHONE): Add int_select.
* locales/tk_TM (LC_TELEPHONE): Add int_select.
* locales/uz_UZ (LC_TELEPHONE): Add int_select.
* locales/uz_UZ@cyrillic (LC_TELEPHONE): Add int_select.
* locales/zh_SG (LC_TELEPHONE): Add int_select.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
[BZ # 21801]
* locales/es_NI (LC_TELEPHONE): Add int_select.
* locales/es_PE (LC_TELEPHONE): Add int_select.
* locales/es_PR (LC_TELEPHONE): Add int_select.
* locales/es_PY (LC_TELEPHONE): Add int_select.
* locales/es_VE (LC_TELEPHONE): Add int_select.
* locales/fo_FO (LC_TELEPHONE): Add int_select.
* locales/fr_CH (LC_TELEPHONE): Add int_select.
* locales/fr_LU (LC_TELEPHONE): Add int_select.
* locales/ga_IE (LC_TELEPHONE): Add int_select.
* locales/gl_ES (LC_TELEPHONE): Add int_select.
* locales/gv_GB (LC_TELEPHONE): Add int_select.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
[BZ #21799]
* locales/ar_KW (LC_TELEPHONE): Add int_select.
* locales/ar_LY (LC_TELEPHONE): Add int_select.
* locales/ar_QA (LC_TELEPHONE): Add int_select.
* locales/ar_SA (LC_TELEPHONE): Add int_select.
* locales/ar_SS (LC_TELEPHONE): Add int_select.
* locales/ar_SY (LC_TELEPHONE): Add int_select.
* locales/ar_TN (LC_TELEPHONE): Add int_select.
* locales/ar_YE (LC_TELEPHONE): Add int_select.
* locales/ca_AD (LC_TELEPHONE): Add int_select.
* locales/es_MX (LC_TELEPHONE): Add int_select.
|
|
|
|
| |
* sysdeps/sparc/fpu/libm-test-ulps: Update.
|
|
|
|
|
|
|
|
|
|
|
|
| |
This patch fixes the argument passing for exit syscall after
the clone function returns on hppa. This fixes misc/tst-clone2
on alpha-linux-gnu.
Checked misc/tst-clone2 on alpha-linux-gnu.
[BZ #21512]
* sysdeps/unix/sysv/linux/alpha/clone.S (__clone): Fix argument
passing to syscall exit.
|
|
|
|
|
| |
Original code was dereferencing a char*, then casting the value
to size_t. Should cast the pointer to size_t* then deference.
|
|
|
|
| |
* locales/iu_CA (LC_ADDRESS): Add country_name
|
|
|
|
|
|
|
|
|
|
|
|
| |
[BZ #21788]
* locales/cy_GB (LC_ADDRESS): Add country_post.
* locales/hy_AM (LC_ADDRESS): Add country_post.
* locales/iu_CA (LC_ADDRESS): Add country_post.
* locales/nan_TW@latin (LC_ADDRESS): Add country_post.
* locales/ps_AF (LC_ADDRESS): Add country_post.
* locales/sr_RS (LC_ADDRESS): Fix country_post.
* locales/sr_RS@latin (LC_ADDRESS): Fix country_post.
* locales/zh_TW (LC_ADDRESS): Fix country_post.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
country_num in nr_ZA
[BZ #21784]
* locales/bo_CN (LC_ADDRESS): Fix inconsistency in country_isbn.
* locales/fa_IR (LC_ADDRESS): Fix inconsistency in country_isbn.
* locales/nan_TW@latin (LC_ADDRESS): Fix inconsistency in country_isbn.
* locales/nr_ZA (LC_ADDRESS): Add country_num.
* locales/sr_RS (LC_ADDRESS): Fix inconsistency in country_isbn.
* locales/sr_RS@latin (LC_ADDRESS): Fix inconsistency in country_isbn.
* locales/ug_CN (LC_ADDRESS): Fix inconsistency in country_isbn.
* locales/yue_HK (LC_ADDRESS): Fix inconsistency in country_isbn.
* locales/zh_CN (LC_ADDRESS): Fix inconsistency in country_isbn.
* locales/zh_TW (LC_ADDRESS): Fix inconsistency in country_isbn.
|
|
|
|
|
|
|
|
|
|
| |
Since there are no multiarch versions of memmove_chk and memset_chk,
test multiarch versions of memmove_chk and memset_chk only in libc.so.
[BZ #21741]
* sysdeps/i386/i686/multiarch/ifunc-impl-list.c
(__libc_ifunc_impl_list): Test memmove_chk and memset_chk only
in libc.so.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
commit 524a8ef2ad76af8ac049293d993a1856b0d888fb
Author: Nick Alcock <nick.alcock@oracle.com>
Date: Mon Dec 26 10:08:57 2016 +0100
PLT avoidance for __stack_chk_fail [BZ #7065]
Add a hidden __stack_chk_fail_local alias to libc.so,
and make sure that on targets which use __stack_chk_fail,
this does not introduce a local PLT reference into libc.so.
which unconditionally added
strong_alias (__stack_chk_fail, __stack_chk_fail_local)
defines __stack_chk_fail_local as an alias of __stack_chk_fail in libc.a.
There is no need to add stack_chk_fail_local.o to libc.a. We only need
to add stack_chk_fail_local.oS to libc_nonshared.a.
Tested on x86-64:
[hjl@gnu-skl-1 build-x86_64-linux]$ nm libc.a | grep __stack_chk_fail
0000000000000000 T __stack_chk_fail
0000000000000000 T __stack_chk_fail_local
[hjl@gnu-skl-1 build-x86_64-linux]$ nm libc_nonshared.a | grep __stack_chk_fail_local
0000000000000000 T __stack_chk_fail_local
[hjl@gnu-skl-1 build-x86_64-linux]$
[BZ #21740]
* debug/Makefile (elide-routines.o): New.
|
|
|
|
|
|
|
|
|
| |
Follow up to commit 512d245bc30cca893db6979f42f058e734f345c3.
* sysdeps/unix/sysv/linux/aarch64/dl-procinfo.c:
(_dl_aarch64_cap_flags): Update.
* sysdeps/unix/sysv/linux/aarch64/dl-procinfo.h
(_DL_HWCAP_COUNT, _DL_HWCAP_LAST): Update.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
[BZ #21783 ]
* locales/ar_AE (LC_TELEPHONE): Add int_select.
* locales/ar_BH (LC_TELEPHONE): Fix int_select.
* locales/ar_IQ (LC_TELEPHONE): Add int_select.
* locales/es_CU (LC_TELEPHONE): Add int_select.
* locales/ja_JP (LC_TELEPHONE): Add int_select.
* locales/lg_UG (LC_TELEPHONE): Fix int_select.
* locales/mn_MN (LC_TELEPHONE): Fix int_select.
* locales/om_KE (LC_TELEPHONE): Add int_select.
* locales/sm_WS (LC_TELEPHONE): Fix int_select.
|
|
|
|
|
|
| |
Partially revert ea01a4da219011f4a4db97eef3c5bfc2f6e8fc6b
"aarch64: Add hwcap string routines" because _dl_procinfo cannot
be future proof and avoid oob access in _dl_hwcap_string.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The patch proposed by Peter Bergner [1] to libgcc in order to fix
[BZ #21707] adds a dependency on a symbol provided by the loader,
forcing the loader to be linked to tests after libgcc was linked.
It also requires to read the thread pointer during IRELA relocations.
Tested on powerpc, powerpc64, powerpc64le, s390x and x86_64.
[1] https://sourceware.org/ml/libc-alpha/2017-06/msg01383.html
[BZ #21707]
* csu/libc-start.c (LIBC_START_MAIN): Perform IREL{,A}
relocations before or after initializing the TCB on statically
linked executables. That's a per-architecture definition.
* elf/rtld.c (dl_main): Add a comment about thread-local
variables initialization.
* sysdeps/generic/libc-start.h: New file. Define
ARCH_APPLY_IREL and ARCH_SETUP_IREL.
* sysdeps/powerpc/Makefile:
[$(subdir) = elf && $(multi-arch) != no] (tests-static-internal): Add tst-tlsifunc-static.
[$(subdir) = elf && $(multi-arch) != no && $(build-shared) == yes]
(tests-internal): Add tst-tlsifunc.
* sysdeps/powerpc/tst-tlsifunc.c: New file.
* sysdeps/powerpc/tst-tlsifunc-static.c: Likewise.
* sysdeps/powerpc/powerpc64le/Makefile (f128-loader-link): New
variable.
[$(subdir) = math] (test-float128% test-ifloat128%): Force
linking to the loader after linking to libgcc.
[$(subdir) = wcsmbs || $(subdir) = stdlib] (bug-strtod bug-strtod2)
(bug-strtod2 tst-strtod-round tst-wcstod-round tst-strtod6 tst-strrom)
(tst-strfrom-locale strfrom-skeleton): Likewise.
* sysdeps/unix/sysv/linux/powerpc/libc-start.h: New file. Define
ARCH_APPLY_IREL and ARCH_SETUP_IREL.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* nss/nss_test.h: New.
* nss/nss_test1.h: Rewrite to use test-provided data. Add group
tests. Parameterize to allow multiple instances.
* nss/nss_test2.h: New. Second instance.
* nss/nss_test.ver: New.
* nss/nss_test1.c: Update to use new framework.
* nss/nss_test2.c: New.
* nss/nss_test3.c: New.
* nss/nss_test4.c: New.
* nss/nss_test5.c: New.
* nss/Makefile: Build new tests.
* shlib-versions: Add libnss_test2.
|
|
|
|
|
|
|
|
|
|
|
|
| |
This patch fixes the argument passing for exit syscall after
the clone function returns on hppa. This fixes misc/tst-clone2
on hppa-linux-gnu.
Checked misc/tst-clone2 on hppa-linux-gnu.
[BZ #21512]
* sysdeps/unix/sysv/linux/hppa/clone.S (__clone): Fix argument
passing to syscall exit.
|
|
|
|
|
| |
[BZ #21770]
* locales/li_NL: Fix country_name.
|
|
|
|
|
|
|
|
| |
yesstr and nostr for to_TO locale
Suggested by Rafał Lużyński.
* locales/to_TO (LC_MESSAGES): Use U+02BB instead of U+0027 in yesstr and nostr
|
|
|
|
|
|
|
| |
yY should be added there as in (almost) all other locales
(Suggested by Rafał Lużyński).
* locales/agr_PE (LC_MESSAGES): Add yY to yesexpr.
|