Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add local uClibc-locale-030818.tgz file #50

Merged
merged 2 commits into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions extra/Configs/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -807,11 +807,12 @@ config UCLIBC_DOWNLOAD_PREGENERATED_LOCALE_DATA
default n
help
If you would like the build process to use 'wget'/'curl' to automatically
download the pregenerated locale data, enable this option. Otherwise
you will need to obtain the locale data yourself from:
http://www.uclibc.org/downloads/uClibc-locale-030818.tgz
and place the uClibc-locale-030818.tgz tarball in the extra/locale/
directory.
download the pregenerated locale data from http://www.uclibc.org/downloads/,
enable this option. Otherwise a local tarball will be copied
(from extra/locale/artefact/).
If you wan't to use a custom version of locale data, you can place
your own tarball in extra/locale/. It will take precedence
over the one in artefact/ directory.

Go ahead and make life easy for yourself... Answer Y.

Expand Down
2 changes: 2 additions & 0 deletions extra/locale/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ $(locale_OUT)/locale_collate.h: $(locale_OUT)/gen_collate $(locale_OUT)/locale_t
$(locale_OUT)/$(LOCALE_DATA_FILENAME):
ifeq ($(UCLIBC_DOWNLOAD_PREGENERATED_LOCALE_DATA),y)
( cd $(dir $@); $(GET) https://www.uclibc.org/downloads/$(notdir $@) )
else
cp --no-clobber $(locale_DIR)/artefact/$(LOCALE_DATA_FILENAME) $(locale_OUT)
endif

ifeq ($(UCLIBC_PREGENERATED_LOCALE_DATA),y)
Expand Down
Binary file added extra/locale/artefact/uClibc-locale-030818.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion klee-premade-configs/x86_64/config
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ UCLIBC_HAS_CTYPE_UNSAFE=y
UCLIBC_HAS_WCHAR=y
UCLIBC_HAS_LOCALE=y
UCLIBC_PREGENERATED_LOCALE_DATA=y
UCLIBC_DOWNLOAD_PREGENERATED_LOCALE_DATA=y
# UCLIBC_DOWNLOAD_PREGENERATED_LOCALE_DATA is not set
UCLIBC_HAS_XLOCALE=y
# UCLIBC_HAS_HEXADECIMAL_FLOATS is not set
# UCLIBC_HAS_GLIBC_DIGIT_GROUPING is not set
Expand Down
Loading