mirror of
https://github.com/openai/codex.git
synced 2026-08-23 13:09:46 +00:00
## What changed - Upgrade `rules_rs` from `0.0.58` to `0.0.96` and LLVM from `0.7.9` to `0.8.11`, updating extension paths, platform constraints, and compatibility patches for the current APIs. - Add native `windows-gnullvm` execution support for the argument-comment lint toolchain while retaining MSVC execution for existing cross-target builds. - Build `aws-lc-sys` through the Bazel Central Registry `aws-lc` module and `rules_rs` integration, removing the replaced crate-specific patches. GitOrigin-RevId: 9829bcdb6ac74e846b713568aac38ea2fa3c42a2
17 lines
348 B
Python
17 lines
348 B
Python
load("//:defs.bzl", "codex_rust_crate")
|
|
|
|
codex_rust_crate(
|
|
name = "v8-poc",
|
|
crate_features = select({
|
|
"@llvm//constraints/windows/abi:msvc": [],
|
|
"//conditions:default": ["sandbox"],
|
|
}),
|
|
crate_name = "codex_v8_poc",
|
|
deps_extra = ["@crates//:v8"],
|
|
)
|
|
|
|
alias(
|
|
name = "v8-poc-rusty-v8",
|
|
actual = ":v8-poc",
|
|
)
|