Skip to content
This repository has been archived by the owner on Jan 20, 2022. It is now read-only.

Commit

Permalink
[LibOS] Add glibc 2.34 and make it default
Browse files Browse the repository at this point in the history
And completely purge all older glibc versions.

Signed-off-by: Juro Bystricky <[email protected]>
  • Loading branch information
jurobystricky authored and mkow committed Aug 30, 2021
1 parent 42afa02 commit 5ab4b19
Show file tree
Hide file tree
Showing 9 changed files with 53 additions and 466 deletions.
2 changes: 1 addition & 1 deletion .ci/lib/config-ubuntu18.04.jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,2 1,2 @@
env.GLIBC_VERSION = '2.33'
env.GLIBC_VERSION = '2.34'
env.PYTHONVERSION = 'python3.6'
2 changes: 1 addition & 1 deletion .ci/lib/config-ubuntu20.04.jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,2 1,2 @@
env.GLIBC_VERSION = '2.33'
env.GLIBC_VERSION = '2.34'
env.PYTHONVERSION = 'python3.8'
19 changes: 0 additions & 19 deletions .ci/linux-direct-ubuntu18.04-gcc-glibc231.jenkinsfile

This file was deleted.

9 changes: 3 additions & 6 deletions LibOS/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 19,7 @@ GNU_MIRRORS ?= https://ftp.gnu.org/gnu/ \
#
# Override CC, CXX, AS in case we're compiling the rest of the project with clang.
# ------------------------------------------------------------------------------------------------
GLIBC_VERSION ?= 2.33
GLIBC_VERSION ?= 2.34
GLIBC_SRC = glibc-$(GLIBC_VERSION)
GLIBC_HASH = $(firstword $(shell grep $(GLIBC_SRC).tar.gz glibc-checksums))
SHIM_DIR = shim
Expand Down Expand Up @@ -94,11 94,8 @@ $(foreach lib,$(GLIBC_TARGET),$(eval $(call LN_SF_TO_RUNTIME_DIR_template,$(lib)
GLIBC_PATCHES = \
glibc-patches/$(GLIBC_SRC).patch

GLIBC_PATCHES_2.31 = \
glibc-patches/hp-timing-2.31.patch

GLIBC_PATCHES_2.33 = \
glibc-patches/hp-timing-2.33.patch
GLIBC_PATCHES_2.34 = \
glibc-patches/hp-timing-2.34.patch

GLIBC_PATCHES = $(GLIBC_PATCHES_$(GLIBC_VERSION))

Expand Down
3 changes: 1 addition & 2 deletions LibOS/glibc-checksums
Original file line number Diff line number Diff line change
@@ -1,2 1 @@
cb2d64fb808affff30d8a99a85de9d2aa67dc2cbac4ae99af4500d6cfea2bda7 glibc-2.31.tar.gz
ad7dbed6b0cde9ddc90e84856da7e2c1f976a5e791cdee947d8dbb0392fc76cf glibc-2.33.tar.gz
255b7632746b5fdd478cb7b36bebd1ec1f92c2b552ee364c940f48eb38d07f62 glibc-2.34.tar.gz
Loading

0 comments on commit 5ab4b19

Please sign in to comment.