forked from rogchap/v8go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade V8 binaries for 9.6.180.12 version (rogchap#231)
* Upgrade V8 binaries for 9.6.180.12 version * Add -ldl flag to linux build to fix missing dlsym errors * Update V8 static library for macos-11 x86_64 (rogchap#249) Co-authored-by: genevieve <[email protected]> * Update V8 static library for ubuntu-18.04 x86_64 (rogchap#250) Co-authored-by: genevieve <[email protected]> * Update V8 static library for macos-11 arm64 (rogchap#251) Co-authored-by: genevieve <[email protected]> * Update changelog Co-authored-by: dylanahsmith <[email protected]> Co-authored-by: Genevieve L'Esperance <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: genevieve <[email protected]>
- Loading branch information
1 parent
a92639e
commit 762c7a8
Showing
97 changed files
with
15,034 additions
and
12,944 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Submodule depot_tools
updated
from 2e486c to 85d7fe
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,18 @@ | ||
[email protected] | ||
[email protected] | ||
danno@chromium.org | ||
leszeks@chromium.org | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
|
||
per-file *DEPS=file:../COMMON_OWNERS | ||
per-file v8-internal.h=file:../COMMON_OWNERS | ||
per-file [email protected] | ||
per-file [email protected] | ||
per-file [email protected] | ||
per-file [email protected] | ||
per-file [email protected] | ||
per-file [email protected] | ||
per-file [email protected] | ||
per-file [email protected] | ||
per-file [email protected] | ||
per-file v8-inspector.h=file:../src/inspector/OWNERS | ||
per-file v8-inspector-protocol.h=file:../src/inspector/OWNERS | ||
per-file js_protocol.pdl=file:../src/inspector/OWNERS | ||
|
||
# Needed by the auto_tag builder | ||
per-file v8-version.h=v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com | ||
|
||
# For branch updates: | ||
per-file v8-version.h=file:../INFRA_OWNERS | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
# C++ Garbage Collection | ||
# Oilpan: C++ Garbage Collection | ||
|
||
This directory provides an open-source garbage collection library for C++. | ||
Oilpan is an open-source garbage collection library for C++ that can be used stand-alone or in collaboration with V8's JavaScript garbage collector. | ||
|
||
The library is under construction, meaning that *all APIs in this directory are incomplete and considered unstable and should not be used*. | ||
**Key properties** | ||
- Trace-based garbage collection; | ||
- Precise on-heap memory layout; | ||
- Conservative on-stack memory layout; | ||
- Allows for collection with and without considering stack; | ||
- Incremental and concurrent marking; | ||
- Incremental and concurrent sweeping; | ||
- Non-incremental and non-concurrent compaction for selected spaces; | ||
|
||
See the [Hello World](https://chromium.googlesource.com/v8/v8/+/main/samples/cppgc/hello-world.cc) example on how to get started using Oilpan to manage C++ code. | ||
|
||
Oilpan follows V8's project organization, see e.g. on how we accept [contributions](https://v8.dev/docs/contribute) and [provide a stable API](https://v8.dev/docs/api). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.