mirror of
https://github.com/openai/codex.git
synced 2026-08-23 13:09:46 +00:00
## What changed - Upgrade the Rust `v8` crate to `150.4.0` and the Bazel V8 source to `15.0.245.2`. - Refresh the prebuilt archives, checksums, LLVM source revisions, Bazel targets, and downstream V8 patches for the new release. - Expose the pinned llvm-libc headers under V8's expected include path for source builds. GitOrigin-RevId: 91c953b2fb707b221fdd772f9ca88fb71606f70f
18 lines
388 B
Plaintext
18 lines
388 B
Plaintext
load("@rules_cc//cc:defs.bzl", "cc_library")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
cc_library(
|
|
name = "headers",
|
|
hdrs = glob(["**/*.h"]),
|
|
defines = ["LIBC_NAMESPACE=__llvm_libc_cr"],
|
|
includes = ["."],
|
|
)
|
|
|
|
cc_library(
|
|
name = "v8_headers",
|
|
hdrs = glob(["shared/**/*.h"]),
|
|
include_prefix = "third_party/llvm-libc/src",
|
|
deps = [":headers"],
|
|
)
|