chrome issue 716044

前言

无。


环境搭建

每次都要开一个vultr太麻烦了,用镜像整了个centos8虚拟机,换源然后挂代理搭建环境试试。

在/etc/profile中添加代理:

1
2
export http_proxy="192.168.88.1:1080"
export https_proxy="192.168.88.1:1080"

再source一下完成配置。

连上代理没什么问题,然后再在官网上找到这个issue,找到对应的补丁,回滚到上个版本:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
yum groupinstall "Development Tools"
yum install python2
ln -s /usr/bin/python2 /usr/bin/python
yum install -y git gdb bzip2 wget
cd ~
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
export PATH=`pwd`/depot_tools:"$PATH"
mkdir v8
cd v8
fetch v8
cd ~/v8/v8
git reset --hard 40d01184a18a599392691c0eb931720628a44e80 # 漏洞分支
gclient sync
./tools/dev/v8gen.py x64.release
ninja -C ./out.gn/x64.release # Release version
./tools/dev/v8gen.py x64.debug
ninja -C ./out.gn/x64.debug # Debug version

参考文章

https://www.anquanke.com/post/id/225443#h3-8


chrome issue 716044
http://yoursite.com/2021/07/28/chrome-issue-716044/
作者
Aluvion
发布于
2021年7月28日
许可协议