mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
Compare commits
No commits in common. "077d788a4a326bc3d3f3992af425eccc9d3be6d9" and "90ceaaba8d9c4438739888c0c05258dd2f05dd43" have entirely different histories.
077d788a4a
...
90ceaaba8d
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@ -124,7 +124,7 @@ jobs:
|
|||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
path: src/out/sysroot-build/bullseye/bullseye_*
|
path: src/out/sysroot-build/bullseye/bullseye_*
|
||||||
key: sysroot-linux-${{ matrix.arch }}-${{ hashFiles('CHROMIUM_VERSION') }}-fixbugrefresh-v${{ env.CACHE_EPOCH }}
|
key: sysroot-linux-${{ matrix.arch }}-${{ hashFiles('CHROMIUM_VERSION') }}-v${{ env.CACHE_EPOCH }}
|
||||||
- id: ccache-timestamp
|
- id: ccache-timestamp
|
||||||
run: echo "::set-output name=date::$(date +%s)"
|
run: echo "::set-output name=date::$(date +%s)"
|
||||||
- name: Cache ccache files
|
- name: Cache ccache files
|
||||||
|
@ -52,9 +52,7 @@ Example Caddyfile (replace `user` and `pass` accordingly):
|
|||||||
hide_via
|
hide_via
|
||||||
probe_resistance
|
probe_resistance
|
||||||
}
|
}
|
||||||
file_server {
|
file_server { root /var/www/html }
|
||||||
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/).
|
`: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/).
|
||||||
|
@ -71,7 +71,7 @@ for line in stdout.decode("utf-8").split('\n'):
|
|||||||
continue
|
continue
|
||||||
version = [int(part) for part in match.group(1).split('.')]
|
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))
|
old_supported_version = supported_version.get(base_name, ([-1], -1))
|
||||||
supported_version[base_name] = max((version, index), old_supported_version)
|
supported_version[base_name] = max((version, index), old_supported_version)
|
||||||
if is_default:
|
if is_default:
|
||||||
|
@ -427,7 +427,7 @@ HacksAndPatchesARM64() {
|
|||||||
HacksAndPatchesCommon aarch64 linux-gnu true
|
HacksAndPatchesCommon aarch64 linux-gnu true
|
||||||
# Skip reversion_glibc.py. Glibc is compiled in a way where many libm math
|
# Skip reversion_glibc.py. Glibc is compiled in a way where many libm math
|
||||||
# functions do not have compatibility symbols for versions <= 2.17.
|
# functions do not have compatibility symbols for versions <= 2.17.
|
||||||
ReversionGlibc aarch64 linux-gnu
|
# ReversionGlibc aarch64 linux-gnu
|
||||||
}
|
}
|
||||||
|
|
||||||
HacksAndPatchesARMEL() {
|
HacksAndPatchesARMEL() {
|
||||||
|
Loading…
Reference in New Issue
Block a user