Skip to content

Commit

Permalink
www/deno: Update to 1.31.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaelUrankar committed Feb 26, 2023
1 parent b58810c commit b5b6d5a
Show file tree
Hide file tree
Showing 29 changed files with 687 additions and 642 deletions.
366 changes: 190 additions & 176 deletions www/deno/Makefile

Large diffs are not rendered by default.

728 changes: 379 additions & 349 deletions www/deno/distinfo

Large diffs are not rendered by default.

20 changes: 9 additions & 11 deletions www/deno/files/patch-cargo-crates_v8_build.rs
@@ -1,13 +1,11 @@
--- cargo-crates/v8-0.60.1/build.rs.orig 2020-07-22 09:53:02 UTC
+++ cargo-crates/v8-0.60.1/build.rs
@@ -130,6 +132,10 @@ fn platform() -> &'static str {
#[cfg(target_os = "macos")]
{
"mac"
+ }
--- cargo-crates/v8-0.63.0/build.rs.orig 2020-07-22 09:53:02 UTC
+++ cargo-crates/v8-0.63.0/build.rs
@@ -255,6 +255,8 @@ fn platform() -> String {
let os = "mac";
#[cfg(target_os = "windows")]
let os = "windows";
+ #[cfg(target_os = "freebsd")]
+ {
+ "freebsd"
}
}
+ let os = "freebsd";

#[cfg(target_arch = "x86_64")]
let arch = "amd64";
4 changes: 2 additions & 2 deletions www/deno/files/patch-cargo-crates_v8_build_config_BUILD.gn
@@ -1,5 +1,5 @@
--- cargo-crates/v8-0.60.1/build/config/BUILD.gn.orig 2021-01-19 00:12:27 UTC
+++ cargo-crates/v8-0.60.1/build/config/BUILD.gn
--- cargo-crates/v8-0.63.0/build/config/BUILD.gn.orig 2021-01-19 00:12:27 UTC
+++ cargo-crates/v8-0.63.0/build/config/BUILD.gn
@@ -133,7 +133,7 @@ config("debug") {
# builds, and we have to tell it to turn it off.
defines += [ "_HAS_ITERATOR_DEBUGGING=0" ]
Expand Down
@@ -1,5 +1,5 @@
--- cargo-crates/v8-0.60.1/build/config/BUILDCONFIG.gn.orig 2021-01-19 00:12:27 UTC
+++ cargo-crates/v8-0.60.1/build/config/BUILDCONFIG.gn
--- cargo-crates/v8-0.63.0/build/config/BUILDCONFIG.gn.orig 2021-01-19 00:12:27 UTC
+++ cargo-crates/v8-0.63.0/build/config/BUILDCONFIG.gn
@@ -131,7 +131,7 @@ declare_args() {
is_official_build = false

Expand Down
65 changes: 30 additions & 35 deletions www/deno/files/patch-cargo-crates_v8_build_config_compiler_BUILD.gn
@@ -1,15 +1,15 @@
--- cargo-crates/v8-0.60.1/build/config/compiler/BUILD.gn.orig 1973-11-29 22:33:09 UTC
+++ cargo-crates/v8-0.60.1/build/config/compiler/BUILD.gn
@@ -137,7 +137,7 @@ declare_args() {
--- cargo-crates/v8-0.63.0/build/config/compiler/BUILD.gn.orig 1973-11-29 22:33:09 UTC
+++ cargo-crates/v8-0.63.0/build/config/compiler/BUILD.gn
@@ -135,7 +135,7 @@ declare_args() {
#
# TODO(crbug.com/1131993): Enabling this when 'is_android' is true breaks
# content_shell_test_apk on both ARM and x86.
- init_stack_vars = !is_android
+ init_stack_vars = !is_bsd && !is_android
# TODO(crbug.com/1131993): This regresses binary size by ~1MB on Android and
# needs to be evaluated before enabling it there as well.
- init_stack_vars = !(is_android && is_official_build)
+ init_stack_vars = !is_bsd && !(is_android && is_official_build)

# This argument is to control whether enabling text section splitting in the
# final binary. When enabled, the separated text sections with prefix
@@ -245,7 +245,7 @@ config("no_unresolved_symbols") {
@@ -238,7 +238,7 @@ config("no_unresolved_symbols") {
# Compiler instrumentation can introduce dependencies in DSOs to symbols in
# the executable they are loaded into, so they are unresolved at link-time.
config("no_unresolved_symbols") {
Expand All @@ -18,7 +18,7 @@
(is_linux || is_chromeos || is_android || is_fuchsia)) {
ldflags = [
"-Wl,-z,defs",
@@ -366,7 +366,7 @@ config("compiler") {
@@ -356,7 +356,7 @@ config("compiler") {
}

# Linker warnings.
Expand All @@ -27,52 +27,47 @@
current_os != "zos") {
ldflags += [ "-Wl,--fatal-warnings" ]
}
@@ -536,7 +536,7 @@ config("compiler") {
@@ -543,7 +543,7 @@ config("compiler") {
ldflags += [ "-Wl,-z,keep-text-section-prefix" ]
}

- if (is_clang && !is_nacl && current_os != "zos") {
+ if (is_clang && !is_bsd && !is_nacl && current_os != "zos") {
cflags += [ "-fcrash-diagnostics-dir=" + clang_diagnostic_dir ]
if (save_reproducers_on_lld_crash && use_lld) {
ldflags += [
@@ -827,7 +827,7 @@ config("compiler") {
# lldb doesn't have the needed changes yet.
# * Fuchsia isn't supported as zxdb doesn't support simple template names yet.
# TODO(crbug.com/1379070): Remove if the upstream default ever changes.
- if (is_clang && !is_nacl && !is_win && !is_apple && !is_fuchsia) {
+ if (is_clang && !is_nacl && !is_win && !is_apple && !is_fuchsia && !is_bsd) {
cflags_cc += [ "-gsimple-template-names" ]
}

# TODO(hans): Remove this once Clang generates better optimized debug info
@@ -931,7 +931,7 @@ config("compiler_cpu_abi") {
@@ -1002,7 +1002,7 @@ config("compiler_cpu_abi") {
cflags += [ "-mtune=$arm_tune" ]
}
} else if (current_cpu == "arm64") {
- if (is_clang && !is_android && !is_nacl && !is_fuchsia) {
+ if (is_clang && !is_bsd && !is_android && !is_nacl && !is_fuchsia) {
- if (is_clang && !is_android && !is_nacl && !is_fuchsia &&
+ if (is_clang && !is_bsd && !is_android && !is_nacl && !is_fuchsia &&
!(is_chromeos_lacros && is_chromeos_device)) {
cflags += [ "--target=aarch64-linux-gnu" ]
ldflags += [ "--target=aarch64-linux-gnu" ]
}
@@ -1263,9 +1263,9 @@ config("compiler_deterministic") {
@@ -1347,10 +1347,10 @@ config("compiler_deterministic") {
} else {
# -ffile-compilation-dir is an alias for both -fdebug-compilation-dir=
# and -fcoverage-compilation-dir=.
- cflags += [ "-ffile-compilation-dir=." ]
+# cflags += [ "-ffile-compilation-dir=." ]
swiftflags += [ "-file-compilation-dir=." ]
}
- if (!is_win) {
+ if (!is_win && !is_bsd) {
# We don't use clang -cc1as on Windows (yet? https://crbug.com/762167)
asmflags = [ "-Wa,-fdebug-compilation-dir,." ]
}
@@ -1559,12 +1559,12 @@ config("default_warnings") {
cflags += [ "-Wno-builtin-assume-aligned-alignment" ]
}

- if (!is_nacl && clang_major_version >= 15) {
+ if (!is_nacl && !is_bsd && clang_major_version >= 15) {
# TODO(https://crbug.com/1300731) Clean up and enable.
cflags += [ "-Wno-unqualified-std-cast-call" ]
}

- if (!is_nacl && !(is_chromeos ||
+ if (!is_bsd && !is_nacl && !(is_chromeos ||
default_toolchain == "//build/toolchain/cros:target") &&
clang_major_version >= 15) {
# TODO(https://crbug.com/1316298): Re-enable once test failure is figured out
@@ -1865,7 +1865,7 @@ config("thin_archive") {
@@ -1911,7 +1911,7 @@ config("thin_archive") {
# archives.
# TODO(crbug.com/1221615): Enable on is_apple if use_lld once that no longer
# confuses lldb.
Expand All @@ -81,16 +76,16 @@
arflags = [ "-T" ]
} else if (is_win && use_lld) {
arflags = [ "/llvmlibthin" ]
@@ -2366,7 +2366,7 @@ config("symbols") {
@@ -2440,7 +2440,7 @@ config("symbols") {
# flag, so we can use use -g1 for pnacl and nacl-clang compiles.
# gcc nacl is is_nacl && !is_clang, pnacl and nacl-clang are && is_clang.
if ((!is_nacl || is_clang) && current_os != "zos") {
- cflags += [ "-g2" ]
+ cflags += [ "-g0" ]
}

if (!is_nacl && is_clang && !is_tsan && !is_asan &&
@@ -2405,7 +2405,7 @@ config("symbols") {
if (!is_nacl && is_clang && !is_tsan && !is_asan) {
@@ -2475,7 +2475,7 @@ config("symbols") {
# DWARF info may be corrupt; offsets in a range list entry are in different
# sections" there. Maybe just a bug in nacl_switch_32.S.
_enable_gdb_index =
Expand Down
14 changes: 7 additions & 7 deletions www/deno/files/patch-cargo-crates_v8_build_config_features.gni
@@ -1,11 +1,11 @@
--- cargo-crates/v8-0.60.1/build/config/features.gni.orig 2020-08-08 19:24:36 UTC
+++ cargo-crates/v8-0.60.1/build/config/features.gni
@@ -26,7 +26,7 @@ declare_args() {
proprietary_codecs = is_chrome_branded || is_chromecast
--- cargo-crates/v8-0.63.0/build/config/features.gni.orig 2020-08-08 19:24:36 UTC
+++ cargo-crates/v8-0.63.0/build/config/features.gni
@@ -31,7 +31,7 @@ declare_args() {
proprietary_codecs = is_chrome_branded || is_castos || is_cast_android

# libudev usage. This currently only affects the content layer.
- use_udev = (is_linux || is_chromeos) && !is_chromecast
+ use_udev = (is_linux || is_chromeos) && !is_chromecast && !is_bsd
- use_udev = (is_linux && !is_castos) || is_chromeos
+ use_udev = !is_bsd && ((is_linux && !is_castos) || is_chromeos)

use_dbus = (is_linux || is_chromeos) && !is_chromecast
use_dbus = is_linux || is_chromeos

@@ -1,5 +1,5 @@
--- cargo-crates/v8-0.60.1/build/config/freetype/freetype.gni.orig 2020-06-26 16:27:54 UTC
+++ cargo-crates/v8-0.60.1/build/config/freetype/freetype.gni
--- cargo-crates/v8-0.63.0/build/config/freetype/freetype.gni.orig 2020-06-26 16:27:54 UTC
+++ cargo-crates/v8-0.63.0/build/config/freetype/freetype.gni
@@ -10,5 +10,5 @@ declare_args() {
# than version 2.7.1 and have color bitmap support compiled in. WARNING:
# System FreeType configurations other than as described WILL INTRODUCE TEXT
Expand Down
@@ -1,5 +1,5 @@
--- cargo-crates/v8-0.60.1/build/config/linux/BUILD.gn.orig 2020-06-26 16:27:54 UTC
+++ cargo-crates/v8-0.60.1/build/config/linux/BUILD.gn
--- cargo-crates/v8-0.63.0/build/config/linux/BUILD.gn.orig 2020-06-26 16:27:54 UTC
+++ cargo-crates/v8-0.63.0/build/config/linux/BUILD.gn
@@ -41,7 +41,7 @@ config("runtime_library") {
}

Expand Down
@@ -1,5 +1,5 @@
--- cargo-crates/v8-0.60.1/build/config/linux/pkg-config.py.orig 2020-06-26 16:27:54 UTC
+++ cargo-crates/v8-0.60.1/build/config/linux/pkg-config.py
--- cargo-crates/v8-0.63.0/build/config/linux/pkg-config.py.orig 2020-06-26 16:27:54 UTC
+++ cargo-crates/v8-0.63.0/build/config/linux/pkg-config.py
@@ -59,8 +59,12 @@ def SetConfigPath(options):
print("You must specify an architecture via -a if using a sysroot.")
sys.exit(1)
Expand Down
4 changes: 2 additions & 2 deletions www/deno/files/patch-cargo-crates_v8_build_config_sysroot.gni
@@ -1,5 +1,5 @@
--- cargo-crates/v8-0.60.1/build/config/sysroot.gni.orig 2020-06-26 16:27:54 UTC
+++ cargo-crates/v8-0.60.1/build/config/sysroot.gni
--- cargo-crates/v8-0.63.0/build/config/sysroot.gni.orig 2020-06-26 16:27:54 UTC
+++ cargo-crates/v8-0.63.0/build/config/sysroot.gni
@@ -21,9 +21,9 @@ declare_args() {

# Controls default is_linux sysroot. If set to true, and sysroot
Expand Down
@@ -1,5 +1,5 @@
--- cargo-crates/v8-0.60.1/build/detect_host_arch.py.orig 2020-06-26 16:27:54 UTC
+++ cargo-crates/v8-0.60.1/build/detect_host_arch.py
--- cargo-crates/v8-0.63.0/build/detect_host_arch.py.orig 2020-06-26 16:27:54 UTC
+++ cargo-crates/v8-0.63.0/build/detect_host_arch.py
@@ -21,6 +21,8 @@ def HostArch():
host_arch = 'ia32'
elif host_arch in ['x86_64', 'amd64']:
Expand Down
4 changes: 2 additions & 2 deletions www/deno/files/patch-cargo-crates_v8_build_gn__run__binary.py
@@ -1,5 +1,5 @@
--- cargo-crates/v8-0.60.1/build/gn_run_binary.py.orig 2020-06-26 16:27:54 UTC
+++ cargo-crates/v8-0.60.1/build/gn_run_binary.py
--- cargo-crates/v8-0.63.0/build/gn_run_binary.py.orig 2020-06-26 16:27:54 UTC
+++ cargo-crates/v8-0.63.0/build/gn_run_binary.py
@@ -24,7 +24,7 @@ if not os.path.isabs(path):
# The rest of the arguments are passed directly to the executable.
args = [path] + sys.argv[2:]
Expand Down
4 changes: 2 additions & 2 deletions www/deno/files/patch-cargo-crates_v8_build_linux_chrome.map
@@ -1,5 +1,5 @@
--- cargo-crates/v8-0.60.1/build/linux/chrome.map.orig 2021-02-25 20:45:34 UTC
+++ cargo-crates/v8-0.60.1/build/linux/chrome.map
--- cargo-crates/v8-0.63.0/build/linux/chrome.map.orig 2021-02-25 20:45:34 UTC
+++ cargo-crates/v8-0.63.0/build/linux/chrome.map
@@ -1,4 +1,7 @@
{
+local:
Expand Down
@@ -1,5 +1,5 @@
--- cargo-crates/v8-0.60.1/build/linux/libpci/BUILD.gn.orig 2020-06-26 16:27:54 UTC
+++ cargo-crates/v8-0.60.1/build/linux/libpci/BUILD.gn
--- cargo-crates/v8-0.63.0/build/linux/libpci/BUILD.gn.orig 2020-06-26 16:27:54 UTC
+++ cargo-crates/v8-0.63.0/build/linux/libpci/BUILD.gn
@@ -3,20 +3,36 @@
# found in the LICENSE file.

Expand Down
@@ -1,5 +1,5 @@
--- cargo-crates/v8-0.60.1/build/linux/unbundle/libusb.gn.orig 2020-07-22 09:52:14 UTC
+++ cargo-crates/v8-0.60.1/build/linux/unbundle/libusb.gn
--- cargo-crates/v8-0.63.0/build/linux/unbundle/libusb.gn.orig 2020-07-22 09:52:14 UTC
+++ cargo-crates/v8-0.63.0/build/linux/unbundle/libusb.gn
@@ -0,0 +1,24 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
Expand Down
@@ -1,5 +1,5 @@
--- cargo-crates/v8-0.60.1/build/linux/unbundle/replace_gn_files.py.orig 2020-06-26 16:27:54 UTC
+++ cargo-crates/v8-0.60.1/build/linux/unbundle/replace_gn_files.py
--- cargo-crates/v8-0.63.0/build/linux/unbundle/replace_gn_files.py.orig 2020-06-26 16:27:54 UTC
+++ cargo-crates/v8-0.63.0/build/linux/unbundle/replace_gn_files.py
@@ -27,6 +27,7 @@ REPLACEMENTS = {
'libevent': 'base/third_party/libevent/BUILD.gn',
'libjpeg': 'third_party/libjpeg.gni',
Expand Down
@@ -1,5 +1,5 @@
--- cargo-crates/v8-0.60.1/build/toolchain/gcc_toolchain.gni.orig 1970-01-01 01:00:00 UTC
+++ cargo-crates/v8-0.60.1/build/toolchain/gcc_toolchain.gni
--- cargo-crates/v8-0.63.0/build/toolchain/gcc_toolchain.gni.orig 1970-01-01 01:00:00 UTC
+++ cargo-crates/v8-0.63.0/build/toolchain/gcc_toolchain.gni
@@ -53,6 +53,11 @@ if (enable_resource_allowlist_generation) {
"enable_resource_allowlist_generation=true does not work for target_os=$target_os")
}
Expand All @@ -12,11 +12,10 @@
# This template defines a toolchain for something that works like gcc
# (including clang).
#
@@ -786,13 +791,23 @@ template("clang_toolchain") {
# use_gold too.
template("clang_toolchain") {
gcc_toolchain(target_name) {
- prefix = rebase_path("$clang_base_path/bin", root_build_dir)
@@ -813,12 +818,23 @@ template("clang_toolchain") {
prefix = rebase_path(_path, root_build_dir)
}

- cc = "${prefix}/clang"
- cxx = "${prefix}/clang++"
- ld = cxx
Expand Down
@@ -1,5 +1,5 @@
--- cargo-crates/v8-0.60.1/build/toolchain/get_concurrent_links.py.orig 2020-06-26 16:27:54 UTC
+++ cargo-crates/v8-0.60.1/build/toolchain/get_concurrent_links.py
--- cargo-crates/v8-0.63.0/build/toolchain/get_concurrent_links.py.orig 2020-06-26 16:27:54 UTC
+++ cargo-crates/v8-0.63.0/build/toolchain/get_concurrent_links.py
@@ -48,6 +48,14 @@ def _GetTotalMemoryInBytes():
return int(subprocess.check_output(['sysctl', '-n', 'hw.memsize']))
except Exception:
Expand Down
@@ -1,5 +1,5 @@
--- cargo-crates/v8-0.60.1/buildtools/third_party/libc++/BUILD.gn.orig 2020-07-22 17:57:09 UTC
+++ cargo-crates/v8-0.60.1/buildtools/third_party/libc++/BUILD.gn
--- cargo-crates/v8-0.63.0/buildtools/third_party/libc++/BUILD.gn.orig 2020-07-22 17:57:09 UTC
+++ cargo-crates/v8-0.63.0/buildtools/third_party/libc++/BUILD.gn
@@ -23,7 +23,7 @@ config("config") {
"-std:c++20",
]
Expand Down
@@ -1,5 +1,5 @@
--- cargo-crates/v8-0.60.1/third_party/zlib/BUILD.gn.orig 2022-11-20 11:42:33 UTC
+++ cargo-crates/v8-0.60.1/third_party/zlib/BUILD.gn
--- cargo-crates/v8-0.63.0/third_party/zlib/BUILD.gn.orig 2022-11-20 11:42:33 UTC
+++ cargo-crates/v8-0.63.0/third_party/zlib/BUILD.gn
@@ -119,6 +119,8 @@ if (use_arm_neon_optimizations) {
defines = [ "CRC32_ARMV8_CRC32" ]
if (is_android) {
Expand Down
@@ -1,5 +1,5 @@
--- cargo-crates/v8-0.60.1/third_party/zlib/cpu_features.c.orig 2022-11-20 11:40:38 UTC
+++ cargo-crates/v8-0.60.1/third_party/zlib/cpu_features.c
--- cargo-crates/v8-0.63.0/third_party/zlib/cpu_features.c.orig 2022-11-20 11:40:38 UTC
+++ cargo-crates/v8-0.63.0/third_party/zlib/cpu_features.c
@@ -31,11 +31,20 @@ int ZLIB_INTERNAL x86_cpu_enable_simd = 0;

#ifndef CPU_NO_SIMD
Expand Down
14 changes: 7 additions & 7 deletions www/deno/files/patch-cargo-crates_v8_v8_BUILD.gn
@@ -1,6 +1,6 @@
--- cargo-crates/v8-0.60.1/v8/BUILD.gn.orig 2021-01-19 00:12:40 UTC
+++ cargo-crates/v8-0.60.1/v8/BUILD.gn
@@ -4209,7 +4209,7 @@ v8_component("v8_libbase") {
--- cargo-crates/v8-0.63.0/v8/BUILD.gn.orig 2021-01-19 00:12:40 UTC
+++ cargo-crates/v8-0.63.0/v8/BUILD.gn
@@ -5602,7 +5602,7 @@ v8_component("v8_libbase") {
}
}

Expand All @@ -9,7 +9,7 @@
sources += [
"src/base/debug/stack_trace_posix.cc",
"src/base/platform/platform-linux.cc",
@@ -4219,6 +4219,12 @@ v8_component("v8_libbase") {
@@ -5613,6 +5613,12 @@ v8_component("v8_libbase") {
"dl",
"rt",
]
Expand All @@ -22,9 +22,9 @@
} else if (current_os == "aix") {
sources += [
"src/base/debug/stack_trace_posix.cc",
@@ -4698,6 +4704,7 @@ if (current_toolchain == v8_snapshot_toolchain) {
"src/snapshot/mksnapshot.cc",
"src/snapshot/snapshot-empty.cc",
@@ -6255,6 +6261,7 @@ if (current_toolchain == v8_snapshot_toolchain) {
"src/snapshot/static-roots-gen.cc",
"src/snapshot/static-roots-gen.h",
]
+ libs = ["execinfo"]

Expand Down
4 changes: 2 additions & 2 deletions www/deno/files/patch-cargo-crates_v8_v8_include_v8config.h
@@ -1,5 +1,5 @@
--- cargo-crates/v8-0.60.1/v8/include/v8config.h.orig 2020-06-26 16:28:04 UTC
+++ cargo-crates/v8-0.60.1/v8/include/v8config.h
--- cargo-crates/v8-0.63.0/v8/include/v8config.h.orig 2020-06-26 16:28:04 UTC
+++ cargo-crates/v8-0.63.0/v8/include/v8config.h
@@ -345,7 +345,18 @@ path. Add it with -I<path> to the command line
(V8_HAS_CPP_ATTRIBUTE(no_unique_address))

Expand Down
4 changes: 2 additions & 2 deletions www/deno/files/patch-cargo-crates_v8_v8_src_api_api.cc
@@ -1,5 +1,5 @@
--- cargo-crates/v8-0.60.1/v8/src/api/api.cc.orig 2020-06-26 16:28:04 UTC
+++ cargo-crates/v8-0.60.1/v8/src/api/api.cc
--- cargo-crates/v8-0.63.0/v8/src/api/api.cc.orig 2020-06-26 16:28:04 UTC
+++ cargo-crates/v8-0.63.0/v8/src/api/api.cc
@@ -6096,7 +6096,7 @@ bool v8::V8::Initialize(const int build_config) {
return true;
}
Expand Down
4 changes: 2 additions & 2 deletions www/deno/files/patch-cargo-crates_v8_v8_src_base_cpu.cc
@@ -1,5 +1,5 @@
--- cargo-crates/v8-0.60.1/v8/src/base/cpu.cc.orig 2020-06-26 16:28:04 UTC
+++ cargo-crates/v8-0.60.1/v8/src/base/cpu.cc
--- cargo-crates/v8-0.63.0/v8/src/base/cpu.cc.orig 2020-06-26 16:28:04 UTC
+++ cargo-crates/v8-0.63.0/v8/src/base/cpu.cc
@@ -475,6 +475,7 @@ CPU::CPU()

#if V8_OS_LINUX
Expand Down
@@ -1,5 +1,5 @@
--- cargo-crates/v8-0.60.1/v8/src/base/platform/platform-freebsd.cc.orig 2020-06-26 16:28:04 UTC
+++ cargo-crates/v8-0.60.1/v8/src/base/platform/platform-freebsd.cc
--- cargo-crates/v8-0.63.0/v8/src/base/platform/platform-freebsd.cc.orig 2020-06-26 16:28:04 UTC
+++ cargo-crates/v8-0.63.0/v8/src/base/platform/platform-freebsd.cc
@@ -82,8 +82,8 @@ std::vector<OS::SharedLibraryAddress> OS::GetSharedLib
lib_name = std::string(path);
}
Expand Down
@@ -1,5 +1,5 @@
--- cargo-crates/v8-0.60.1/v8/src/base/platform/platform-posix.cc.orig 2020-06-26 16:28:04 UTC
+++ cargo-crates/v8-0.60.1/v8/src/base/platform/platform-posix.cc
--- cargo-crates/v8-0.63.0/v8/src/base/platform/platform-posix.cc.orig 2020-06-26 16:28:04 UTC
+++ cargo-crates/v8-0.63.0/v8/src/base/platform/platform-posix.cc
@@ -634,7 +634,7 @@ bool OS::HasLazyCommits() {

// static
Expand Down

0 comments on commit b5b6d5a

Please sign in to comment.