mirror of
https://github.com/openai/codex.git
synced 2026-04-24 22:54:54 +00:00
This is a new package that depends on rusty-v8 for embedding a v8 engine. This builds and works on non-musl platforms now because rusty-v8 provides versions for that. But we mocked out the loading of a musl built library. TODO: iterate on providing the musl built version for musl-linux builds. TODO: create a release workflow for publishing the artifact that rusty-v8 can link against
13 lines
234 B
Python
13 lines
234 B
Python
load("//:defs.bzl", "codex_rust_crate")
|
|
|
|
codex_rust_crate(
|
|
name = "v8-poc",
|
|
crate_name = "codex_v8_poc",
|
|
)
|
|
|
|
codex_rust_crate(
|
|
name = "v8-poc-rusty-v8",
|
|
crate_features = ["rusty_v8"],
|
|
crate_name = "codex_v8_poc",
|
|
)
|