{"id":18867763,"url":"https://github.com/kuoruan/libv8","last_synced_at":"2026-02-13T17:30:15.490Z","repository":{"id":54437037,"uuid":"336217606","full_name":"kuoruan/libv8","owner":"kuoruan","description":"prebuilt v8 monolith static libraries","archived":false,"fork":false,"pushed_at":"2025-02-13T02:10:23.000Z","size":174,"stargazers_count":35,"open_issues_count":0,"forks_count":14,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-02-13T03:22:02.617Z","etag":null,"topics":["monolith","static","v8"],"latest_commit_sha":null,"homepage":"","language":"Batchfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kuoruan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-02-05T09:01:06.000Z","updated_at":"2025-02-13T02:10:26.000Z","dependencies_parsed_at":"2024-03-06T02:41:57.771Z","dependency_job_id":"ca3968b8-9d13-41ae-bf88-69eadc7c937d","html_url":"https://github.com/kuoruan/libv8","commit_stats":null,"previous_names":[],"tags_count":132,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuoruan%2Flibv8","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuoruan%2Flibv8/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuoruan%2Flibv8/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuoruan%2Flibv8/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kuoruan","download_url":"https://codeload.github.com/kuoruan/libv8/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239816483,"owners_count":19701753,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["monolith","static","v8"],"created_at":"2024-11-08T05:11:04.364Z","updated_at":"2026-02-13T17:30:15.428Z","avatar_url":"https://github.com/kuoruan.png","language":"Batchfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Build V8 Monolith Library with GitHub Actions\n\n![Build Status](https://github.com/kuoruan/libv8/actions/workflows/v8-build-test.yml/badge.svg)\n![Release Status](https://github.com/kuoruan/libv8/actions/workflows/v8-release.yml/badge.svg)\n![Version Check Status](https://github.com/kuoruan/libv8/actions/workflows/v8-version-check.yml/badge.svg)\n\n\n## File Structure\n\n```\n.\n├── VERSION           # Current V8 version\n├── archive.bat       # Archive V8 library for Windows\n├── archive.sh        # Archive V8 library for Linux and macOS\n├── args\n│   ├── Linux.gn      # GN args for Linux\n│   ├── Windows.gn    # GN args for Windows\n│   └── macOS.gn      # GN args for macOS\n├── v8_compile.bat    # Compile V8 library for Windows\n├── v8_compile.sh     # Compile V8 library for Linux and macOS\n├── v8_download.bat   # Download V8 source code for Windows\n├── v8_download.sh    # Download V8 source code for Linux and macOS\n├── v8_test.bat       # Test V8 library for Windows\n└── v8_test.sh        # Test V8 library for Linux and macOS\n```\n\n## Custom Version Build\n\n- Fork this repository.\n- Modify the `VERSION` file to change the V8 version. (All versions can be found [here](https://chromium.googlesource.com/v8/v8.git/+refs))\n- Commit and push to GitHub.\n- Wait for the test build to complete.\n- Tag the commit with the version number(prefixed with `v`) and push to GitHub.\n- Wait for the release to complete.\n\n### Build Old Versions\n\n**Note**: Usually, we can only build the versions within the last year.\n\n - The old versions may not be compatible with the latest tools.\n - The old versions may require old version of toolchains, which may not be available in the latest systems.\n\nIf you want to build an old version, you may need to modify the build scripts and use the old version of `depot_tools` and other tools.\n\n### Find the Match `depot_tools` Version\n\nYou can find the match `depot_tools` version for the V8 version in the `DEPS` file in the V8 source code.\n\nFor example, the `depot_tools` version for V8 version `10.6.1` is git revision: `0ba2fd429dd6db431fcbee6995c1278d2a3657a0`.\n\nIf there is no `depot_tools` version in the `DEPS` file, you can find the `depot_tools` version by the release date of V8 version.\n\nFor example, the V8 version `10.6.1` was released on `2022-07-22`, so you can find the `depot_tools` version around this date.\n\nCheck the `depot_tools` git log to find the match version. [commit log](https://chromium.googlesource.com/chromium/tools/depot_tools.git/+log/refs/heads/main)\n\nFind the commit that is close to the release date of the target V8 version.\n\nOnce you find the match `depot_tools` version, you can checkout the version by the following command:\n\n```bash\n# make sure you have `git` installed\ngit submodule update --init\n\ncd depot_tools\ngit checkout 0ba2fd429dd6db431fcbee6995c1278d2a3657a0\n```\n\n### Find the Match `python` Version\n\nThe `depot_tools` may require a specific version of `python`. You can find the required version in the `depot_tools` README file.\n\n### Modify the Build Scripts\n\nThe `gclient`, `gn`, `ninja` and other tools may have different arguments or behaviors in the old versions.\n\nThe `v8_download`, `v8_compile` as well as other scripts may need to be modified.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkuoruan%2Flibv8","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkuoruan%2Flibv8","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkuoruan%2Flibv8/lists"}