Compare commits

..

2 Commits

Author SHA1 Message Date
klzgrad
077d788a4a Fix arm64 build requiring glibc 2.29
https://bugs.chromium.org/p/chromium/issues/detail?id=1309965#c5
2022-10-06 00:14:47 +08:00
klzgrad
2a968556c4
Update README.md
Fix #323.
2022-10-05 20:00:38 +08:00
4 changed files with 6 additions and 4 deletions

View File

@ -124,7 +124,7 @@ jobs:
uses: actions/cache@v2
with:
path: src/out/sysroot-build/bullseye/bullseye_*
key: sysroot-linux-${{ matrix.arch }}-${{ hashFiles('CHROMIUM_VERSION') }}-v${{ env.CACHE_EPOCH }}
key: sysroot-linux-${{ matrix.arch }}-${{ hashFiles('CHROMIUM_VERSION') }}-fixbugrefresh-v${{ env.CACHE_EPOCH }}
- id: ccache-timestamp
run: echo "::set-output name=date::$(date +%s)"
- name: Cache ccache files

View File

@ -52,7 +52,9 @@ Example Caddyfile (replace `user` and `pass` accordingly):
hide_via
probe_resistance
}
file_server { root /var/www/html }
file_server {
root /var/www/html
}
}
```
`:443` must appear first for this Caddyfile to work. For more advanced usage consider using [JSON for Caddy 2's config](https://caddyserver.com/docs/json/).

View File

@ -71,7 +71,7 @@ for line in stdout.decode("utf-8").split('\n'):
continue
version = [int(part) for part in match.group(1).split('.')]
if version < MAX_ALLOWED_GLIBC_VERSION:
if version <= MAX_ALLOWED_GLIBC_VERSION:
old_supported_version = supported_version.get(base_name, ([-1], -1))
supported_version[base_name] = max((version, index), old_supported_version)
if is_default:

View File

@ -427,7 +427,7 @@ HacksAndPatchesARM64() {
HacksAndPatchesCommon aarch64 linux-gnu true
# Skip reversion_glibc.py. Glibc is compiled in a way where many libm math
# functions do not have compatibility symbols for versions <= 2.17.
# ReversionGlibc aarch64 linux-gnu
ReversionGlibc aarch64 linux-gnu
}
HacksAndPatchesARMEL() {